jaz-clio 5.1.4 → 5.1.6
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/README.md +1 -1
- package/assets/skills/api/SKILL.md +11 -1
- package/assets/skills/cli/SKILL.md +1 -1
- package/assets/skills/conversion/SKILL.md +5 -1
- package/assets/skills/jobs/SKILL.md +1 -1
- package/assets/skills/transaction-recipes/SKILL.md +1 -1
- package/cli.mjs +349 -347
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -51,7 +51,7 @@ clio invoices search --query 'status:unpaid AND $500+' # Structured per-entity
|
|
|
51
51
|
|
|
52
52
|
## MCP Server
|
|
53
53
|
|
|
54
|
-
|
|
54
|
+
266 CLI tools, available to any AI agent that speaks MCP. Runs locally — no cloud, no ports.
|
|
55
55
|
|
|
56
56
|
**Claude Code:**
|
|
57
57
|
```bash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: jaz-api
|
|
3
|
-
version: 5.1.
|
|
3
|
+
version: 5.1.6
|
|
4
4
|
description: >-
|
|
5
5
|
Use this skill whenever you call, debug, or review code that touches the Jaz
|
|
6
6
|
REST API. Covers field names, response shapes, 117 production gotchas, error
|
|
@@ -17,6 +17,16 @@ compatibility: Requires Jaz API key (x-jk-api-key header). Works with Claude Cod
|
|
|
17
17
|
|
|
18
18
|
You are working with the **Jaz REST API** — the accounting platform backend. Also fully compatible with Juan Accounting (same API, same endpoints).
|
|
19
19
|
|
|
20
|
+
## Pick the right invocation path first
|
|
21
|
+
|
|
22
|
+
Before touching this skill's HTTP details, check what's actually available:
|
|
23
|
+
|
|
24
|
+
- **Running inside an MCP host (Claude Desktop, Cowork)**: use the MCP tools (`execute_tool` with `create_invoice`, `list_bills`, etc.). Do not write direct HTTP. The MCP server handles auth, retries, and field shape for you.
|
|
25
|
+
- **Running Claude Code with the `jaz-clio` CLI**: use the CLI commands (`clio invoices list --json`, etc.). Same code path, structured output.
|
|
26
|
+
- **No agent surface, raw integration**: write HTTP calls per the endpoints catalog below.
|
|
27
|
+
|
|
28
|
+
The rest of this skill — field names, gotchas, error catalog, dependency order, search filter syntax — applies regardless of invocation path. Read it for *context*, not for HTTP-call construction unless you're in the third bucket.
|
|
29
|
+
|
|
20
30
|
## When to Use This Skill
|
|
21
31
|
|
|
22
32
|
- Writing or modifying any code that calls the Jaz API
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: jaz-conversion
|
|
3
|
-
version: 5.1.
|
|
3
|
+
version: 5.1.6
|
|
4
4
|
description: >-
|
|
5
5
|
Use this skill when migrating accounting data into Jaz — importing from Xero,
|
|
6
6
|
QuickBooks, Sage, MYOB, or Excel exports. Covers the full conversion pipeline:
|
|
@@ -16,6 +16,10 @@ You are performing an **accounting data conversion** — migrating a customer's
|
|
|
16
16
|
|
|
17
17
|
**This skill provides conversion domain knowledge. For API details (field names, endpoints, gotchas), load the `jaz-api` skill alongside this one.**
|
|
18
18
|
|
|
19
|
+
## Guided in-app data transfer
|
|
20
|
+
|
|
21
|
+
Jaz also has a guided **Data Transfer** flow available in Settings (Xero, QuickBooks, Sage, MYOB).
|
|
22
|
+
|
|
19
23
|
## When to Use This Skill
|
|
20
24
|
|
|
21
25
|
- Analyzing customer-provided Excel/CSV files for conversion
|