← Back to Skills Marketplace
di5cip1e

Invoice Generator

by di5cip1e · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
94
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install director-invoice-generator
Description
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...
README (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
Usage Guidance
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.
Capability Analysis
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.
Capability Tags
cryptocan-make-purchases
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install director-invoice-generator
  3. After installation, invoke the skill by name or use /director-invoice-generator
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release - create invoices, quotes, receipts
Metadata
Slug director-invoice-generator
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 94 downloads so far.

How do I install Invoice Generator?

Run "/install director-invoice-generator" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Invoice Generator free?

Yes, Invoice Generator is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Invoice Generator support?

Invoice Generator is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Invoice Generator?

It is built and maintained by di5cip1e (@di5cip1e); the current version is v1.0.0.

💬 Comments