smithery.ai

pacioli

Generates professional financial documents (invoices, quotations, receipts) for freelancers using HTML templates and Puppeteer. Handles tax calculations, auto-numbering, and PDF generation.

First seen Mar 27, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,656 B
  • docs SUMMARY.md 204 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Pacioli

A CLI tool for generating financial documents. It uses JSON data files and HTML templates to produce PDFs.

Quick Reference

Run commands

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

Common Workflows

1. Initialize a new project

Start here to create the necessary folder structure (config, customers, templates).

mkdir my-financial-docs
cd my-financial-docs
bunx pacioli init

2. Configure Freelancer Profile

Edit config/freelancer.json to set your business details and bank information. See [references/SCHEMAS.md](references/SCHEMAS.md) for the format.

3. Generate an Invoice

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

4. Generate a Quotation

bunx pacioli generate quotation quotations/web-design.json --customer customers/acme.json

5. Generate a Receipt

bunx pacioli generate receipt receipts/payment-101.json --customer customers/acme.json

Project Structure

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 Formats

Data is provided via JSON files.

  • Dates: Use YYYY-MM-DD format.
  • Auto-numbering: Set documentNumber to "auto" to let Pacioli handle ID generation (e.g., INV-202310-001).
  • Customer: Link a customer using the --customer flag OR by adding "customerPath": "customers/acme.json" directly in your document JSON.
  • Tax: Supports "withholding" (deducted) and "vat" (added).

For detailed JSON schemas and examples, see [references/SCHEMAS.md](references/SCHEMAS.md).