jaz-clio 5.31.0 → 5.32.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.
- package/assets/skills/api/SKILL.md +1 -1
- package/assets/skills/cli/SKILL.md +8 -8
- package/assets/skills/cli/references/command-catalog.md +2 -2
- package/assets/skills/conversion/SKILL.md +1 -1
- package/assets/skills/jaz-kit/SKILL.md +1 -1
- package/assets/skills/jaz-pseudo-sql/SKILL.md +1 -1
- package/assets/skills/jobs/SKILL.md +1 -1
- package/assets/skills/transaction-recipes/SKILL.md +1 -1
- package/assets/templates/platform-rules/jaz-agent-rules.md +7 -5
- package/cli.mjs +508 -508
- package/package.json +1 -1
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: jaz-cli
|
|
3
|
-
version: 5.
|
|
3
|
+
version: 5.32.0
|
|
4
4
|
description: >-
|
|
5
5
|
Use this skill when running Clio CLI commands, building shell scripts with
|
|
6
6
|
Clio, debugging auth issues, understanding --json output, paginating results,
|
|
7
|
-
or chaining multi-step accounting workflows from the terminal. Covers
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
or chaining multi-step accounting workflows from the terminal. Covers auth
|
|
8
|
+
precedence, output formats, entity resolution, and common workflow patterns.
|
|
9
|
+
Also use when the user asks how to use clio, what commands are available, or
|
|
10
|
+
how to automate accounting tasks from the command line. Covers all
|
|
11
|
+
66 command groups and 358 tools, including employee-expense claims.
|
|
12
12
|
license: MIT
|
|
13
13
|
compatibility: Requires Node.js >= 18.0.0. Install via npm install -g jaz-clio.
|
|
14
14
|
---
|
|
@@ -34,7 +34,7 @@ You are working with **Clio** (`jaz-clio`) — the CLI for the Jaz accounting pl
|
|
|
34
34
|
| Need | Skill |
|
|
35
35
|
|------|-------|
|
|
36
36
|
| CLI command syntax, flags, output | **jaz-cli** (this skill) |
|
|
37
|
-
| API field names, error codes,
|
|
37
|
+
| API field names, error codes, 158 API rules | **jaz-api** |
|
|
38
38
|
| IFRS transaction recipes (depreciation, leases, loans) | **jaz-recipes** |
|
|
39
39
|
| Month-end close, bank recon, GST filing workflows | **jaz-jobs** |
|
|
40
40
|
| Migration from Xero/QuickBooks/Sage | **jaz-conversion** |
|
|
@@ -377,7 +377,7 @@ See `references/common-workflows.md` for end-to-end multi-command patterns.
|
|
|
377
377
|
4. **--offset is page number (0-indexed), not row count.**
|
|
378
378
|
5. **JAZ_API_KEY env overrides --org.** Unset to use profiles.
|
|
379
379
|
|
|
380
|
-
See [references/agent-gotchas.md](./references/agent-gotchas.md) for the full list of
|
|
380
|
+
See [references/agent-gotchas.md](./references/agent-gotchas.md) for the full list of 19 critical gotchas. See [references/output-shapes.md](./references/output-shapes.md) for `--json` output structures. See [references/error-recovery.md](./references/error-recovery.md) for 30+ error patterns with fixes.
|
|
381
381
|
|
|
382
382
|
## See Also
|
|
383
383
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Clio Command Catalog
|
|
2
2
|
|
|
3
|
-
Complete reference for all
|
|
3
|
+
Complete reference for all 66 command groups. Organized by domain.
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -587,7 +587,7 @@ Valid entity types: INVOICE, BILL, CUSTOMER_CREDIT_NOTE, SUPPLIER_CREDIT_NOTE, S
|
|
|
587
587
|
Universal async tracker — any operation returning a jobId (contacts bulk-upsert, items bulk-upsert, bank import, magic processing) can be polled here.
|
|
588
588
|
|
|
589
589
|
### `clio mcp` — MCP stdio server
|
|
590
|
-
Starts an MCP server for Claude Code / AI tool integration. Exposes all
|
|
590
|
+
Starts an MCP server for Claude Code / AI tool integration. Exposes all 358 operations.
|
|
591
591
|
|
|
592
592
|
### `clio serve` — HTTP daemon
|
|
593
593
|
Starts the HTTP daemon for ChatKit and email channel integrations.
|
|
@@ -6,13 +6,15 @@ Source of truth lives in the installed skills (`.claude/skills/jaz-*/SKILL.md` o
|
|
|
6
6
|
|
|
7
7
|
## Discovery
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Jaz exposes **358 tools across 43 namespaces**. Your tool list shows **3, 43, or 358** entries depending on packaging — **never infer capability from its length.**
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
- **3** — `search_tools(query)` → `describe_tools(names)` → `execute_tool(name, args)`. Empty query returns the namespace map.
|
|
12
|
+
- **43** — namespace routers; call one with `{ operation, arguments }`. Its description lists its operations.
|
|
13
|
+
- **358** — call operations directly by name.
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
`describe_capabilities` returns the capability map on all three. **Call it before telling the user Jaz cannot do something.**
|
|
16
|
+
|
|
17
|
+
No API key needed: `describe_capabilities`, `plan_recipe`, `search_help_center` (marked `Offline.`).
|
|
16
18
|
|
|
17
19
|
## API contract — the 6 rules that prevent 90% of 422s
|
|
18
20
|
|