Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

fgo-invoicingfgo 发票

Agent Skill

fgo-invoicing 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 OpenClaw 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,380

周安装

424

GitHub Stars

公开资料未说明

下载量

3,358
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:fgo-invoicing(fgo 发票)
来源仓库:https://github.com/maverick-ai-tech/fgo-invoicing
安装命令:
openclaw skills install fgo-invoicing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install fgo-invoicing

简介

fgo-invoicing 通过本地 FGO API 开具罗马尼亚税务发票。

  • 适合企业财务自动化,支持发票状态查询与有效负载验证。
  • 通过 clawhub 安装,使用 openclaw skills install fgo-invoicing 命令添加。
  • 需配置本地 API 密钥与税务参数,确保符合当地法规与数据安全要求。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
fgo-invoicing
description
Issue FGO.ro invoices through the FGO API with local automation. Use for FGO tasks such as validating invoice payloads, issuing invoices, checking invoice status, getting print links, cancelling/deleting invoices, creating storno reversals, and fetching nomenclature lists.
metadata
openclaw
primaryEnv
FGO_CHEIE_PRIVATA
requires
env
bins

FGO Invoicing

Use scripts/fgo_cli.py for deterministic FGO API calls instead of ad-hoc HTTP snippets.

Workflow

  1. Collect invoice input from the user.
  2. Validate payload locally before sending:

- python scripts/fgo_cli.py validate-payload --input references/invoice-example.json --show-payload

  1. Dry-run to inspect the normalized payload (with computed Hash) without calling the API:

- python scripts/fgo_cli.py emit-invoice --input <invoice.json> --dry-run

  1. Issue final invoice after explicit user confirmation:

- python scripts/fgo_cli.py emit-invoice --input <invoice.json> --allow-final

  1. Retrieve invoice status, print link, or perform operations using the returned series and number:

- python scripts/fgo_cli.py get-status --serie <SERIE> --numar <NUMAR> - python scripts/fgo_cli.py print-invoice --serie <SERIE> --numar <NUMAR> - python scripts/fgo_cli.py cancel-invoice --serie <SERIE> --numar <NUMAR> - python scripts/fgo_cli.py reverse-invoice --serie <SERIE> --numar <NUMAR>

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) — use https://api-testuat.fgo.ro/v1 for testing
  • FGO_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 to 1, true, or yes to 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-payload to inspect the full normalized form-encoded payload.

  • emit-invoice

- Issue invoice via POST /factura/emitere. - Requires --allow-final to hit the real API. - Use --dry-run first (prints normalized payload, no API call). - Pass --debug (or set FGO_DEBUG=1) to print full request/response to stderr.

  • get-status

- Get invoice status (total value, amount paid, payments) via POST /factura/getstatus.

  • print-invoice

- Get a shareable print/download link via POST /factura/print.

  • cancel-invoice

- Cancel an invoice via POST /factura/anulare.

  • delete-invoice

- Delete an invoice via POST /factura/stergere.

  • reverse-invoice

- Create a storno (reversal) invoice via POST /factura/stornare.

  • get-nomenclator

- Fetch a nomenclature list (no auth required): tara, judet, tva, banca, tipincasare, tipfactura, tipclient, valuta.

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:

  1. Extension check — only .json files are accepted. Passing /etc/passwd, ~/.ssh/id_rsa, or any non-JSON path raises an error immediately.
  2. 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-run first to confirm the normalized payload before hitting the API.
  • FGO responses use HTTP 200 even for errors — always check Success: true in 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: false with a timeout message, the invoice was NOT issued — retry.
  • Store the returned Numar verbatim 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.md for payload field reference, endpoint mapping, authentication details, and rate-limit notes.
  • Use references/invoice-example.json as the canonical starting payload template.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

72.57%
按下载量换算2,437

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills