スキル一覧に戻る
peerasak-u

pacioli

by peerasak-u

CLI tool for generating professional invoices, quotations, and receipts as PDF files for freelance work

52🍴 3📅 2026年1月20日
GitHubで見るManusで実行

SKILL.md


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

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]
CommandUsage
initInitialize a new project structure with config and templates
generate <type> <path> [--customer <path>]Generate a PDF document (invoice, quotation, receipt)
helpShow help message
versionShow 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 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.

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です