agent-skills/pacioli-skills/SKILL.md
Generates professional financial documents (invoices, quotations, receipts) for freelancers using HTML templates and Puppeteer. Handles tax calculations, auto-numbering, and PDF generation.
npx skillsauth add peerasak-u/pacioli pacioliInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A CLI tool for generating financial documents. It uses JSON data files and HTML templates to produce PDFs.
bunx pacioli <command> [args]
| Command | Usage |
|---------|-------|
| init | Initialize a new project structure with config and templates |
| generate <type> <path> [--customer <path>] | Generate a PDF document (invoice, quotation, receipt) |
| help | Show help message |
| version | Show version |
Start here to create the necessary folder structure (config, customers, templates).
mkdir my-financial-docs
cd my-financial-docs
bunx pacioli init
Edit config/freelancer.json to set your business details and bank information.
See references/SCHEMAS.md for the format.
Create a customer file (e.g., customers/acme.json) and an invoice file (e.g., invoices/oct-service.json).
# Option 1: Provide customer via CLI flag
bunx pacioli generate invoice invoices/oct-service.json --customer customers/acme.json
# Option 2: Define customerPath inside oct-service.json (Recommended)
bunx pacioli generate invoice invoices/oct-service.json
bunx pacioli generate quotation quotations/web-design.json --customer customers/acme.json
bunx pacioli generate receipt receipts/payment-101.json --customer customers/acme.json
When you run init, Pacioli creates:
config/: Contains freelancer.json (your profile).customers/: Store reusable customer JSON profiles here.templates/: HTML templates for documents. You can customize these.examples/: Example JSON files for each document type..metadata.json: Tracks auto-incrementing document numbers.Data is provided via JSON files.
YYYY-MM-DD format.documentNumber to "auto" to let Pacioli handle ID generation (e.g., INV-202310-001).--customer flag OR by adding "customerPath": "customers/acme.json" directly in your document JSON.For detailed JSON schemas and examples, see references/SCHEMAS.md.
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.
development
End-to-end Parallels smoke, upgrade, and rerun workflow for OpenClaw across macOS, Windows, and Linux guests. Use when Codex needs to run, rerun, debug, or interpret VM-based install, onboarding, gateway smoke tests, latest-release-to-main upgrade checks, fresh snapshot retests, or optional Discord roundtrip verification under Parallels.