Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,15 @@ Every SMB needs compliant accounting software. The existing open-source options
- **Editable invoice editor** with inline line CRUD, product picker, RGS account assignment, server-side recompute on every change.
- **HTML preview + PDF download + Peppol BIS Billing 3.0 UBL export** — including correct `AE` tax category and `VATEX-EU-AE` exemption code for reverse charge invoices.
- **Pluggable PDF backends** — Clawnify-managed (Browser Rendering proxy), direct `BROWSER` binding, or a Gotenberg sidecar.
- **Audit-proof ledger** — a posted entry is never edited or deleted. Corrections are booked as a mirror-image reversal, so the original and its correction both stay on the record and the trial balance still nets out. Posted invoices are frozen against edits, months can be locked closed, and every change to the books is recorded with who made it — a person, or an agent acting on its own.

## What's next

Roughly in order:

- **CI XSD validation** of generated UBL via `libxml2-wasm` against the Peppol BIS Billing 3.0 schema.
- **Settings page** to fill in company name / VAT / KVK / IBAN (currently API-only).
- **Double-entry bookkeeping engine** — journals, period close, P&L, balance sheet (Phase 2).
- **Accountant handoff** — export the locked periods to the formats a bookkeeper's software actually ingests, plus a read-only share so they can look without an account.
- **VAT returns + iXBRL** — BTW-aangifte and ICP, generated against the Nederlandse Taxonomie (Phase 3).
- **Country plugins** as separate repos: `open-books-fr`, `open-books-de`, `open-books-it`.
- **FatturaPA** XML for IT.
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
"private": true,
"type": "module",
"scripts": {
"test": "tsx --test tests/*.test.ts",
"dev": "clawnify dev",
"build": "vite build",
"deploy": "clawnify deploy"
},
"dependencies": {
"@clawnify/app": "^0.1.0",
"@clawnify/app": "^0.2.1",
"@clawnify/db": "^0.4.1",
"@hono/zod-openapi": "^0.18.0",
"hono": "^4.13.7",
Expand All @@ -23,6 +24,7 @@
"@vitejs/plugin-react": "^4.0.0",
"clawnify": "^0.1.13",
"tailwindcss": "^4.0.0",
"tsx": "^4.23.13",
"vite": "^6.0.0",
"wrangler": "^4.0.0"
},
Expand All @@ -34,4 +36,4 @@
"esbuild"
]
}
}
}
Loading