@hanzlaa/rcode 3.6.7 → 3.6.14
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/cli/generate-command-skills.cjs +5 -12
- package/package.json +1 -1
- package/rihal/bin/rihal-hooks.cjs +154 -39
- package/rihal/bin/rihal-tools.cjs +25 -24
- package/rihal/commands/execute-milestone.md +2 -2
- package/rihal/commands/plan-milestone.md +2 -2
- package/rihal/commands/scaffold-milestone.md +2 -2
- package/rihal/references/continuation-format.md +5 -6
- package/rihal/references/research-synthesis-playbook.md +1 -1
- package/rihal/skills/actions/2-plan/rihal-create-milestone/steps/step-06-phase-stubs.md +1 -1
- package/rihal/skills/actions/2-plan/rihal-create-milestone/steps/step-10-complete.md +1 -1
- package/rihal/skills/actions/4-implementation/rihal-debug/SKILL.md +2 -0
- package/rihal/workflows/analyze-dependencies.md +4 -4
- package/rihal/workflows/audit-fix.md +3 -3
- package/rihal/workflows/audit-milestone.md +12 -11
- package/rihal/workflows/audit-worktrees.md +163 -0
- package/rihal/workflows/audit.md +18 -3
- package/rihal/workflows/correct-course.md +3 -3
- package/rihal/workflows/create-architecture.md +3 -3
- package/rihal/workflows/create-epics-and-stories.md +3 -3
- package/rihal/workflows/discuss-phase-power.md +1 -1
- package/rihal/workflows/document-project.md +3 -3
- package/rihal/workflows/edit-prd.md +3 -3
- package/rihal/workflows/execute-milestone.md +3 -3
- package/rihal/workflows/execute-sprint.md +1 -1
- package/rihal/workflows/execute-waves.md +27 -2
- package/rihal/workflows/forensics.md +3 -3
- package/rihal/workflows/health.md +23 -8
- package/rihal/workflows/help.md +0 -1
- package/rihal/workflows/new-project-roadmap.md +2 -2
- package/rihal/workflows/plan-research-validation.md +2 -2
- package/rihal/workflows/plan.md +7 -7
- package/rihal/workflows/retrospective.md +3 -3
- package/rihal/workflows/review-adversarial.md +8 -6
- package/rihal/workflows/review.md +2 -2
- package/rihal/workflows/scaffold-project.md +3 -3
- package/rihal/workflows/secure-phase.md +4 -4
- package/rihal/workflows/session-report.md +1 -1
- package/rihal/workflows/status.md +6 -10
- package/rihal/workflows/validate-prd.md +3 -3
- package/rihal/workflows/verify-phase.md +3 -3
- package/rihal/workflows/workstream.md +3 -3
|
@@ -118,22 +118,18 @@ Omit a section entirely when its array is empty.
|
|
|
118
118
|
|
|
119
119
|
## Step 6 — Next Up (intent-tree)
|
|
120
120
|
|
|
121
|
-
Render `SNAPSHOT.routes[]` as a Route A/B/C menu:
|
|
121
|
+
Render `SNAPSHOT.routes[]` as a Route A/B/C menu. Each route is **one line** — the command is the thing you copy and run:
|
|
122
122
|
|
|
123
123
|
```
|
|
124
124
|
Next Up:
|
|
125
125
|
|
|
126
|
-
[A]
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
[
|
|
130
|
-
→ {route.command}
|
|
131
|
-
|
|
132
|
-
[C] {route where letter === "C"}
|
|
133
|
-
→ {route.command}
|
|
126
|
+
[A] /rihal-execute 4
|
|
127
|
+
[B] /rihal-plan 5
|
|
128
|
+
[C] /rihal-audit-milestone 28 --fix-drift
|
|
129
|
+
[C] /rihal-complete-milestone
|
|
134
130
|
```
|
|
135
131
|
|
|
136
|
-
Group routes by letter
|
|
132
|
+
Format: ` [{letter}] {command}` — no label, no arrow, no indented second line. The command already contains the relevant arguments (phase number, count, flags). Group routes by letter; multiple routes sharing a letter appear on consecutive lines. If there are no routes, print the fallback suggestion from the CLI output.
|
|
137
133
|
|
|
138
134
|
</process>
|
|
139
135
|
|
|
@@ -26,6 +26,6 @@ Skill not installed — run: npx @hanzlaa/rcode install
|
|
|
26
26
|
|
|
27
27
|
## ▶ Next Up
|
|
28
28
|
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
29
|
+
- /rihal-create-milestone
|
|
30
|
+
- /rihal-edit-prd
|
|
31
|
+
- /rihal-council {prd-question}
|
|
@@ -404,6 +404,6 @@ Orchestrator routes: `passed` → update_roadmap | `gaps_found` → create/execu
|
|
|
404
404
|
|
|
405
405
|
## ▶ Next Up
|
|
406
406
|
|
|
407
|
-
-
|
|
408
|
-
-
|
|
409
|
-
-
|
|
407
|
+
- /rihal-complete-milestone
|
|
408
|
+
- /rihal-plan --gaps {phase}
|
|
409
|
+
- /rihal-verify-phase {phase}
|
|
@@ -204,6 +204,6 @@ If arguments are invalid, missing files, or subagent fails:
|
|
|
204
204
|
|
|
205
205
|
## ▶ Next Up
|
|
206
206
|
|
|
207
|
-
-
|
|
208
|
-
-
|
|
209
|
-
-
|
|
207
|
+
- /rihal-execute {workstream-phase}
|
|
208
|
+
- /rihal-progress
|
|
209
|
+
- /rihal-forensics
|