jaz-clio 5.47.20 → 5.47.22
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 +1 -1
- package/assets/skills/cli/references/common-workflows.md +11 -13
- 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/package.json +1 -1
|
@@ -19,15 +19,15 @@ clio invoices create \
|
|
|
19
19
|
--json
|
|
20
20
|
|
|
21
21
|
# Capture the resourceId from output
|
|
22
|
-
INVOICE_ID=$(clio invoices search --
|
|
22
|
+
INVOICE_ID=$(clio invoices search --reference INV-2026-042 --json | jq -r '.data[0].resourceId')
|
|
23
23
|
|
|
24
24
|
# Finalize (approve) the invoice
|
|
25
|
-
clio invoices
|
|
25
|
+
clio invoices draft finalize "$INVOICE_ID"
|
|
26
26
|
|
|
27
27
|
# Record payment against the invoice
|
|
28
28
|
clio invoices pay "$INVOICE_ID" \
|
|
29
29
|
--amount 5000 \
|
|
30
|
-
--
|
|
30
|
+
--transaction-amount 5000 \
|
|
31
31
|
--account "Bank - SGD" \
|
|
32
32
|
--method BANK_TRANSFER \
|
|
33
33
|
--ref "PAY-042" \
|
|
@@ -67,7 +67,7 @@ Generate a blueprint, run reports, and create any adjusting journals.
|
|
|
67
67
|
|
|
68
68
|
```bash
|
|
69
69
|
# Generate month-end checklist (offline, no auth)
|
|
70
|
-
clio jobs month-end --
|
|
70
|
+
clio jobs month-end --period 2026-03 --currency SGD --json > month-end-checklist.json
|
|
71
71
|
|
|
72
72
|
# Run key reports for review
|
|
73
73
|
clio reports generate trial-balance --to 2026-03-31 --json > tb-mar.json
|
|
@@ -121,11 +121,11 @@ clio invoices create \
|
|
|
121
121
|
--lines '[{"name":"Software License","quantity":1,"unitPrice":2000,"accountResourceId":"Revenue"}]' \
|
|
122
122
|
--finalize
|
|
123
123
|
|
|
124
|
-
# Record payment (cross-currency: amount in bank currency,
|
|
125
|
-
INVOICE_ID=$(clio invoices search --
|
|
124
|
+
# Record payment (cross-currency: amount in bank currency, transaction-amount in invoice currency)
|
|
125
|
+
INVOICE_ID=$(clio invoices search --reference INV-USD-001 --json | jq -r '.data[0].resourceId')
|
|
126
126
|
clio invoices pay "$INVOICE_ID" \
|
|
127
127
|
--amount 2690 \
|
|
128
|
-
--
|
|
128
|
+
--transaction-amount 2000 \
|
|
129
129
|
--account "Bank - SGD" \
|
|
130
130
|
--method BANK_TRANSFER \
|
|
131
131
|
--ref "PAY-USD-001" \
|
|
@@ -141,8 +141,8 @@ Record a fixed asset purchase, calculate depreciation, and create journal entrie
|
|
|
141
141
|
clio fixed-assets create \
|
|
142
142
|
--name "Office Printer" \
|
|
143
143
|
--type "Office Equipment" \
|
|
144
|
-
--
|
|
145
|
-
--
|
|
144
|
+
--amount 3600 \
|
|
145
|
+
--date 2026-01-01 \
|
|
146
146
|
--input '{"depreciationMethod":"STRAIGHT_LINE","usefulLifeMonths":36,"salvageValue":0}'
|
|
147
147
|
|
|
148
148
|
# Preview the depreciation schedule (offline — no auth)
|
|
@@ -151,7 +151,6 @@ clio calc depreciation \
|
|
|
151
151
|
--salvage 0 \
|
|
152
152
|
--life 36 \
|
|
153
153
|
--method straight-line \
|
|
154
|
-
--start-date 2026-01-01 \
|
|
155
154
|
--currency SGD \
|
|
156
155
|
--json
|
|
157
156
|
|
|
@@ -161,7 +160,6 @@ clio ct depreciation \
|
|
|
161
160
|
--salvage 0 \
|
|
162
161
|
--life 36 \
|
|
163
162
|
--method straight-line \
|
|
164
|
-
--start-date 2026-01-01 \
|
|
165
163
|
--ref "DEP-PRINTER" \
|
|
166
164
|
--json
|
|
167
165
|
|
|
@@ -183,7 +181,7 @@ Find transactions matching criteria and bulk-update them.
|
|
|
183
181
|
clio invoices search --query "customer:acme AND status:unpaid AND \$500+" --json
|
|
184
182
|
|
|
185
183
|
# Or with discrete flags
|
|
186
|
-
clio invoices search --contact "Acme Corp" --status DRAFT --from 2026-01-01 --json
|
|
184
|
+
clio invoices search --contact-name "Acme Corp" --status DRAFT --from 2026-01-01 --json
|
|
187
185
|
|
|
188
186
|
# Extract IDs of matching drafts
|
|
189
187
|
DRAFT_IDS=$(clio invoices search --status DRAFT --from 2026-03-01 --to 2026-03-31 --json \
|
|
@@ -237,7 +235,7 @@ Ingest documents, extract data via AI, and review results.
|
|
|
237
235
|
|
|
238
236
|
```bash
|
|
239
237
|
# Ingest a folder of mixed PDFs (invoices, bills, bank statements)
|
|
240
|
-
clio jobs
|
|
238
|
+
clio jobs document-collection --json
|
|
241
239
|
|
|
242
240
|
# Or extract a single document (file, URL, or raw HTML)
|
|
243
241
|
clio magic create --file ./invoice-from-supplier.pdf --type bill --json
|