/install fgo-invoicing
FGO Invoicing
Use scripts/fgo_cli.py for deterministic FGO API calls instead of ad-hoc HTTP snippets.
Workflow
- Collect invoice input from the user.
- Validate payload locally before sending:
python scripts/fgo_cli.py validate-payload --input references/invoice-example.json --show-payload
- Dry-run to inspect the normalized payload (with computed Hash) without calling the API:
python scripts/fgo_cli.py emit-invoice --input \x3Cinvoice.json> --dry-run
- Issue final invoice after explicit user confirmation:
python scripts/fgo_cli.py emit-invoice --input \x3Cinvoice.json> --allow-final
- Retrieve invoice status, print link, or perform operations using the returned series and number:
python scripts/fgo_cli.py get-status --serie \x3CSERIE> --numar \x3CNUMAR>python scripts/fgo_cli.py print-invoice --serie \x3CSERIE> --numar \x3CNUMAR>python scripts/fgo_cli.py cancel-invoice --serie \x3CSERIE> --numar \x3CNUMAR>python scripts/fgo_cli.py reverse-invoice --serie \x3CSERIE> --numar \x3CNUMAR>
Required Environment
Set these before calling FGO:
FGO_COD_UNIC— company CUI (Romanian tax ID)FGO_CHEIE_PRIVATA— FGO private API key (from FGO → Setari → Utilizatori → Generate API user)
Optional overrides:
FGO_API_BASE(default:https://api.fgo.ro/v1) — usehttps://api-testuat.fgo.ro/v1for testingFGO_PLATFORM_URL(default: unset) — your registered platform URL (FGO → Setari → eCommerce → Setari API). Required for invoice issuance from registered platforms; omitted if not set.FGO_TIMEOUT_SECONDS(default:30)FGO_RETRIES(default:2)FGO_DEBUG(default: unset) — set to1,true, oryesto enable request/response debug logging to stderr
Command Guide
validate-payload- Parse and normalize payload; compute the authentication Hash.
- Validate minimum required structure before API calls.
- Use
--show-payloadto inspect the full normalized form-encoded payload.
emit-invoice- Issue invoice via
POST /factura/emitere. - Requires
--allow-finalto hit the real API. - Use
--dry-runfirst (prints normalized payload, no API call). - Pass
--debug(or setFGO_DEBUG=1) to print full request/response to stderr.
- Issue invoice via
get-status- Get invoice status (total value, amount paid, payments) via
POST /factura/getstatus.
- Get invoice status (total value, amount paid, payments) via
print-invoice- Get a shareable print/download link via
POST /factura/print.
- Get a shareable print/download link via
cancel-invoice- Cancel an invoice via
POST /factura/anulare.
- Cancel an invoice via
delete-invoice- Delete an invoice via
POST /factura/stergere.
- Delete an invoice via
reverse-invoice- Create a storno (reversal) invoice via
POST /factura/stornare.
- Create a storno (reversal) invoice via
get-nomenclator- Fetch a nomenclature list (no auth required):
tara,judet,tva,banca,tipincasare,tipfactura,tipclient,valuta.
- Fetch a nomenclature list (no auth required):
Authentication
FGO uses SHA-1 hash-based authentication embedded in every request body — no HTTP auth headers. The hash formula depends on the operation:
- Invoice issuance:
SHA1(CodUnic + CheiePrivata + Client.Denumire).toUpperCase() - Invoice operations (status/print/cancel/delete/storno):
SHA1(CodUnic + CheiePrivata + Numar).toUpperCase()
The CLI computes hashes automatically. Never expose FGO_CHEIE_PRIVATA in logs.
Payload Format
The invoice payload is a JSON object. The CLI converts it to form-encoded format (application/x-www-form-urlencoded) with bracket notation for nested fields, as required by the FGO API.
Both formats are accepted as input to the CLI:
- Bare invoice object:
{ "CodUnic": "...", "Client": {...}, ... } - Wrapped:
{ "invoice": { "CodUnic": "...", "Client": {...}, ... } }
The CLI unwraps automatically, injects Hash and PlatformaUrl, then posts to FGO.
See references/invoice-example.json for the canonical minimal example and references/fgo-api.md for complete field documentation.
Input File Safety
The --input argument is validated before any file is read:
- Extension check — only
.jsonfiles are accepted. Passing/etc/passwd,~/.ssh/id_rsa, or any non-JSON path raises an error immediately. - Path confinement — the resolved path must be within the current working directory or a recognised OpenClaw media root (
/tmp/openclaw,~/.openclaw/workspace, etc.). Paths that escape these roots via../traversal or absolute references are rejected.
Always pass --input with a path to a file you created (e.g. a temp file written in the agent workspace). Never set --input to a path supplied by untrusted external content.
Operational Rules
- Always use
--dry-runfirst to confirm the normalized payload before hitting the API. - FGO responses use HTTP 200 even for errors — always check
Success: truein the response. - Treat invoice issuance as a high-impact action requiring explicit user confirmation.
- Never parallelize FGO API calls — make all requests sequentially to avoid deadlocks.
- Invoice issuance has a 15-second server-side timeout. If
Success: falsewith a timeout message, the invoice was NOT issued — retry. - Store the returned
Numarverbatim as the exact string (may be zero-padded, e.g."001"). Never strip leading zeros or cast to integer. - Use the UAT environment (
--base-url https://api-testuat.fgo.ro/v1) for testing. - Rate limit: max 1 call/second for invoice operations.
References
- Read
references/fgo-api.mdfor payload field reference, endpoint mapping, authentication details, and rate-limit notes. - Use
references/invoice-example.jsonas the canonical starting payload template.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install fgo-invoicing - 安装完成后,直接呼叫该 Skill 的名称或使用
/fgo-invoicing触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
FGO Invoicing 是什么?
Issue FGO.ro invoices through the FGO API with local automation. Use for FGO tasks such as validating invoice payloads, issuing invoices, checking invoice st... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 339 次。
如何安装 FGO Invoicing?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install fgo-invoicing」即可一键安装,无需额外配置。
FGO Invoicing 是免费的吗?
是的,FGO Invoicing 完全免费(开源免费),可自由下载、安装和使用。
FGO Invoicing 支持哪些平台?
FGO Invoicing 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 FGO Invoicing?
由 Maverick(@maverick-ai-tech)开发并维护,当前版本 v1.0.1。