← 返回 Skills 市场
di5cip1e

Invoice Generator

作者 di5cip1e · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
94
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install director-invoice-generator
功能描述
Create professional invoices, quotes, and billing documents. Use when user wants to (1) generate an invoice, (2) create a quote, (3) make a receipt, (4) trac...
使用说明 (SKILL.md)

Invoice Generator

Create professional billing documents quickly.

Quick Start

  1. Gather details - Client info, items, amounts, dates
  2. Select template - Invoice, quote, or receipt
  3. Generate - Output to PDF, DOCX, or text
  4. Deliver - Send to client or download

Input Data Structure

invoice = {
    "type": "invoice",  # invoice, quote, receipt
    "number": "INV-2026-001",
    "date": "2026-04-07",
    "due_date": "2026-04-21",
    "from": {
        "name": "Your Company",
        "address": "123 Main St",
        "email": "[email protected]"
    },
    "to": {
        "name": "Client Name",
        "company": "Client Company",
        "address": "456 Business Ave",
        "email": "[email protected]"
    },
    "items": [
        {"description": "Service Name", "qty": 10, "rate": 150},
        {"description": "Materials", "qty": 1, "rate": 500}
    ],
    "tax_rate": 0.08,  # 8%
    "notes": "Payment due within 14 days"
}

Calculations

Auto-calculate:

  • Subtotal: sum(qty × rate) for each item
  • Tax: subtotal × tax_rate
  • Total: subtotal + tax

Output Templates

Invoice

INVOICE #INV-2026-001
Date: April 7, 2026 | Due: April 21, 2026

From: Your Company
To: Client Company

Item                    Qty     Rate      Amount
-------------------------------------------
Consulting              10      $150      $1,500
Materials               1       $500      $500
-------------------------------------------
                        Subtotal:         $2,000
                        Tax (8%):         $160
                        TOTAL:            $2,160

Notes: Payment due within 14 days

Quote

Same format, but header: "QUOTE #QT-2026-001" + "Valid for 30 days"

Receipt

Header: "RECEIPT #RCP-2026-001" + "Paid: [date]"

Best Practices

  • Use sequential invoice numbers (INV-2026-001, INV-2026-002...)
  • Include payment terms in notes
  • Set due dates 14-30 days out for invoices
  • Track outstanding amounts
安全使用建议
This skill appears coherent and low-risk: it only provides templates and instructions and asks for no secrets or installs. Before using it, consider how you'll implement 'deliver' (emailing or uploading invoices)—do not hard-code or share mailbox/API credentials with untrusted code. Also note the skill has no listed homepage or source; if you need updates, support, or an audited implementation, prefer a skill from a known maintainer or build the template logic into your own trusted tooling. Finally, verify generated documents locally to ensure correct formatting, currency, tax calculation, and that no sensitive client data is exposed when sending.
功能分析
Type: OpenClaw Skill Name: director-invoice-generator Version: 1.0.0 The skill bundle contains only documentation and templates for generating invoices, quotes, and receipts. There is no executable code, external network calls, or suspicious instructions in SKILL.md or _meta.json.
能力标签
cryptocan-make-purchases
能力评估
Purpose & Capability
Name and description match the SKILL.md content: templates, input schema, calculations, and outputs are all for generating invoices/quotes/receipts. There are no requested environment variables, binaries, or config paths that would be unrelated to this purpose.
Instruction Scope
SKILL.md is instruction-only and stays within the expected scope (data model, calculations, templates). The only vague item is 'Deliver - Send to client or download' which mentions delivery but provides no mechanism or credential requirements; that is not harmful but leaves implementation unspecified.
Install Mechanism
No install specification or code files are present (instruction-only), so nothing will be written to disk or downloaded during install. This is the lowest-risk pattern.
Credentials
The skill declares no required environment variables, credentials, or config paths. That is proportionate for a pure-instruction invoice generator. SKILL.md does not attempt to read hidden env vars or system paths.
Persistence & Privilege
always is false and autonomous invocation is allowed by default (normal). The skill does not request persistent presence or system-wide changes and has no install steps that would modify agent configuration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install director-invoice-generator
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /director-invoice-generator 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release - create invoices, quotes, receipts
元数据
Slug director-invoice-generator
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Invoice Generator 是什么?

Create professional invoices, quotes, and billing documents. Use when user wants to (1) generate an invoice, (2) create a quote, (3) make a receipt, (4) trac... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 94 次。

如何安装 Invoice Generator?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install director-invoice-generator」即可一键安装,无需额外配置。

Invoice Generator 是免费的吗?

是的,Invoice Generator 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Invoice Generator 支持哪些平台?

Invoice Generator 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Invoice Generator?

由 di5cip1e(@di5cip1e)开发并维护,当前版本 v1.0.0。

💬 留言讨论