jaz-clio 5.24.4 → 5.24.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/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/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 +11 -0
- package/cli.mjs +176 -176
- package/package.json +1 -1
|
@@ -43,3 +43,14 @@ Exception: `fx-reval` is verification-only — Jaz auto-handles period-end IAS 2
|
|
|
43
43
|
- Never echo `JAZ_API_KEY` or `jk-*` strings to the user or into generated code.
|
|
44
44
|
- Never invent enum values (UPPER_SNAKE_CASE only — match exactly).
|
|
45
45
|
- Errors come back structured (`code`, `message`, `failedRows[]`, `errorDetails[]`). Read them — don't guess at what went wrong.
|
|
46
|
+
|
|
47
|
+
## Jaz Jots: record the judgment behind a write
|
|
48
|
+
|
|
49
|
+
A jot is a one-line record of a judgment call: the decision and why. The org's judgment journal lets the next agent or human read the basis instead of re-deriving it.
|
|
50
|
+
|
|
51
|
+
**The one rule:** record a judgment when you chose among real alternatives and a write followed, or when you deliberately decided NOT to write. Skip mechanical actions and calls where the platform, the data, or the user left no choice.
|
|
52
|
+
|
|
53
|
+
- **Two ways to write one.** The `jot` field on the mutation you are already making (`"MATCH: distinct from BILL bil_x, references differ"`), or the `jot` tool alone. Jot AFTER the write succeeds, never before, and carry the record's resourceId.
|
|
54
|
+
- **Recall before repeating.** Call `recall` before repeating a judgment on the same record, kind, or workflow: a prior call with its basis beats re-deriving; a flag on it is a warning.
|
|
55
|
+
- **8 kinds:** CLASSIFICATION · MATCH · SCOPE · ASSUMPTION · RISK · METHOD · RECOVERY · DEVIATION.
|
|
56
|
+
- Optional and non-blocking: a jot never delays or fails the action it rides on.
|