@ze-norm/cli 0.11.5 → 0.13.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/dist/commands/interactive-agent.d.ts +92 -0
- package/dist/commands/interactive-agent.d.ts.map +1 -0
- package/dist/commands/interactive-agent.js +120 -0
- package/dist/commands/pull.d.ts.map +1 -1
- package/dist/commands/pull.js +23 -2
- package/dist/commands/work-render.d.ts +22 -0
- package/dist/commands/work-render.d.ts.map +1 -1
- package/dist/commands/work-render.js +33 -0
- package/dist/commands/work.d.ts +128 -9
- package/dist/commands/work.d.ts.map +1 -1
- package/dist/commands/work.js +420 -57
- package/dist/config/schema.d.ts +10 -0
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/config/schema.js +6 -0
- package/dist/util/markdown.d.ts +16 -0
- package/dist/util/markdown.d.ts.map +1 -1
- package/dist/util/markdown.js +34 -0
- package/dist/zenorm-skills/skills/execute-task/SKILL.md +91 -25
- package/dist/zenorm-skills/skills/zenorm/SKILL.md +63 -67
- package/dist/zenorm-skills/skills/zenorm/evals/evals.json +41 -0
- package/dist/zenorm-skills/skills/zenorm/evals/stub-zenorm.sh +72 -0
- package/dist/zenorm-skills/skills/zenorm/scripts/resolve.sh +66 -0
- package/dist/zenorm-skills/skills/zenorm-sync/SKILL.md +7 -6
- package/package.json +1 -1
|
@@ -107,12 +107,13 @@ or any task is still `active`.
|
|
|
107
107
|
|
|
108
108
|
## Fail-fast / partial-completion rules
|
|
109
109
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
the
|
|
110
|
+
The bucketing in Step 1 already covers the core rule (never `task complete` a
|
|
111
|
+
blocked task; never claim completion when something is `active` or unmet). One
|
|
112
|
+
thing it doesn't cover — capturing the blocker durably:
|
|
113
|
+
|
|
114
|
+
- The blocker reason lives in the chat transcript today (no `task block`
|
|
115
|
+
command exists). Surface it in the final report and, if the work needed is
|
|
116
|
+
non-trivial, capture it as a follow-up task:
|
|
116
117
|
`zenorm task create <spec-key> --title="Unblock <task>: <reason>"`.
|
|
117
118
|
|
|
118
119
|
## Rules
|