@leeovery/claude-technical-workflows 2.1.24 → 2.1.26
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/agents/review-task-verifier.md +22 -10
- package/package.json +1 -1
- package/skills/link-dependencies/SKILL.md +60 -33
- package/skills/start-discussion/references/display-options.md +44 -15
- package/skills/start-discussion/references/gather-context-continue.md +2 -0
- package/skills/start-discussion/references/gather-context-fresh.md +6 -0
- package/skills/start-discussion/references/gather-context-research.md +2 -2
- package/skills/start-implementation/SKILL.md +114 -47
- package/skills/start-planning/SKILL.md +19 -133
- package/skills/start-planning/references/cross-cutting-context.md +50 -0
- package/skills/start-planning/references/display-state.md +109 -0
- package/skills/start-planning/references/invoke-skill.md +29 -0
- package/skills/start-research/references/gather-context.md +4 -4
- package/skills/start-review/SKILL.md +14 -123
- package/skills/start-review/references/display-plans.md +103 -0
- package/skills/start-review/references/invoke-skill.md +32 -0
- package/skills/start-review/references/select-plans.md +41 -0
- package/skills/start-specification/references/analysis-flow.md +2 -0
- package/skills/start-specification/references/confirm-continue.md +21 -1
- package/skills/start-specification/references/confirm-create.md +15 -1
- package/skills/start-specification/references/confirm-refine.md +9 -1
- package/skills/start-specification/references/confirm-unify.md +12 -0
- package/skills/start-specification/references/display-analyze.md +21 -2
- package/skills/start-specification/references/display-blocks.md +11 -6
- package/skills/start-specification/references/display-groupings.md +20 -13
- package/skills/start-specification/references/display-single-grouped.md +13 -6
- package/skills/start-specification/references/display-single-has-spec.md +15 -7
- package/skills/start-specification/references/display-single-no-spec.md +13 -9
- package/skills/start-specification/references/display-single.md +0 -2
- package/skills/start-specification/references/display-specs-menu.md +21 -6
- package/skills/status/SKILL.md +155 -38
- package/skills/status/scripts/discovery.sh +420 -0
- package/skills/technical-implementation/SKILL.md +14 -6
- package/skills/technical-implementation/references/steps/analysis-loop.md +12 -6
- package/skills/technical-implementation/references/steps/task-loop.md +12 -6
- package/skills/technical-planning/SKILL.md +8 -4
- package/skills/technical-planning/references/steps/analyze-task-graph.md +8 -4
- package/skills/technical-planning/references/steps/author-tasks.md +4 -2
- package/skills/technical-planning/references/steps/define-phases.md +4 -2
- package/skills/technical-planning/references/steps/define-tasks.md +4 -2
- package/skills/technical-planning/references/steps/plan-construction.md +4 -2
- package/skills/technical-planning/references/steps/resolve-dependencies.md +4 -2
- package/skills/technical-planning/references/steps/review-integrity.md +4 -2
- package/skills/technical-planning/references/steps/review-traceability.md +4 -2
- package/skills/technical-research/SKILL.md +4 -2
- package/skills/technical-review/references/invoke-task-verifiers.md +37 -47
- package/skills/technical-specification/references/specification-guide.md +11 -3
- package/skills/view-plan/SKILL.md +3 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Invoke the Skill
|
|
2
|
+
|
|
3
|
+
*Reference for **[start-review](../SKILL.md)***
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
After completing the steps above, this skill's purpose is fulfilled.
|
|
8
|
+
|
|
9
|
+
Invoke the [technical-review](../../technical-review/SKILL.md) skill for your next instructions. Do not act on the gathered information until the skill is loaded - it contains the instructions for how to proceed.
|
|
10
|
+
|
|
11
|
+
**Example handoff (single):**
|
|
12
|
+
```
|
|
13
|
+
Review session for: {topic}
|
|
14
|
+
Review scope: single
|
|
15
|
+
Plan: docs/workflow/planning/{topic}.md
|
|
16
|
+
Format: {format}
|
|
17
|
+
Plan ID: {plan_id} (if applicable)
|
|
18
|
+
Specification: {specification} (exists: {true|false})
|
|
19
|
+
|
|
20
|
+
Invoke the technical-review skill.
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
**Example handoff (multi/all):**
|
|
24
|
+
```
|
|
25
|
+
Review session for: {scope description}
|
|
26
|
+
Review scope: {multi | all}
|
|
27
|
+
Plans:
|
|
28
|
+
- docs/workflow/planning/{topic-1}.md (format: {format}, spec: {spec})
|
|
29
|
+
- docs/workflow/planning/{topic-2}.md (format: {format}, spec: {spec})
|
|
30
|
+
|
|
31
|
+
Invoke the technical-review skill.
|
|
32
|
+
```
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Select Plans
|
|
2
|
+
|
|
3
|
+
*Reference for **[start-review](../SKILL.md)***
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
This step only applies for `single` or `multi` scope chosen in Step 3.
|
|
8
|
+
|
|
9
|
+
#### If scope is "all"
|
|
10
|
+
|
|
11
|
+
All reviewable plans are included. No selection needed.
|
|
12
|
+
|
|
13
|
+
→ Proceed directly to **Step 5**.
|
|
14
|
+
|
|
15
|
+
#### If scope is "single"
|
|
16
|
+
|
|
17
|
+
> *Output the next fenced block as markdown (not a code block):*
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
· · · · · · · · · · · ·
|
|
21
|
+
Which plan would you like to review? (Enter a number from Step 3)
|
|
22
|
+
· · · · · · · · · · · ·
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
**STOP.** Wait for user response.
|
|
26
|
+
|
|
27
|
+
→ Proceed to **Step 5**.
|
|
28
|
+
|
|
29
|
+
#### If scope is "multi"
|
|
30
|
+
|
|
31
|
+
> *Output the next fenced block as markdown (not a code block):*
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
· · · · · · · · · · · ·
|
|
35
|
+
Which plans to include? (Enter numbers separated by commas, e.g. 1,3)
|
|
36
|
+
· · · · · · · · · · · ·
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
**STOP.** Wait for user response.
|
|
40
|
+
|
|
41
|
+
→ Proceed to **Step 5**.
|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
#### If spec is in-progress with pending sources
|
|
8
8
|
|
|
9
|
+
> *Output the next fenced block as a code block:*
|
|
10
|
+
|
|
9
11
|
```
|
|
10
12
|
Continuing specification: {Title Case Name}
|
|
11
13
|
|
|
@@ -18,14 +20,20 @@ Previously extracted (for reference):
|
|
|
18
20
|
• {discussion-name}
|
|
19
21
|
```
|
|
20
22
|
|
|
23
|
+
> *Output the next fenced block as markdown (not a code block):*
|
|
24
|
+
|
|
25
|
+
```
|
|
21
26
|
· · · · · · · · · · · ·
|
|
22
27
|
Proceed?
|
|
23
28
|
- **`y`/`yes`**
|
|
24
29
|
- **`n`/`no`**
|
|
25
30
|
· · · · · · · · · · · ·
|
|
31
|
+
```
|
|
26
32
|
|
|
27
33
|
#### If spec is in-progress with all sources extracted
|
|
28
34
|
|
|
35
|
+
> *Output the next fenced block as a code block:*
|
|
36
|
+
|
|
29
37
|
```
|
|
30
38
|
Continuing specification: {Title Case Name}
|
|
31
39
|
|
|
@@ -36,14 +44,20 @@ All sources extracted:
|
|
|
36
44
|
• {discussion-name}
|
|
37
45
|
```
|
|
38
46
|
|
|
47
|
+
> *Output the next fenced block as markdown (not a code block):*
|
|
48
|
+
|
|
49
|
+
```
|
|
39
50
|
· · · · · · · · · · · ·
|
|
40
51
|
Proceed?
|
|
41
52
|
- **`y`/`yes`**
|
|
42
53
|
- **`n`/`no`**
|
|
43
54
|
· · · · · · · · · · · ·
|
|
55
|
+
```
|
|
44
56
|
|
|
45
57
|
#### If spec is concluded with pending sources
|
|
46
58
|
|
|
59
|
+
> *Output the next fenced block as a code block:*
|
|
60
|
+
|
|
47
61
|
```
|
|
48
62
|
Continuing specification: {Title Case Name}
|
|
49
63
|
|
|
@@ -56,11 +70,15 @@ Previously extracted (for reference):
|
|
|
56
70
|
• {discussion-name}
|
|
57
71
|
```
|
|
58
72
|
|
|
73
|
+
> *Output the next fenced block as markdown (not a code block):*
|
|
74
|
+
|
|
75
|
+
```
|
|
59
76
|
· · · · · · · · · · · ·
|
|
60
77
|
Proceed?
|
|
61
78
|
- **`y`/`yes`**
|
|
62
79
|
- **`n`/`no`**
|
|
63
80
|
· · · · · · · · · · · ·
|
|
81
|
+
```
|
|
64
82
|
|
|
65
83
|
**STOP.** Wait for user response.
|
|
66
84
|
|
|
@@ -78,12 +96,14 @@ Proceed?
|
|
|
78
96
|
|
|
79
97
|
#### If single discussion (no menu to return to)
|
|
80
98
|
|
|
99
|
+
> *Output the next fenced block as a code block:*
|
|
100
|
+
|
|
81
101
|
```
|
|
82
102
|
Understood. You can run /start-discussion to continue working on
|
|
83
103
|
discussions, or re-run this command when ready.
|
|
84
104
|
```
|
|
85
105
|
|
|
86
|
-
|
|
106
|
+
**STOP.** Do not proceed — terminal condition.
|
|
87
107
|
|
|
88
108
|
#### If groupings or specs menu
|
|
89
109
|
|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
#### If no source discussions have individual specs
|
|
8
8
|
|
|
9
|
+
> *Output the next fenced block as a code block:*
|
|
10
|
+
|
|
9
11
|
```
|
|
10
12
|
Creating specification: {Title Case Name}
|
|
11
13
|
|
|
@@ -16,16 +18,22 @@ Sources:
|
|
|
16
18
|
Output: docs/workflow/specification/{kebab-case-name}.md
|
|
17
19
|
```
|
|
18
20
|
|
|
21
|
+
> *Output the next fenced block as markdown (not a code block):*
|
|
22
|
+
|
|
23
|
+
```
|
|
19
24
|
· · · · · · · · · · · ·
|
|
20
25
|
Proceed?
|
|
21
26
|
- **`y`/`yes`**
|
|
22
27
|
- **`n`/`no`**
|
|
23
28
|
· · · · · · · · · · · ·
|
|
29
|
+
```
|
|
24
30
|
|
|
25
31
|
#### If any source discussion has an individual spec
|
|
26
32
|
|
|
27
33
|
Note the supersession (`has_individual_spec: true`):
|
|
28
34
|
|
|
35
|
+
> *Output the next fenced block as a code block:*
|
|
36
|
+
|
|
29
37
|
```
|
|
30
38
|
Creating specification: {Title Case Name}
|
|
31
39
|
|
|
@@ -39,11 +47,15 @@ After completion:
|
|
|
39
47
|
specification/{discussion-name}.md → marked as superseded
|
|
40
48
|
```
|
|
41
49
|
|
|
50
|
+
> *Output the next fenced block as markdown (not a code block):*
|
|
51
|
+
|
|
52
|
+
```
|
|
42
53
|
· · · · · · · · · · · ·
|
|
43
54
|
Proceed?
|
|
44
55
|
- **`y`/`yes`**
|
|
45
56
|
- **`n`/`no`**
|
|
46
57
|
· · · · · · · · · · · ·
|
|
58
|
+
```
|
|
47
59
|
|
|
48
60
|
**STOP.** Wait for user response.
|
|
49
61
|
|
|
@@ -61,12 +73,14 @@ Proceed?
|
|
|
61
73
|
|
|
62
74
|
#### If single discussion (no menu to return to)
|
|
63
75
|
|
|
76
|
+
> *Output the next fenced block as a code block:*
|
|
77
|
+
|
|
64
78
|
```
|
|
65
79
|
Understood. You can run /start-discussion to continue working on
|
|
66
80
|
discussions, or re-run this command when ready.
|
|
67
81
|
```
|
|
68
82
|
|
|
69
|
-
|
|
83
|
+
**STOP.** Do not proceed — terminal condition.
|
|
70
84
|
|
|
71
85
|
#### If groupings or specs menu
|
|
72
86
|
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
> *Output the next fenced block as a code block:*
|
|
8
|
+
|
|
7
9
|
```
|
|
8
10
|
Refining specification: {Title Case Name}
|
|
9
11
|
|
|
@@ -13,11 +15,15 @@ All sources extracted:
|
|
|
13
15
|
• {discussion-name}
|
|
14
16
|
```
|
|
15
17
|
|
|
18
|
+
> *Output the next fenced block as markdown (not a code block):*
|
|
19
|
+
|
|
20
|
+
```
|
|
16
21
|
· · · · · · · · · · · ·
|
|
17
22
|
Proceed?
|
|
18
23
|
- **`y`/`yes`**
|
|
19
24
|
- **`n`/`no`**
|
|
20
25
|
· · · · · · · · · · · ·
|
|
26
|
+
```
|
|
21
27
|
|
|
22
28
|
**STOP.** Wait for user response.
|
|
23
29
|
|
|
@@ -29,12 +35,14 @@ Proceed?
|
|
|
29
35
|
|
|
30
36
|
#### If single discussion (no menu to return to)
|
|
31
37
|
|
|
38
|
+
> *Output the next fenced block as a code block:*
|
|
39
|
+
|
|
32
40
|
```
|
|
33
41
|
Understood. You can run /start-discussion to continue working on
|
|
34
42
|
discussions, or re-run this command when ready.
|
|
35
43
|
```
|
|
36
44
|
|
|
37
|
-
|
|
45
|
+
**STOP.** Do not proceed — terminal condition.
|
|
38
46
|
|
|
39
47
|
#### If groupings or specs menu
|
|
40
48
|
|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
#### If existing specifications will be superseded
|
|
8
8
|
|
|
9
|
+
> *Output the next fenced block as a code block:*
|
|
10
|
+
|
|
9
11
|
```
|
|
10
12
|
Creating specification: Unified
|
|
11
13
|
|
|
@@ -21,14 +23,20 @@ Existing specifications to incorporate:
|
|
|
21
23
|
Output: docs/workflow/specification/unified.md
|
|
22
24
|
```
|
|
23
25
|
|
|
26
|
+
> *Output the next fenced block as markdown (not a code block):*
|
|
27
|
+
|
|
28
|
+
```
|
|
24
29
|
· · · · · · · · · · · ·
|
|
25
30
|
Proceed?
|
|
26
31
|
- **`y`/`yes`**
|
|
27
32
|
- **`n`/`no`**
|
|
28
33
|
· · · · · · · · · · · ·
|
|
34
|
+
```
|
|
29
35
|
|
|
30
36
|
#### If no existing specifications
|
|
31
37
|
|
|
38
|
+
> *Output the next fenced block as a code block:*
|
|
39
|
+
|
|
32
40
|
```
|
|
33
41
|
Creating specification: Unified
|
|
34
42
|
|
|
@@ -40,11 +48,15 @@ Sources:
|
|
|
40
48
|
Output: docs/workflow/specification/unified.md
|
|
41
49
|
```
|
|
42
50
|
|
|
51
|
+
> *Output the next fenced block as markdown (not a code block):*
|
|
52
|
+
|
|
53
|
+
```
|
|
43
54
|
· · · · · · · · · · · ·
|
|
44
55
|
Proceed?
|
|
45
56
|
- **`y`/`yes`**
|
|
46
57
|
- **`n`/`no`**
|
|
47
58
|
· · · · · · · · · · · ·
|
|
59
|
+
```
|
|
48
60
|
|
|
49
61
|
**STOP.** Wait for user response.
|
|
50
62
|
|
|
@@ -8,6 +8,8 @@ Prompted when multiple concluded discussions exist, no specifications exist, and
|
|
|
8
8
|
|
|
9
9
|
## Display
|
|
10
10
|
|
|
11
|
+
> *Output the next fenced block as a code block:*
|
|
12
|
+
|
|
11
13
|
```
|
|
12
14
|
Specification Overview
|
|
13
15
|
|
|
@@ -23,11 +25,14 @@ List all concluded discussions from discovery output.
|
|
|
23
25
|
|
|
24
26
|
### If in-progress discussions exist
|
|
25
27
|
|
|
28
|
+
> *Output the next fenced block as a code block:*
|
|
29
|
+
|
|
26
30
|
```
|
|
27
31
|
Discussions not ready for specification:
|
|
28
32
|
These discussions are still in progress and must be concluded
|
|
29
33
|
before they can be included in a specification.
|
|
30
|
-
|
|
34
|
+
|
|
35
|
+
• {discussion-name}
|
|
31
36
|
```
|
|
32
37
|
|
|
33
38
|
### Cache-Aware Message
|
|
@@ -36,20 +41,28 @@ No `---` separator before these messages.
|
|
|
36
41
|
|
|
37
42
|
#### If cache status is "none"
|
|
38
43
|
|
|
44
|
+
> *Output the next fenced block as a code block:*
|
|
45
|
+
|
|
39
46
|
```
|
|
40
47
|
These discussions will be analyzed for natural groupings to determine
|
|
41
48
|
how they should be organized into specifications. Results are cached
|
|
42
49
|
and reused until discussions change.
|
|
43
50
|
```
|
|
44
51
|
|
|
52
|
+
> *Output the next fenced block as markdown (not a code block):*
|
|
53
|
+
|
|
54
|
+
```
|
|
45
55
|
· · · · · · · · · · · ·
|
|
46
56
|
Proceed with analysis?
|
|
47
57
|
- **`y`/`yes`**
|
|
48
58
|
- **`n`/`no`**
|
|
49
59
|
· · · · · · · · · · · ·
|
|
60
|
+
```
|
|
50
61
|
|
|
51
62
|
#### If cache status is "stale"
|
|
52
63
|
|
|
64
|
+
> *Output the next fenced block as a code block:*
|
|
65
|
+
|
|
53
66
|
```
|
|
54
67
|
A previous grouping analysis exists but is outdated — discussions
|
|
55
68
|
have changed since it was created.
|
|
@@ -58,11 +71,15 @@ These discussions will be re-analyzed for natural groupings. Results
|
|
|
58
71
|
are cached and reused until discussions change.
|
|
59
72
|
```
|
|
60
73
|
|
|
74
|
+
> *Output the next fenced block as markdown (not a code block):*
|
|
75
|
+
|
|
76
|
+
```
|
|
61
77
|
· · · · · · · · · · · ·
|
|
62
78
|
Proceed with analysis?
|
|
63
79
|
- **`y`/`yes`**
|
|
64
80
|
- **`n`/`no`**
|
|
65
81
|
· · · · · · · · · · · ·
|
|
82
|
+
```
|
|
66
83
|
|
|
67
84
|
**STOP.** Wait for user response.
|
|
68
85
|
|
|
@@ -77,9 +94,11 @@ rm docs/workflow/.cache/discussion-consolidation-analysis.md
|
|
|
77
94
|
|
|
78
95
|
#### If user declines (n)
|
|
79
96
|
|
|
97
|
+
> *Output the next fenced block as a code block:*
|
|
98
|
+
|
|
80
99
|
```
|
|
81
100
|
Understood. You can run /start-discussion to continue working on
|
|
82
101
|
discussions, or re-run this command when ready.
|
|
83
102
|
```
|
|
84
103
|
|
|
85
|
-
**
|
|
104
|
+
**STOP.** Do not proceed — terminal condition.
|
|
@@ -8,8 +8,10 @@ Two terminal paths — the command stops and cannot proceed.
|
|
|
8
8
|
|
|
9
9
|
## If no discussions exist
|
|
10
10
|
|
|
11
|
+
> *Output the next fenced block as a code block:*
|
|
12
|
+
|
|
11
13
|
```
|
|
12
|
-
Specification
|
|
14
|
+
Specification Overview
|
|
13
15
|
|
|
14
16
|
No discussions found.
|
|
15
17
|
|
|
@@ -20,18 +22,21 @@ that specifications are built upon.
|
|
|
20
22
|
Run /start-discussion to begin documenting technical decisions.
|
|
21
23
|
```
|
|
22
24
|
|
|
23
|
-
**STOP.**
|
|
25
|
+
**STOP.** Do not proceed — terminal condition.
|
|
24
26
|
|
|
25
27
|
## If discussions exist but none concluded
|
|
26
28
|
|
|
29
|
+
> *Output the next fenced block as a code block:*
|
|
30
|
+
|
|
27
31
|
```
|
|
28
|
-
Specification
|
|
32
|
+
Specification Overview
|
|
29
33
|
|
|
30
34
|
No concluded discussions found.
|
|
31
35
|
|
|
32
36
|
The following discussions are still in progress:
|
|
33
|
-
|
|
34
|
-
|
|
37
|
+
|
|
38
|
+
• {discussion-name}
|
|
39
|
+
• {discussion-name}
|
|
35
40
|
|
|
36
41
|
Specifications can only be created from concluded discussions.
|
|
37
42
|
Run /start-discussion to continue working on a discussion.
|
|
@@ -39,4 +44,4 @@ Run /start-discussion to continue working on a discussion.
|
|
|
39
44
|
|
|
40
45
|
List all in-progress discussions from discovery output.
|
|
41
46
|
|
|
42
|
-
**STOP.**
|
|
47
|
+
**STOP.** Do not proceed — terminal condition.
|
|
@@ -50,38 +50,40 @@ For each discussion: status is `ready`. Spec status: `none`.
|
|
|
50
50
|
|
|
51
51
|
All items are first-class — every grouping (including single-discussion entries) is a numbered item.
|
|
52
52
|
|
|
53
|
+
> *Output the next fenced block as a code block:*
|
|
54
|
+
|
|
53
55
|
```
|
|
54
56
|
Specification Overview
|
|
55
57
|
|
|
56
58
|
Recommended breakdown for specifications with their source discussions.
|
|
57
59
|
|
|
58
|
-
1. {
|
|
59
|
-
└─ Spec: {
|
|
60
|
+
1. {grouping_name:(titlecase)}
|
|
61
|
+
└─ Spec: @if(has_spec) {spec_status:[in-progress|concluded]} ({extraction_summary}) @else (no spec) @endif
|
|
60
62
|
└─ Discussions:
|
|
61
|
-
├─ {discussion
|
|
62
|
-
└─
|
|
63
|
+
├─ {discussion} ({status:[extracted|pending|ready|reopened]})
|
|
64
|
+
└─ ...
|
|
63
65
|
|
|
64
|
-
2.
|
|
65
|
-
└─ Spec: none
|
|
66
|
-
└─ Discussions:
|
|
67
|
-
└─ {discussion-name} (ready)
|
|
66
|
+
2. ...
|
|
68
67
|
```
|
|
69
68
|
|
|
70
|
-
**Output in a fenced code block exactly as shown above.**
|
|
71
|
-
|
|
72
69
|
### If in-progress discussions exist
|
|
73
70
|
|
|
71
|
+
> *Output the next fenced block as a code block:*
|
|
72
|
+
|
|
74
73
|
```
|
|
75
74
|
Discussions not ready for specification:
|
|
76
75
|
These discussions are still in progress and must be concluded
|
|
77
76
|
before they can be included in a specification.
|
|
78
|
-
|
|
77
|
+
|
|
78
|
+
• {discussion-name}
|
|
79
79
|
```
|
|
80
80
|
|
|
81
81
|
### Key/Legend
|
|
82
82
|
|
|
83
83
|
Show only the statuses that appear in the current display. No `---` separator before this section.
|
|
84
84
|
|
|
85
|
+
> *Output the next fenced block as a code block:*
|
|
86
|
+
|
|
85
87
|
```
|
|
86
88
|
Key:
|
|
87
89
|
|
|
@@ -92,7 +94,6 @@ Key:
|
|
|
92
94
|
reopened — was extracted but discussion has regressed to in-progress
|
|
93
95
|
|
|
94
96
|
Spec status:
|
|
95
|
-
none — no specification file exists yet
|
|
96
97
|
in-progress — specification work is ongoing
|
|
97
98
|
concluded — specification is complete
|
|
98
99
|
```
|
|
@@ -101,6 +102,8 @@ Key:
|
|
|
101
102
|
|
|
102
103
|
No `---` separator before this section.
|
|
103
104
|
|
|
105
|
+
> *Output the next fenced block as a code block:*
|
|
106
|
+
|
|
104
107
|
```
|
|
105
108
|
Tip: To restructure groupings or pull a discussion into its own
|
|
106
109
|
specification, choose "Re-analyze" and provide guidance.
|
|
@@ -127,6 +130,8 @@ After all grouping entries, append meta options:
|
|
|
127
130
|
|
|
128
131
|
**Example assembled menu** (2 groupings, specs exist):
|
|
129
132
|
|
|
133
|
+
> *Output the next fenced block as markdown (not a code block):*
|
|
134
|
+
|
|
130
135
|
```
|
|
131
136
|
· · · · · · · · · · · ·
|
|
132
137
|
1. Start "Auth Flow" — 2 ready discussions
|
|
@@ -143,7 +148,9 @@ Select an option (enter number):
|
|
|
143
148
|
· · · · · · · · · · · ·
|
|
144
149
|
```
|
|
145
150
|
|
|
146
|
-
|
|
151
|
+
Recreate with actual topics and states from discovery.
|
|
152
|
+
|
|
153
|
+
Every meta option (Unify, Re-analyze) MUST include its description lines.
|
|
147
154
|
|
|
148
155
|
**STOP.** Wait for user response.
|
|
149
156
|
|
|
@@ -15,33 +15,38 @@ Extraction count: X = sources with `status: incorporated`, Y = total source coun
|
|
|
15
15
|
|
|
16
16
|
## Display
|
|
17
17
|
|
|
18
|
+
> *Output the next fenced block as a code block:*
|
|
19
|
+
|
|
18
20
|
```
|
|
19
21
|
Specification Overview
|
|
20
22
|
|
|
21
23
|
Single concluded discussion found with existing multi-source specification.
|
|
22
24
|
|
|
23
|
-
1. {
|
|
24
|
-
└─ Spec: {spec_status} ({X} of {Y} sources extracted)
|
|
25
|
+
1. {topic:(titlecase)}
|
|
26
|
+
└─ Spec: {spec_status:[in-progress|concluded]} ({X} of {Y} sources extracted)
|
|
25
27
|
└─ Discussions:
|
|
26
28
|
├─ {source-name} (extracted)
|
|
27
29
|
└─ {source-name} (extracted, reopened)
|
|
28
30
|
```
|
|
29
31
|
|
|
30
|
-
**Output in a fenced code block exactly as shown above.**
|
|
31
|
-
|
|
32
32
|
### If in-progress discussions exist
|
|
33
33
|
|
|
34
|
+
> *Output the next fenced block as a code block:*
|
|
35
|
+
|
|
34
36
|
```
|
|
35
37
|
Discussions not ready for specification:
|
|
36
38
|
These discussions are still in progress and must be concluded
|
|
37
39
|
before they can be included in a specification.
|
|
38
|
-
|
|
40
|
+
|
|
41
|
+
• {discussion-name}
|
|
39
42
|
```
|
|
40
43
|
|
|
41
44
|
### Key/Legend
|
|
42
45
|
|
|
43
46
|
Show only the statuses that appear in the current display. No `---` separator before this section.
|
|
44
47
|
|
|
48
|
+
> *Output the next fenced block as a code block:*
|
|
49
|
+
|
|
45
50
|
```
|
|
46
51
|
Key:
|
|
47
52
|
|
|
@@ -57,8 +62,10 @@ Key:
|
|
|
57
62
|
|
|
58
63
|
## After Display
|
|
59
64
|
|
|
65
|
+
> *Output the next fenced block as a code block:*
|
|
66
|
+
|
|
60
67
|
```
|
|
61
|
-
Automatically proceeding with "{
|
|
68
|
+
Automatically proceeding with "{topic:(titlecase)}".
|
|
62
69
|
```
|
|
63
70
|
|
|
64
71
|
Auto-proceed uses the spec name. Verb rule:
|
|
@@ -10,32 +10,37 @@ Determine extraction count: check the spec's `sources` array from discovery. Cou
|
|
|
10
10
|
|
|
11
11
|
## Display
|
|
12
12
|
|
|
13
|
+
> *Output the next fenced block as a code block:*
|
|
14
|
+
|
|
13
15
|
```
|
|
14
16
|
Specification Overview
|
|
15
17
|
|
|
16
18
|
Single concluded discussion found with existing specification.
|
|
17
19
|
|
|
18
|
-
1. {
|
|
19
|
-
└─ Spec: {spec_status} ({X} of {Y} sources extracted)
|
|
20
|
+
1. {topic:(titlecase)}
|
|
21
|
+
└─ Spec: {spec_status:[in-progress|concluded]} ({X} of {Y} sources extracted)
|
|
20
22
|
└─ Discussions:
|
|
21
23
|
└─ {discussion-name} (extracted)
|
|
22
24
|
```
|
|
23
25
|
|
|
24
|
-
**Output in a fenced code block exactly as shown above.**
|
|
25
|
-
|
|
26
26
|
### If in-progress discussions exist
|
|
27
27
|
|
|
28
|
+
> *Output the next fenced block as a code block:*
|
|
29
|
+
|
|
28
30
|
```
|
|
29
31
|
Discussions not ready for specification:
|
|
30
32
|
These discussions are still in progress and must be concluded
|
|
31
33
|
before they can be included in a specification.
|
|
32
|
-
|
|
34
|
+
|
|
35
|
+
• {discussion-name}
|
|
33
36
|
```
|
|
34
37
|
|
|
35
38
|
### Key/Legend
|
|
36
39
|
|
|
37
40
|
No `---` separator before this section.
|
|
38
41
|
|
|
42
|
+
> *Output the next fenced block as a code block:*
|
|
43
|
+
|
|
39
44
|
```
|
|
40
45
|
Key:
|
|
41
46
|
|
|
@@ -43,13 +48,16 @@ Key:
|
|
|
43
48
|
extracted — content has been incorporated into the specification
|
|
44
49
|
|
|
45
50
|
Spec status:
|
|
46
|
-
|
|
51
|
+
in-progress — specification work is ongoing
|
|
52
|
+
concluded — specification is complete
|
|
47
53
|
```
|
|
48
54
|
|
|
49
55
|
## After Display
|
|
50
56
|
|
|
57
|
+
> *Output the next fenced block as a code block:*
|
|
58
|
+
|
|
51
59
|
```
|
|
52
|
-
Automatically proceeding with "{
|
|
60
|
+
Automatically proceeding with "{topic:(titlecase)}".
|
|
53
61
|
```
|
|
54
62
|
|
|
55
63
|
Auto-proceed. Verb rule:
|