jaz-clio 4.25.7 → 4.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: jaz-api
|
|
3
|
-
version: 4.
|
|
3
|
+
version: 4.26.0
|
|
4
4
|
description: Complete reference for the Jaz REST API — the accounting platform backend. Use this skill whenever building, modifying, debugging, or extending any code that calls the API — including API clients, integrations, data seeding, test data, or new endpoint work. Contains every field name, response shape, error, gotcha, and edge case discovered through live production testing.
|
|
5
5
|
license: MIT
|
|
6
6
|
compatibility: Requires Jaz API key (x-jk-api-key header). Works with Claude Code, Google Antigravity, OpenAI Codex, GitHub Copilot, Cursor, and any agent that reads markdown.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: jaz-conversion
|
|
3
|
-
version: 4.
|
|
3
|
+
version: 4.26.0
|
|
4
4
|
description: Accounting data conversion skill — migrates customer data from Xero, QuickBooks, Sage, MYOB, and Excel exports to Jaz. Covers config, quick, and full conversion workflows, Excel parsing, CoA/contact/tax/items mapping, clearing accounts, TTB, and TB verification.
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: jaz-jobs
|
|
3
|
-
version: 4.
|
|
3
|
+
version: 4.26.0
|
|
4
4
|
description: 12 accounting jobs for SMB bookkeepers and accountants — month-end, quarter-end, and year-end close playbooks plus 9 ad-hoc operational jobs (bank recon, document collection, GST/VAT filing, payment runs, credit control, supplier recon, audit prep, fixed asset review, statutory filing). Jobs can have paired tools as nested subcommands (e.g., `clio jobs bank-recon match`, `clio jobs document-collection ingest`, `clio jobs statutory-filing sg-cs`). Paired with an interactive CLI blueprint generator (clio jobs).
|
|
5
5
|
license: MIT
|
|
6
6
|
compatibility: Works with Claude Code, Claude Cowork, Claude.ai, and any agent that reads markdown. For API payloads, load the jaz-api skill. For individual transaction patterns, load the jaz-recipes skill.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: jaz-recipes
|
|
3
|
-
version: 4.
|
|
3
|
+
version: 4.26.0
|
|
4
4
|
description: 16 IFRS-compliant recipes for complex multi-step accounting in Jaz — prepaid amortization, deferred revenue, loan schedules, IFRS 16 leases, hire purchase, fixed deposits, asset disposal, FX revaluation, ECL provisioning, IAS 37 provisions, dividends, intercompany, and capital WIP. Each recipe includes journal entries, capsule structure, and verification steps. Paired with 13 financial calculators that produce execution-ready blueprints with workings.
|
|
5
5
|
license: MIT
|
|
6
6
|
compatibility: Works with Claude Code, Claude Cowork, Claude.ai, and any agent that reads markdown. For API payloads, load the jaz-api skill alongside this one.
|
|
@@ -33,3 +33,101 @@ export function getWriteTools() {
|
|
|
33
33
|
export function getToolCount() {
|
|
34
34
|
return TOOL_DEFINITIONS.length;
|
|
35
35
|
}
|
|
36
|
+
// ── Namespace Grouping (for deferred tool loading) ──────────────────
|
|
37
|
+
/** Map each ToolGroup to its namespace. '__always__' = never deferred. */
|
|
38
|
+
const GROUP_TO_NAMESPACE = {
|
|
39
|
+
organization: '__always__',
|
|
40
|
+
accounts: '__always__',
|
|
41
|
+
contacts: 'contacts',
|
|
42
|
+
contact_groups: 'contacts',
|
|
43
|
+
invoices: 'sales',
|
|
44
|
+
customer_credit_notes: 'sales',
|
|
45
|
+
bills: 'purchases',
|
|
46
|
+
supplier_credit_notes: 'purchases',
|
|
47
|
+
journals: 'journals',
|
|
48
|
+
schedulers: 'journals',
|
|
49
|
+
bank: 'bank_and_cashflows',
|
|
50
|
+
bank_rules: 'bank_and_cashflows',
|
|
51
|
+
cash_entries: 'bank_and_cashflows',
|
|
52
|
+
cash_transfers: 'bank_and_cashflows',
|
|
53
|
+
cashflow: 'bank_and_cashflows',
|
|
54
|
+
reports: 'reports',
|
|
55
|
+
exports: 'reports',
|
|
56
|
+
items: 'items',
|
|
57
|
+
inventory: 'items',
|
|
58
|
+
magic: 'magic',
|
|
59
|
+
attachments: 'magic',
|
|
60
|
+
capsules: 'capsules',
|
|
61
|
+
recipes: 'capsules',
|
|
62
|
+
subscriptions: 'capsules',
|
|
63
|
+
drafts: 'drafts',
|
|
64
|
+
currencies: 'config',
|
|
65
|
+
tax_profiles: 'config',
|
|
66
|
+
tags: 'config',
|
|
67
|
+
bookmarks: 'config',
|
|
68
|
+
custom_fields: 'config',
|
|
69
|
+
payments: 'transactions',
|
|
70
|
+
search: 'transactions',
|
|
71
|
+
org_users: 'admin',
|
|
72
|
+
jobs: 'admin',
|
|
73
|
+
fixed_assets: 'admin',
|
|
74
|
+
};
|
|
75
|
+
const NAMESPACE_DESCRIPTIONS = {
|
|
76
|
+
sales: 'Create, search, update, finalize, pay invoices & customer credit notes. Apply credits, download PDFs.',
|
|
77
|
+
purchases: 'Create, search, update, finalize, pay bills & supplier credit notes. Apply credits.',
|
|
78
|
+
journals: 'Create, search, update, delete journal entries. Scheduled journals, invoices, and bills.',
|
|
79
|
+
bank_and_cashflows: 'Bank accounts, records, statement import, rules, reconciliation. Cash transfers, receipts, disbursements, cashflow search.',
|
|
80
|
+
reports: 'Generate trial balance, P&L, balance sheet, cashflow, aged AR/AP, cash balance, general ledger. Download exports.',
|
|
81
|
+
contacts: 'Create, search, update, delete contacts and contact groups.',
|
|
82
|
+
items: 'Create, search, update, delete items/products. Inventory balance lookup.',
|
|
83
|
+
magic: 'Import documents from files or cloud folders. Track extraction workflows. Manage attachments.',
|
|
84
|
+
capsules: 'Create, search, update capsule groupings. Financial recipes, calculators, scheduled transactions, subscriptions.',
|
|
85
|
+
drafts: 'Validate draft transactions (invoices, bills, journals, credit notes) before finalization. Bulk finalize.',
|
|
86
|
+
config: 'Currencies, exchange rates, tax profiles, tags, bookmarks, custom fields.',
|
|
87
|
+
transactions: 'Search payments across invoices and bills. Universal cross-entity search.',
|
|
88
|
+
admin: 'Invite/manage org users, fixed assets, offline job blueprints.',
|
|
89
|
+
};
|
|
90
|
+
/** Tool names always loaded with full schemas (never deferred). */
|
|
91
|
+
const ALWAYS_LOADED_NAMES = new Set([
|
|
92
|
+
'get_organization',
|
|
93
|
+
'list_contacts', 'search_contacts',
|
|
94
|
+
'list_accounts', 'search_accounts',
|
|
95
|
+
]);
|
|
96
|
+
/** Cached result — computed once. */
|
|
97
|
+
let _cached = null;
|
|
98
|
+
/** Get tools grouped by namespace for deferred loading. */
|
|
99
|
+
export function getToolNamespaces() {
|
|
100
|
+
if (_cached)
|
|
101
|
+
return _cached;
|
|
102
|
+
const alwaysLoaded = [];
|
|
103
|
+
const nsMap = new Map();
|
|
104
|
+
for (const tool of TOOL_DEFINITIONS) {
|
|
105
|
+
if (ALWAYS_LOADED_NAMES.has(tool.name)) {
|
|
106
|
+
alwaysLoaded.push(tool);
|
|
107
|
+
continue;
|
|
108
|
+
}
|
|
109
|
+
const ns = GROUP_TO_NAMESPACE[tool.group] ?? 'admin';
|
|
110
|
+
if (ns === '__always__') {
|
|
111
|
+
// Group is always-loaded but this specific tool isn't in ALWAYS_LOADED_NAMES
|
|
112
|
+
// (e.g., create_account) — still put it in a namespace
|
|
113
|
+
const fallbackNs = tool.group === 'accounts' ? 'config' : 'admin';
|
|
114
|
+
if (!nsMap.has(fallbackNs))
|
|
115
|
+
nsMap.set(fallbackNs, []);
|
|
116
|
+
nsMap.get(fallbackNs).push(tool);
|
|
117
|
+
continue;
|
|
118
|
+
}
|
|
119
|
+
if (!nsMap.has(ns))
|
|
120
|
+
nsMap.set(ns, []);
|
|
121
|
+
nsMap.get(ns).push(tool);
|
|
122
|
+
}
|
|
123
|
+
const namespaces = [];
|
|
124
|
+
for (const [name, tools] of nsMap) {
|
|
125
|
+
namespaces.push({
|
|
126
|
+
name,
|
|
127
|
+
description: NAMESPACE_DESCRIPTIONS[name] ?? name,
|
|
128
|
+
tools,
|
|
129
|
+
});
|
|
130
|
+
}
|
|
131
|
+
_cached = { namespaces, alwaysLoaded };
|
|
132
|
+
return _cached;
|
|
133
|
+
}
|