jaz-clio 5.4.34 → 5.4.35
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/conversion/SKILL.md +1 -1
- package/assets/skills/jobs/SKILL.md +1 -1
- package/assets/skills/jobs/references/year-end-close.md +1 -1
- package/assets/skills/practice/SKILL.md +1 -1
- package/assets/skills/transaction-recipes/SKILL.md +1 -1
- package/assets/skills/transaction-recipes/references/building-blocks.md +2 -3
- package/assets/skills/transaction-recipes/references/capital-wip.md +3 -8
- package/package.json +1 -1
|
@@ -73,7 +73,7 @@ For Jaz native straight-line depreciation: should be automatic and correct. Veri
|
|
|
73
73
|
|
|
74
74
|
For non-SL assets (DDB, 150DB) where `plan_recipe(recipe: 'depreciation', method: 'ddb' | '150db')` was used: each capsule pre-emitted 12 future-dated DRAFT journals at recipe-execution time. Confirm all 12 are FINALIZED via `search_journals(filter: {capsuleResourceId: {eq: <dep capsule>}, status: {eq: 'DRAFT'}, valueDate: {between: [<FY-start>, <FY-end>]}})` — should be empty. If non-empty: route back to `month-end-close.md` step 9.
|
|
75
75
|
|
|
76
|
-
Reconcile `generate_fa_recon_summary` formula: `openingNbv + additions − disposals − depreciation == closingNbv == TB[Fixed Assets].balance`. Mismatch beyond `CLIENT.materiality_threshold` → investigate (
|
|
76
|
+
Reconcile `generate_fa_recon_summary` formula: `openingNbv + additions − disposals − depreciation == closingNbv == TB[Fixed Assets].balance`. Mismatch beyond `CLIENT.materiality_threshold` → investigate via `search_fixed_assets(filter: {status: {eq: 'ACTIVE'}})` cross-referenced against the depreciation capsule's journals (`search_journals(filter: {capsuleResourceId: {eq: <dep capsule>}, startDate: <FY-start>, endDate: <FY-end>})`) — typical cause is a disposal posted without `update_fixed_asset(status: 'DISPOSED')`.
|
|
77
77
|
|
|
78
78
|
### Y2 — Annual true-ups (manual journals)
|
|
79
79
|
|
|
@@ -70,9 +70,8 @@ The recipe engine uses capsules automatically. But capsules also enable advanced
|
|
|
70
70
|
```
|
|
71
71
|
create_capsule(
|
|
72
72
|
capsuleTypeResourceId: <type id from search_capsule_types>,
|
|
73
|
-
title: 'Bank Loan — DBS Term Loan — FY2025',
|
|
74
|
-
description: 'SGD 100,000 5-year term loan, 6% p.a
|
|
75
|
-
customFields: { 'Loan Reference': 'LN-2025-0042', 'Bank Name': 'DBS Bank' }
|
|
73
|
+
title: 'Bank Loan — DBS Term Loan — LN-2025-0042 — FY2025',
|
|
74
|
+
description: 'SGD 100,000 5-year term loan, 6% p.a. Bank: DBS Bank. Facility ref: LN-2025-0042.'
|
|
76
75
|
)
|
|
77
76
|
```
|
|
78
77
|
|
|
@@ -45,13 +45,8 @@ If `Capital Work-in-Progress` doesn't exist: `create_account(name: 'Capital Work
|
|
|
45
45
|
```
|
|
46
46
|
create_capsule(
|
|
47
47
|
capsuleTypeResourceId: <Capital Projects capsule type id>,
|
|
48
|
-
title: 'Office Renovation — Marina One — FY2025',
|
|
49
|
-
description: 'Renovation of Marina One office
|
|
50
|
-
customFields: {
|
|
51
|
-
'Project Reference': 'CAPEX-2025-001',
|
|
52
|
-
'Estimated Cost': 150000,
|
|
53
|
-
'Estimated Completion': '2025-04-30'
|
|
54
|
-
}
|
|
48
|
+
title: 'Office Renovation — Marina One — FY2025 — CAPEX-2025-001',
|
|
49
|
+
description: 'Renovation of Marina One office. Project ref CAPEX-2025-001. Total estimated cost SGD 150,000. Expected completion 2025-04-30.'
|
|
55
50
|
)
|
|
56
51
|
```
|
|
57
52
|
|
|
@@ -199,7 +194,7 @@ Close the project capsule (or keep ACTIVE for traceability — the FA still refe
|
|
|
199
194
|
| Step 4c | `create_fixed_asset` 422 `cost_mismatch` | Cost passed differs from the transfer journal amount. Both must equal CWIP closing balance. Re-pull `generate_general_ledger` and re-confirm. |
|
|
200
195
|
| Step 4c | Asset created but Jaz auto-depreciation not running | FA may have been created as DRAFT. `update_fixed_asset(resourceId: <id>, status: 'ACTIVE')`. From next month-end, auto-depreciation runs. |
|
|
201
196
|
| Step 5 | CWIP balance nonzero post-transfer | A bill was posted to CWIP AFTER step 4a — common when contractor sends final invoice late. Two options: (a) extend the project (post the late bill, re-do step 4 transfer for the additional amount + create a SECOND FA OR update the existing FA cost via `update_fixed_asset`); (b) expense the late bill directly to operating expense if immaterial. |
|
|
202
|
-
| Project abandoned mid-construction | (process — IAS 16.20 / IAS 36.18 impairment) | If asset will not be completed: write off CWIP balance to Loss on Abandoned Project. `create_journal
|
|
197
|
+
| Project abandoned mid-construction | (process — IAS 16.20 / IAS 36.18 impairment) | If asset will not be completed: write off CWIP balance to Loss on Abandoned Project. `create_journal({capsuleResourceId: <project capsule>, tags: ['abandoned', 'impairment'], internalNotes: '<abandonment date + reason + IAS 36.18 cite>', ...})` — the journal carries the abandonment narrative; the capsule already aggregates every bill + this journal as the audit trail. |
|
|
203
198
|
| Borrowing costs incorrectly capitalized post-completion | (IAS 23 violation) | Per IAS 23.22, capitalization stops when asset is ready for intended use. Any interest capitalized after completion → expense. Reverse via journal: Dr Interest Expense / Cr Capital Work-in-Progress (or the FA if already transferred). |
|
|
204
199
|
|
|
205
200
|
---
|