Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计提醒

fakturoidfakturoid 搜索

Agent Skill

fakturoid 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

356

周安装

15

GitHub Stars

1

下载量

125
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:fakturoid(fakturoid 搜索)
来源仓库:https://github.com/majncz/fakturoid-skill
仓库路径:skills/fakturoid
安装命令:
npx skills add https://github.com/majncz/fakturoid-skill --skill fakturoid
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/majncz/fakturoid-skill --skill fakturoid

简介

用于捷克 invoicing 服务 Fakturoid API v3 集成,支持发票创建与管理。

  • 适用于需要导出凭证、客户管理与税务合规的财务自动化场景。
  • 通过 export FAKTUROID_CLIENT_ID 等环境变量完成身份认证。
  • 安装命令:npx skills add https://github.com/majncz/fakturoid-skill --skill fakturoid。
  • 操作前应验证账户 slug 与权限范围,避免越权访问敏感财务数据。

SKILL.md

Fakturoid API v3

Czech invoicing service API integration - comprehensive reference for building integrations.

Quick Start

Environment Setup

export FAKTUROID_CLIENT_ID="your-client-id"
export FAKTUROID_CLIENT_SECRET="your-client-secret"
export FAKTUROID_ACCOUNT_SLUG="your-account-slug"

Authenticate

python scripts/auth.py credentials --save

Create Invoice

python scripts/invoice.py create --subject-id 123 --lines '[
  {"name": "Consulting", "quantity": 8, "unit_name": "hours", "unit_price": 2000, "vat_rate": 21}
]'

API Basics

SettingValue
Base URLhttps://app.fakturoid.cz/api/v3
Account URLhttps://app.fakturoid.cz/api/v3/accounts/{slug}
AuthOAuth 2.0 (Client Credentials or Authorization Code)
Pagination40 records per page
Rate Limit400 requests per 60 seconds

Required Headers

User-Agent: YourAppName (your@email.com)
Authorization: Bearer {access_token}
Content-Type: application/json
Accept: application/json

Scripts Reference

Core Scripts

ScriptCommandsDescription
auth.pycredentials, refresh, revoke, statusOAuth token management
subject.pylist, get, search, create, update, delete, lookup-icoContact management
invoice.pylist, get, search, create, update, delete, action, pdf, pay, pay-deleteInvoice operations
expense.pylist, get, search, create, update, delete, action, pay, pay-deleteExpense tracking
generator.pylist, get, create, update, deleteInvoice templates

Additional Scripts

ScriptCommandsDescription
user.pyget, listUser and account info
bank_account.pylistBank account listing
inventory.pylist-items, get-item, create-item, list-moves, create-moveInventory management
recurring.pylist, get, create, update, delete, pause, activateRecurring invoices
inbox.pylist, upload, send-to-ocr, download, deleteOCR file processing
event.pylist, list-paidActivity log
todo.pylist, toggleTask management
message.pysendSend invoice emails
webhook.pylist, get, create, update, deleteWebhook management

Common Workflows

Create Invoice for New Customer

# 1. Create subject
python scripts/subject.py create --name "Acme s.r.o." --ico 12345678 --dic CZ12345678

# 2. Create invoice (use returned subject ID)
python scripts/invoice.py create --subject-id 456 --lines '[
  {"name": "Web development", "quantity": 40, "unit_name": "hours", "unit_price": 1500, "vat_rate": 21}
]'

# 3. Mark as sent and download PDF
python scripts/invoice.py action 789 mark_as_sent
python scripts/invoice.py pdf 789 --output invoice.pdf

Record Expense from Supplier

# 1. Ensure supplier exists
python scripts/subject.py create --name "Supplier Ltd" --type supplier --ico 87654321

# 2. Create expense
python scripts/expense.py create --subject-id 321 --original-number "FV-2024-0456" --lines '[
  {"name": "Office supplies", "quantity": 10, "unit_name": "ks", "unit_price": 450, "vat_rate": 21}
]'

Setup Monthly Recurring Invoice

python scripts/recurring.py create --name "Monthly Hosting" --subject-id 123 \
  --start-date 2024-02-01 --months-period 1 --send-email \
  --lines '[{"name": "Web hosting - {MMMM} {YYYY}", "unit_price": 500, "vat_rate": 21}]'

Process Inbox File with OCR

# Upload and send to OCR
python scripts/inbox.py upload invoice.pdf --send-to-ocr

# Check status
python scripts/inbox.py list

Enums Reference

Document Types

ValueCzechDescription
invoiceFakturaStandard invoice
proformaZálohová fakturaAdvance payment request
partial_proformaČástečná zálohaLegacy partial advance
correctionDobropisCredit note
tax_documentDaňový dokladTax receipt for proforma payment
final_invoiceVyúčtovací fakturaFinal invoice from tax documents

Invoice Status

ValueDescription
openNew, unpaid, not sent
sentSent to client, not overdue
overduePast due date
paidFully paid
cancelledCancelled (VAT payers only)
uncollectibleMarked as bad debt

Expense Status

ValueDescription
openReceived, not paid
overduePast due date
paidFully paid

VAT Modes

ValueCzechDescription
vat_payerPlátce DPHStandard VAT payer
non_vat_payerNeplátce DPHNon-VAT payer
identified_personIdentifikovaná osobaEU VAT identified person

VAT Price Modes

ValueDescription
without_vatPrices entered without VAT
from_total_with_vatCalculate VAT from total with VAT

VAT Rates

ValueRateDescription
standard21%Standard rate
reduced12%First reduced rate
reduced210%Second reduced rate
zero0%Zero VAT

Payment Methods

ValueDescription
bankBank transfer
cashCash payment
codCash on delivery
cardCard payment
paypalPayPal
customCustom (see custom_payment_method)

Languages

ValueLanguage
czCzech
skSlovak
enEnglish
deGerman
frFrench
itItalian
esSpanish
ruRussian
plPolish
huHungarian
roRomanian

Subject Types

ValueDescription
customerCustomer only
supplierSupplier only
bothBoth customer and supplier

Invoice Actions

ActionDescription
mark_as_sentMark invoice as sent
cancelCancel invoice
undo_cancelRevert cancellation
lockLock from editing
unlockUnlock for editing
mark_as_uncollectibleMark as bad debt
undo_uncollectibleRevert uncollectible

Expense Actions

ActionDescription
lockLock from editing
unlockUnlock for editing

OSS Modes (EU One Stop Shop)

ValueDescription
disabledOSS disabled
serviceOSS for services
goodsOSS for goods

Proforma Followup Documents

ValueDescription
final_invoice_paidAuto-create paid invoice
final_invoiceManual invoice creation
tax_documentAuto-create tax document
noneNo followup document

OCR Status

ValueDescription
createdOCR requested
processingOCR in progress
processing_failedOCR failed
processing_rejectedFile rejected
processedSuccessfully processed

Czech-Specific Fields

API FieldCzechExample
registration_noIČO12345678
vat_noDIČCZ12345678
local_vat_noSK DIČ1234567890
taxable_fulfillment_dueDUZP2024-01-15
transferred_tax_liabilityPřenesená daňová povinnosttrue
supply_codeKód předmětu plnění4

Line Item Structure

{
  "name": "Service description",
  "quantity": 10,
  "unit_name": "hours",
  "unit_price": 1500,
  "vat_rate": 21,
  "inventory_item_id": 123,
  "sku": "PROD-001"
}

Line Operations

OperationMethod
Add lineOmit id
Update lineInclude id
Delete lineInclude id and _destroy: true

References

Core Documentation

Resource Documentation

Additional Resources


Error Handling

StatusMeaningAction
400Bad RequestCheck date formats, User-Agent header
401UnauthorizedRefresh OAuth token
402Payment RequiredFakturoid account blocked
403ForbiddenPermission denied, resource limits
404Not FoundResource doesn't exist
422Validation ErrorCheck errors field for details
429Rate LimitedWait for X-RateLimit reset
503UnavailableMaintenance, retry later

Token Management

# Get new token
python scripts/auth.py credentials --save

# Check token status
python scripts/auth.py status

# Refresh expired token (Authorization Code flow)
python scripts/auth.py refresh

# Revoke token
python scripts/auth.py revoke

Token file: ~/.fakturoid/token.json


Rate Limiting

Headers on every response:

X-RateLimit-Policy: default;q=400;w=60
X-RateLimit: default;r=398;t=55
  • q=400: Max 400 requests
  • w=60: Per 60 seconds window
  • r=398: Remaining requests
  • t=55: Seconds until reset

When exceeded: 429 Too Many Requests - wait for reset.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.28%
按下载量换算34

Antigravity

23.07%
按下载量换算29

windsurf

17.43%
按下载量换算22

trae

12.52%
按下载量换算16

Codex

6.66%
按下载量换算8

OpenCode

2.84%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills