@leeovery/claude-technical-workflows 2.1.30 → 2.1.31
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/skills/technical-planning/SKILL.md +2 -2
- package/skills/technical-planning/references/author-tasks.md +1 -1
- package/skills/technical-planning/references/define-tasks.md +35 -3
- package/skills/technical-planning/references/plan-construction.md +14 -0
- package/skills/technical-planning/references/plan-index-schema.md +2 -0
package/package.json
CHANGED
|
@@ -62,7 +62,7 @@ Context refresh (compaction) summarizes the conversation, losing procedural deta
|
|
|
62
62
|
2. **Read all tracking and state files** for the current topic — plan index files, review tracking files, implementation tracking files, or any working documents this skill creates. These are your source of truth for progress.
|
|
63
63
|
3. **Check git state.** Run `git status` and `git log --oneline -10` to see recent commits. Commit messages follow a conventional pattern that reveals what was completed.
|
|
64
64
|
4. **Announce your position** to the user before continuing: what step you believe you're at, what's been completed, and what comes next. Wait for confirmation.
|
|
65
|
-
5. **Check `author_gate_mode
|
|
65
|
+
5. **Check `task_list_gate_mode`, `author_gate_mode`, and `finding_gate_mode`** in the Plan Index File frontmatter — if `auto`, the user previously opted in during this session. Preserve these values.
|
|
66
66
|
|
|
67
67
|
Do not guess at progress or continue from memory. The files on disk and git history are authoritative — your recollection is not.
|
|
68
68
|
|
|
@@ -118,7 +118,7 @@ Found existing plan for **{topic}** (previously reached phase {N}, task {M}).
|
|
|
118
118
|
|
|
119
119
|
If the specification changed, update `spec_commit` in the Plan Index File frontmatter to the current commit hash.
|
|
120
120
|
|
|
121
|
-
Reset `author_gate_mode
|
|
121
|
+
Reset `task_list_gate_mode`, `author_gate_mode`, and `finding_gate_mode` to `gated` in the Plan Index File frontmatter (fresh invocation = fresh gates).
|
|
122
122
|
|
|
123
123
|
→ Proceed to **Step 1**.
|
|
124
124
|
|
|
@@ -55,7 +55,7 @@ Task {M} of {total}: {Task Name} — authored. Logging to plan.
|
|
|
55
55
|
· · · · · · · · · · · ·
|
|
56
56
|
**To proceed:**
|
|
57
57
|
- **`y`/`yes`** — Approved. I'll log it to the plan.
|
|
58
|
-
- **`a`/`auto`** — Approve this and all remaining
|
|
58
|
+
- **`a`/`auto`** — Approve this and all remaining task authoring gates automatically
|
|
59
59
|
- **Or tell me what to change.**
|
|
60
60
|
- **Or navigate** — a different phase or task, or the leading edge.
|
|
61
61
|
· · · · · · · · · · · ·
|
|
@@ -43,7 +43,31 @@ planning:
|
|
|
43
43
|
|
|
44
44
|
Commit: `planning({topic}): draft Phase {N} task list`
|
|
45
45
|
|
|
46
|
-
Present the task overview to the user
|
|
46
|
+
Present the task overview to the user:
|
|
47
|
+
|
|
48
|
+
> *Output the next fenced block as markdown (not a code block):*
|
|
49
|
+
|
|
50
|
+
```
|
|
51
|
+
{task overview from planning-task-designer agent}
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Then check the gate mode.
|
|
55
|
+
|
|
56
|
+
### Check Gate Mode
|
|
57
|
+
|
|
58
|
+
Check `task_list_gate_mode` in the Plan Index File frontmatter.
|
|
59
|
+
|
|
60
|
+
#### If `task_list_gate_mode: auto`
|
|
61
|
+
|
|
62
|
+
> *Output the next fenced block as a code block:*
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
Phase {N}: {Phase Name} — task list approved. Proceeding to authoring.
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
→ Skip to **If approved** below.
|
|
69
|
+
|
|
70
|
+
#### If `task_list_gate_mode: gated`
|
|
47
71
|
|
|
48
72
|
**STOP.** Ask:
|
|
49
73
|
|
|
@@ -53,6 +77,7 @@ Present the task overview to the user as rendered markdown (not in a code block)
|
|
|
53
77
|
· · · · · · · · · · · ·
|
|
54
78
|
**To proceed:**
|
|
55
79
|
- **`y`/`yes`** — Approved.
|
|
80
|
+
- **`a`/`auto`** — Approve this and all remaining task list gates automatically
|
|
56
81
|
- **Or tell me what to change** — reorder, split, merge, add, edit, or remove tasks.
|
|
57
82
|
- **Or navigate** — a different phase or task, or the leading edge.
|
|
58
83
|
· · · · · · · · · · · ·
|
|
@@ -66,12 +91,19 @@ Re-invoke `planning-task-designer` with all original inputs PLUS:
|
|
|
66
91
|
|
|
67
92
|
Update the Plan Index File with the revised task table, re-present, and ask again. Repeat until approved.
|
|
68
93
|
|
|
69
|
-
#### If
|
|
94
|
+
#### If `auto`
|
|
95
|
+
|
|
96
|
+
Note that `task_list_gate_mode` should be updated to `auto` during the commit step below.
|
|
97
|
+
|
|
98
|
+
→ Proceed to **If approved** below.
|
|
99
|
+
|
|
100
|
+
#### If approved (`y`/`yes` or `auto`)
|
|
70
101
|
|
|
71
102
|
**If the task list is new or was amended:**
|
|
72
103
|
|
|
73
104
|
1. Advance the `planning:` block to the first task in this phase
|
|
74
|
-
2.
|
|
105
|
+
2. If user chose `auto` at this gate: update `task_list_gate_mode: auto` in the Plan Index File frontmatter
|
|
106
|
+
3. Commit: `planning({topic}): approve Phase {N} task list`
|
|
75
107
|
|
|
76
108
|
**If the task list was already approved and unchanged:** No updates needed.
|
|
77
109
|
|
|
@@ -79,6 +79,20 @@ After Step A returns with an approved task table, continue to **Author Tasks for
|
|
|
79
79
|
{task list from the phase's task table}
|
|
80
80
|
```
|
|
81
81
|
|
|
82
|
+
Check `task_list_gate_mode` in the Plan Index File frontmatter.
|
|
83
|
+
|
|
84
|
+
#### If `task_list_gate_mode: auto` (existing task table)
|
|
85
|
+
|
|
86
|
+
> *Output the next fenced block as a code block:*
|
|
87
|
+
|
|
88
|
+
```
|
|
89
|
+
Phase {N}: {Phase Name} — task list confirmed. Proceeding to authoring.
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
→ Continue to **Author Tasks for the Phase** below.
|
|
93
|
+
|
|
94
|
+
#### If `task_list_gate_mode: gated` (existing task table)
|
|
95
|
+
|
|
82
96
|
> *Output the next fenced block as markdown (not a code block):*
|
|
83
97
|
|
|
84
98
|
```
|
|
@@ -23,6 +23,7 @@ spec_commit: {commit-hash}
|
|
|
23
23
|
created: YYYY-MM-DD
|
|
24
24
|
updated: YYYY-MM-DD
|
|
25
25
|
external_dependencies: []
|
|
26
|
+
task_list_gate_mode: gated
|
|
26
27
|
author_gate_mode: gated
|
|
27
28
|
finding_gate_mode: gated
|
|
28
29
|
planning:
|
|
@@ -43,6 +44,7 @@ planning:
|
|
|
43
44
|
| `created` | Plan creation — today's date |
|
|
44
45
|
| `updated` | Plan creation — today's date; update on each commit |
|
|
45
46
|
| `external_dependencies` | Dependency resolution (Step 6) |
|
|
47
|
+
| `task_list_gate_mode` | Plan creation → `gated`; user opts in → `auto` |
|
|
46
48
|
| `author_gate_mode` | Plan creation → `gated`; user opts in → `auto` |
|
|
47
49
|
| `finding_gate_mode` | Plan creation → `gated`; user opts in → `auto` |
|
|
48
50
|
| `planning.phase` | Tracks current phase position |
|