@hanzlaa/rcode 2.6.6 → 2.6.7
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/package.json +1 -1
- package/rihal/workflows/plan.md +12 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hanzlaa/rcode",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.7",
|
|
4
4
|
"description": "Rihal Code (rcode) — installable context-brain for Rihalians. 43 agents, 99 slash commands, 56 skills, pullable Rihal standards. Unified install for Claude Code, Cursor, and Gemini.",
|
|
5
5
|
"main": "cli/index.js",
|
|
6
6
|
"bin": {
|
package/rihal/workflows/plan.md
CHANGED
|
@@ -111,6 +111,18 @@ mkdir -p ".planning/phases/${padded_phase}-${phase_slug}"
|
|
|
111
111
|
|
|
112
112
|
**Existing artifacts from init:** `has_research`, `has_plans`, `plan_count`.
|
|
113
113
|
|
|
114
|
+
**TASKS.md ingestion (#385 chain).** If the phase directory contains a `TASKS.md` file (typically auto-extracted by `/rihal:add-phase` from a bulk `/rihal:quick` or `/rihal:do` route), read it now:
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
TASKS_FILE=".planning/phases/${padded_phase}-${phase_slug}/TASKS.md"
|
|
118
|
+
HAS_TASKS=$([ -f "$TASKS_FILE" ] && echo true || echo false)
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
When `HAS_TASKS=true`:
|
|
122
|
+
- Pass the TASKS.md content to the planner agent as authoritative phase scope. The planner uses it as the input list — each entry becomes a candidate sprint task in SPRINT.md.
|
|
123
|
+
- Surface this in the opening banner: *"Phase scope source: TASKS.md ({N} entries auto-extracted from bulk route on {date})"*.
|
|
124
|
+
- Do NOT re-prompt the user for scope when TASKS.md is present — they already provided the list once at the /rihal:quick or /rihal:do entry point. The whole point of the auto-route chain is that the user doesn't paste the same content multiple times.
|
|
125
|
+
|
|
114
126
|
## 2.5. Validate `--reviews` Prerequisite
|
|
115
127
|
|
|
116
128
|
**Skip if:** No `--reviews` flag.
|