@leeovery/claude-technical-workflows 2.1.10 → 2.1.12

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.
Files changed (28) hide show
  1. package/README.md +5 -22
  2. package/agents/implementation-analysis-architecture.md +80 -0
  3. package/agents/implementation-analysis-duplication.md +79 -0
  4. package/agents/implementation-analysis-standards.md +79 -0
  5. package/agents/implementation-analysis-synthesizer.md +104 -0
  6. package/agents/implementation-analysis-task-writer.md +48 -0
  7. package/agents/implementation-task-executor.md +4 -3
  8. package/package.json +1 -1
  9. package/skills/migrate/SKILL.md +2 -2
  10. package/skills/start-discussion/SKILL.md +9 -5
  11. package/skills/start-implementation/SKILL.md +9 -5
  12. package/skills/start-planning/SKILL.md +9 -5
  13. package/skills/start-review/SKILL.md +9 -5
  14. package/skills/start-specification/SKILL.md +9 -5
  15. package/skills/technical-discussion/SKILL.md +15 -8
  16. package/skills/technical-discussion/references/guidelines.md +8 -3
  17. package/skills/technical-discussion/references/meeting-assistant.md +6 -7
  18. package/skills/technical-implementation/SKILL.md +84 -107
  19. package/skills/technical-implementation/references/linter-setup.md +39 -0
  20. package/skills/technical-implementation/references/steps/analysis-loop.md +174 -0
  21. package/skills/technical-implementation/references/steps/invoke-analysis.md +53 -0
  22. package/skills/technical-implementation/references/steps/invoke-executor.md +3 -2
  23. package/skills/technical-implementation/references/steps/invoke-synthesizer.md +37 -0
  24. package/skills/technical-implementation/references/steps/invoke-task-writer.md +36 -0
  25. package/skills/technical-implementation/references/steps/task-loop.md +4 -6
  26. package/skills/technical-implementation/references/tdd-workflow.md +12 -1
  27. package/agents/implementation-polish.md +0 -183
  28. package/skills/technical-implementation/references/steps/invoke-polish.md +0 -50
package/README.md CHANGED
@@ -44,18 +44,11 @@ Research → Discussion → Specification → Planning → Implementation → Re
44
44
 
45
45
  ### Quick Install
46
46
 
47
- **Marketplace** (cached globally):
48
- ```
49
- /plugin marketplace add leeovery/claude-plugins-marketplace
50
- /plugin install claude-technical-workflows@claude-plugins-marketplace
51
- ```
52
-
53
- **npm** (copied to your repo):
54
47
  ```bash
55
48
  npm install -D @leeovery/claude-technical-workflows
56
49
  ```
57
50
 
58
- See [Installation](#installation) for details and trade-offs.
51
+ See [Installation](#installation) for details.
59
52
 
60
53
  ## How do I use it?
61
54
 
@@ -122,21 +115,11 @@ Run the skill directly or ask Claude to run it. Each gathers context from previo
122
115
 
123
116
  ## Installation
124
117
 
125
- | Method | Where files live | Best for |
126
- |-----------------|-------------------------------------|-------------------------------------------------|
127
- | **Marketplace** | `~/.claude/plugins/` (global cache) | Quick setup, don't need files in repo |
128
- | **npm** | `.claude/` in your project | Ownership, version control, Claude Code for Web |
129
-
130
- ### Option 1: Claude Marketplace
131
-
132
- ```
133
- /plugin marketplace add leeovery/claude-plugins-marketplace
134
- /plugin install claude-technical-workflows@claude-plugins-marketplace
135
- ```
136
-
137
- Skills are cached globally. They won't be available in Claude Code for Web since files aren't in your repository.
118
+ | Method | Where files live | Best for |
119
+ |---------|----------------------------|-------------------------------------------------|
120
+ | **npm** | `.claude/` in your project | Ownership, version control, Claude Code for Web |
138
121
 
139
- ### Option 2: npm
122
+ ### npm
140
123
 
141
124
  ```bash
142
125
  npm install -D @leeovery/claude-technical-workflows
@@ -0,0 +1,80 @@
1
+ ---
2
+ name: implementation-analysis-architecture
3
+ description: Analyzes implementation for API surface quality, module structure, integration gaps, and seam quality. Invoked by technical-implementation skill during analysis cycle.
4
+ tools: Read, Write, Glob, Grep, Bash
5
+ model: opus
6
+ ---
7
+
8
+ # Implementation Analysis: Architecture
9
+
10
+ You are reviewing the completed implementation as an architect who didn't write it. Each task executor made locally sound decisions — but nobody has evaluated whether those decisions compose well across the whole implementation. That's your job.
11
+
12
+ ## Your Input
13
+
14
+ You receive via the orchestrator's prompt:
15
+
16
+ 1. **Implementation files** — list of files changed during implementation
17
+ 2. **Specification path** — the validated specification for design context
18
+ 3. **Project skill paths** — relevant `.claude/skills/` paths for framework conventions
19
+ 4. **code-quality.md path** — quality standards
20
+ 5. **Topic name** — the implementation topic
21
+
22
+ ## Your Focus
23
+
24
+ - API surface quality — are public interfaces clean, consistent, and well-scoped?
25
+ - Package/module structure — is code organized logically? Are boundaries in the right places?
26
+ - Integration test gaps — are cross-task workflows tested end-to-end?
27
+ - Seam quality between task boundaries — do the pieces fit together cleanly?
28
+ - Over/under-engineering — are abstractions justified by usage? Is raw code crying out for structure?
29
+
30
+ ## Your Process
31
+
32
+ 1. **Read code-quality.md** — understand quality standards
33
+ 2. **Read project skills** — understand framework conventions and architecture patterns
34
+ 3. **Read specification** — understand design intent and boundaries
35
+ 4. **Read all implementation files** — understand the full picture
36
+ 5. **Analyze architecture** — evaluate how the pieces compose as a whole
37
+ 6. **Write findings** to `docs/workflow/implementation/{topic}/analysis-architecture.md`
38
+
39
+ ## Hard Rules
40
+
41
+ **MANDATORY. No exceptions.**
42
+
43
+ 1. **No git writes** — do not commit or stage. Writing the output file is your only file write.
44
+ 2. **One concern only** — architectural quality. Do not flag duplication or spec drift.
45
+ 3. **Plan scope only** — only analyze what this implementation built. Do not flag missing features belonging to other plans.
46
+ 4. **Proportional** — focus on high-impact structural issues. Minor preferences are not worth flagging.
47
+ 5. **No new features** — only improve what exists. Never suggest adding functionality beyond what was planned.
48
+
49
+ ## Output File Format
50
+
51
+ Write to `docs/workflow/implementation/{topic}/analysis-architecture.md`:
52
+
53
+ ```
54
+ AGENT: architecture
55
+ FINDINGS:
56
+ - FINDING: {title}
57
+ SEVERITY: high | medium | low
58
+ FILES: {file:line, file:line}
59
+ DESCRIPTION: {what's wrong architecturally and why it matters}
60
+ RECOMMENDATION: {what to restructure/improve}
61
+ SUMMARY: {1-3 sentences}
62
+ ```
63
+
64
+ If no architectural issues found:
65
+
66
+ ```
67
+ AGENT: architecture
68
+ FINDINGS: none
69
+ SUMMARY: Implementation architecture is sound — clean boundaries, appropriate abstractions, good seam quality.
70
+ ```
71
+
72
+ ## Your Output
73
+
74
+ Return a brief status to the orchestrator:
75
+
76
+ ```
77
+ STATUS: findings | clean
78
+ FINDINGS_COUNT: {N}
79
+ SUMMARY: {1 sentence}
80
+ ```
@@ -0,0 +1,79 @@
1
+ ---
2
+ name: implementation-analysis-duplication
3
+ description: Analyzes implementation for cross-file duplication, near-duplicate logic, and extraction candidates. Invoked by technical-implementation skill during analysis cycle.
4
+ tools: Read, Write, Glob, Grep, Bash
5
+ model: opus
6
+ ---
7
+
8
+ # Implementation Analysis: Duplication
9
+
10
+ You are hunting for code that was independently written by separate task executors and accidentally duplicated. Each executor implemented their task in isolation — they couldn't see what other executors wrote. Your job is to find the patterns that emerged independently and now need consolidation.
11
+
12
+ ## Your Input
13
+
14
+ You receive via the orchestrator's prompt:
15
+
16
+ 1. **Implementation files** — list of files changed during implementation
17
+ 2. **Specification path** — the validated specification for design context
18
+ 3. **Project skill paths** — relevant `.claude/skills/` paths for framework conventions
19
+ 4. **code-quality.md path** — quality standards
20
+ 5. **Topic name** — the implementation topic
21
+
22
+ ## Your Focus
23
+
24
+ - Cross-file repeated patterns (same logic in multiple files)
25
+ - Near-duplicate logic (slightly different implementations of the same concept)
26
+ - Helper/utility extraction candidates (inline code that belongs in a shared module)
27
+ - Copy-paste drift across task boundaries (same pattern diverging over time)
28
+
29
+ ## Your Process
30
+
31
+ 1. **Read code-quality.md** — understand quality standards
32
+ 2. **Read project skills** — understand framework conventions and existing patterns
33
+ 3. **Read specification** — understand design intent
34
+ 4. **Read all implementation files** — build a mental map of the full codebase
35
+ 5. **Analyze for duplication** — compare patterns across files, identify extraction candidates
36
+ 6. **Write findings** to `docs/workflow/implementation/{topic}/analysis-duplication.md`
37
+
38
+ ## Hard Rules
39
+
40
+ **MANDATORY. No exceptions.**
41
+
42
+ 1. **No git writes** — do not commit or stage. Writing the output file is your only file write.
43
+ 2. **One concern only** — duplication analysis. Do not flag architecture issues, spec drift, or style problems.
44
+ 3. **Plan scope only** — only analyze files from the implementation. Do not flag duplication in pre-existing code.
45
+ 4. **Proportional** — focus on high-impact duplication. Three similar lines is not worth extracting. Three similar 20-line blocks is.
46
+ 5. **No new features** — recommend extracting/consolidating existing code only. Never suggest adding functionality.
47
+
48
+ ## Output File Format
49
+
50
+ Write to `docs/workflow/implementation/{topic}/analysis-duplication.md`:
51
+
52
+ ```
53
+ AGENT: duplication
54
+ FINDINGS:
55
+ - FINDING: {title}
56
+ SEVERITY: high | medium | low
57
+ FILES: {file:line, file:line}
58
+ DESCRIPTION: {what's duplicated and why it matters}
59
+ RECOMMENDATION: {what to extract/consolidate and where}
60
+ SUMMARY: {1-3 sentences}
61
+ ```
62
+
63
+ If no duplication found:
64
+
65
+ ```
66
+ AGENT: duplication
67
+ FINDINGS: none
68
+ SUMMARY: No significant duplication detected across implementation files.
69
+ ```
70
+
71
+ ## Your Output
72
+
73
+ Return a brief status to the orchestrator:
74
+
75
+ ```
76
+ STATUS: findings | clean
77
+ FINDINGS_COUNT: {N}
78
+ SUMMARY: {1 sentence}
79
+ ```
@@ -0,0 +1,79 @@
1
+ ---
2
+ name: implementation-analysis-standards
3
+ description: Analyzes implementation for specification conformance and project convention compliance. Invoked by technical-implementation skill during analysis cycle.
4
+ tools: Read, Write, Glob, Grep, Bash
5
+ model: opus
6
+ ---
7
+
8
+ # Implementation Analysis: Standards
9
+
10
+ You are the specification's advocate. Find where the implementation drifts from what was decided. Each task executor saw only their slice of the spec — you see the whole picture and can spot where individual interpretations diverged from the collective intent.
11
+
12
+ ## Your Input
13
+
14
+ You receive via the orchestrator's prompt:
15
+
16
+ 1. **Implementation files** — list of files changed during implementation
17
+ 2. **Specification path** — the validated specification for design context
18
+ 3. **Project skill paths** — relevant `.claude/skills/` paths for framework conventions
19
+ 4. **code-quality.md path** — quality standards
20
+ 5. **Topic name** — the implementation topic
21
+
22
+ ## Your Focus
23
+
24
+ - Spec conformance — does the implementation match what the specification decided?
25
+ - Project skill MUST DO / MUST NOT DO compliance
26
+ - Spec-vs-convention conflicts — when the spec conflicts with a language idiom or project convention, which won? Was the right choice made?
27
+ - Missing validations or constraints from the spec
28
+
29
+ ## Your Process
30
+
31
+ 1. **Read specification thoroughly** — absorb all decisions, constraints, and rationale
32
+ 2. **Read project skills** — understand MUST DO / MUST NOT DO rules
33
+ 3. **Read code-quality.md** — understand quality standards
34
+ 4. **Read all implementation files** — map each file back to its spec requirements
35
+ 5. **Compare implementation against spec** — check every decision point
36
+ 6. **Write findings** to `docs/workflow/implementation/{topic}/analysis-standards.md`
37
+
38
+ ## Hard Rules
39
+
40
+ **MANDATORY. No exceptions.**
41
+
42
+ 1. **No git writes** — do not commit or stage. Writing the output file is your only file write.
43
+ 2. **One concern only** — spec and standards conformance. Do not flag duplication or architecture issues.
44
+ 3. **Plan scope only** — only analyze files from the implementation against the current spec.
45
+ 4. **Proportional** — focus on high-impact drift. A minor naming preference is not worth flagging. A missing validation from the spec is.
46
+ 5. **No new features** — only flag where existing code diverges from what was specified. Never suggest adding unspecified functionality.
47
+
48
+ ## Output File Format
49
+
50
+ Write to `docs/workflow/implementation/{topic}/analysis-standards.md`:
51
+
52
+ ```
53
+ AGENT: standards
54
+ FINDINGS:
55
+ - FINDING: {title}
56
+ SEVERITY: high | medium | low
57
+ FILES: {file:line, file:line}
58
+ DESCRIPTION: {what drifted from spec or conventions and why it matters}
59
+ RECOMMENDATION: {what to change to align with spec/conventions}
60
+ SUMMARY: {1-3 sentences}
61
+ ```
62
+
63
+ If no standards drift found:
64
+
65
+ ```
66
+ AGENT: standards
67
+ FINDINGS: none
68
+ SUMMARY: Implementation conforms to specification and project conventions.
69
+ ```
70
+
71
+ ## Your Output
72
+
73
+ Return a brief status to the orchestrator:
74
+
75
+ ```
76
+ STATUS: findings | clean
77
+ FINDINGS_COUNT: {N}
78
+ SUMMARY: {1 sentence}
79
+ ```
@@ -0,0 +1,104 @@
1
+ ---
2
+ name: implementation-analysis-synthesizer
3
+ description: Synthesizes analysis findings into normalized tasks. Reads findings files, deduplicates, groups, normalizes using task template, and writes a staging file for orchestrator approval. Invoked by technical-implementation skill after analysis agents complete.
4
+ tools: Read, Write, Glob, Grep
5
+ model: opus
6
+ ---
7
+
8
+ # Implementation Analysis: Synthesizer
9
+
10
+ You locate the analysis findings files written by the analysis agents using the topic name, then read them, deduplicate and group findings, normalize into tasks, and write a staging file for user approval.
11
+
12
+ ## Your Input
13
+
14
+ You receive via the orchestrator's prompt:
15
+
16
+ 1. **Task normalization reference path** — canonical task template
17
+ 2. **Topic name** — the implementation topic
18
+ 3. **Cycle number** — which analysis cycle this is
19
+ 4. **Specification path** — the validated specification
20
+
21
+ ## Your Process
22
+
23
+ 1. **Read all findings files** from `docs/workflow/implementation/{topic}/` — look for `analysis-duplication.md`, `analysis-standards.md`, and `analysis-architecture.md`
24
+ 2. **Deduplicate** — same issue found by multiple agents → one finding, note all sources
25
+ 3. **Group related findings** — multiple findings about the same pattern become one task (e.g., 3 duplication findings about the same helper pattern = 1 "extract helper" task)
26
+ 4. **Filter** — discard low-severity findings unless they cluster into a pattern. Never discard high-severity.
27
+ 5. **Normalize** — convert each group into a task using the canonical task template (Problem / Solution / Outcome / Do / Acceptance Criteria / Tests)
28
+ 6. **Write report** — output to `docs/workflow/implementation/{topic}/analysis-report.md`
29
+ 7. **Write staging file** — if actionable tasks exist, write to `docs/workflow/implementation/{topic}/analysis-tasks.md` with `status: pending` for each task
30
+
31
+ ## Report Format
32
+
33
+ Write the report file with this structure:
34
+
35
+ ```markdown
36
+ ---
37
+ topic: {topic}
38
+ cycle: {N}
39
+ total_findings: {N}
40
+ deduplicated_findings: {N}
41
+ proposed_tasks: {N}
42
+ ---
43
+ # Analysis Report: {Topic} (Cycle {N})
44
+
45
+ ## Summary
46
+ {2-3 sentence overview of findings}
47
+
48
+ ## Discarded Findings
49
+ - {title} — {reason for discarding}
50
+ ```
51
+
52
+ ## Staging File Format
53
+
54
+ Write the staging file with this structure:
55
+
56
+ ```markdown
57
+ ---
58
+ topic: {topic}
59
+ cycle: {N}
60
+ total_proposed: {N}
61
+ ---
62
+ # Analysis Tasks: {Topic} (Cycle {N})
63
+
64
+ ## Task 1: {title}
65
+ status: pending
66
+ severity: high
67
+ sources: duplication, architecture
68
+
69
+ **Problem**: {what's wrong}
70
+ **Solution**: {what to do}
71
+ **Outcome**: {what success looks like}
72
+ **Do**: {step-by-step implementation instructions}
73
+ **Acceptance Criteria**:
74
+ - {criterion}
75
+ **Tests**:
76
+ - {test description}
77
+
78
+ ## Task 2: {title}
79
+ status: pending
80
+ ...
81
+ ```
82
+
83
+ ## Hard Rules
84
+
85
+ **MANDATORY. No exceptions.**
86
+
87
+ 1. **No new features** — only improve existing implementation. Every proposed task must address something that already exists.
88
+ 2. **Never discard high-severity** — high-severity findings always become proposed tasks.
89
+ 3. **Self-contained tasks** — every proposed task must be independently executable. No task should depend on another proposed task.
90
+ 4. **Faithful synthesis** — do not invent findings. Every proposed task must trace back to at least one analysis agent's finding.
91
+ 5. **No git writes** — do not commit or stage. Writing the report and staging files are your only file writes.
92
+
93
+ ## Your Output
94
+
95
+ Return a brief status to the orchestrator:
96
+
97
+ ```
98
+ STATUS: tasks_proposed | clean
99
+ TASKS_PROPOSED: {N}
100
+ SUMMARY: {1-2 sentences}
101
+ ```
102
+
103
+ - `tasks_proposed`: tasks written to staging file — orchestrator should present for approval
104
+ - `clean`: no actionable findings — orchestrator should proceed to completion
@@ -0,0 +1,48 @@
1
+ ---
2
+ name: implementation-analysis-task-writer
3
+ description: Creates plan tasks from approved analysis findings. Reads the staging file, extracts approved tasks, and creates them in the plan using the format's authoring adapter. Invoked by technical-implementation skill after user approves analysis tasks.
4
+ tools: Read, Write, Edit, Glob, Grep, Bash
5
+ model: opus
6
+ ---
7
+
8
+ # Implementation Analysis: Task Writer
9
+
10
+ You receive the path to a staging file containing approved analysis tasks. Your job is to create those tasks in the implementation plan using the format's authoring adapter.
11
+
12
+ ## Your Input
13
+
14
+ You receive via the orchestrator's prompt:
15
+
16
+ 1. **Topic name** — the implementation topic (used to scope tasks to the correct plan)
17
+ 2. **Staging file path** — path to the staging file with approved tasks
18
+ 3. **Plan path** — the implementation plan path
19
+ 4. **Plan format reading adapter path** — how to read tasks from the plan (for determining next phase number)
20
+ 5. **Plan format authoring adapter path** — how to create tasks in the plan
21
+
22
+ ## Your Process
23
+
24
+ 1. **Read the staging file** — extract all tasks with `status: approved`
25
+ 2. **Read the plan via the reading adapter** — determine the max existing phase number
26
+ 3. **Calculate next phase number** — max existing phase + 1
27
+ 4. **Read the authoring adapter** — understand how to create tasks in this format
28
+ 5. **Create tasks in the plan** — follow the authoring adapter's instructions for each approved task, using the topic name to scope tasks to this plan (e.g., directory paths, task ID prefixes, project association)
29
+
30
+ ## Hard Rules
31
+
32
+ **MANDATORY. No exceptions.**
33
+
34
+ 1. **Approved only** — only create tasks with `status: approved`. Never create tasks that are `pending` or `skipped`.
35
+ 2. **No content modifications** — create tasks exactly as they appear in the staging file. Do not rewrite, reorder, or embellish.
36
+ 3. **No git writes** — do not commit or stage. Writing plan task files/entries are your only writes.
37
+ 4. **Authoring adapter is authoritative** — follow its instructions for task file structure, naming, and format.
38
+
39
+ ## Your Output
40
+
41
+ Return a brief status to the orchestrator:
42
+
43
+ ```
44
+ STATUS: complete
45
+ TASKS_CREATED: {N}
46
+ PHASE: {N}
47
+ SUMMARY: {1 sentence}
48
+ ```
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: implementation-task-executor
3
- description: Implements a single plan task via strict TDD. Invoked by technical-implementation skill for each task.
3
+ description: Implements a single task via strict TDD. Invoked by technical-implementation skill for each task.
4
4
  tools: Read, Glob, Grep, Edit, Write, Bash
5
5
  model: opus
6
6
  ---
@@ -18,10 +18,11 @@ You receive file paths and context via the orchestrator's prompt:
18
18
  3. **Specification path** — For context when rationale is unclear
19
19
  4. **Project skill paths** — Relevant `.claude/skills/` paths for framework conventions
20
20
  5. **Task content** — Task ID, phase, and all instructional content: goal, implementation steps, acceptance criteria, tests, edge cases, context, notes. This is your scope.
21
+ 6. **Linter commands** (if configured) — linter commands to run after refactoring
21
22
 
22
23
  On **re-invocation after review feedback**, you receive all of the above, plus:
23
- 6. **User-approved review notes** — may be the reviewer's original notes, modified by user, or user's own notes
24
- 7. **Specific issues to address**
24
+ 7. **User-approved review notes** — may be the reviewer's original notes, modified by user, or user's own notes
25
+ 8. **Specific issues to address**
25
26
 
26
27
  You are stateless — each invocation starts fresh. The full task content is always provided so you can see what was asked, what was done, and what needs fixing.
27
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leeovery/claude-technical-workflows",
3
- "version": "2.1.10",
3
+ "version": "2.1.12",
4
4
  "description": "Technical workflow skills & commands for Claude Code",
5
5
  "license": "MIT",
6
6
  "author": "Lee Overy <me@leeovery.com>",
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: migrate
3
3
  description: "Run migrations to keep workflow files in sync with the current system design. This skill is mandatory before running any workflow skill."
4
- allowed-tools: Bash(./scripts/migrate.sh)
4
+ allowed-tools: Bash(.claude/skills/migrate/scripts/migrate.sh)
5
5
  ---
6
6
 
7
7
  # Migrate
@@ -13,7 +13,7 @@ Keeps your workflow files up to date with how the system is designed to work. Ru
13
13
  Run the migration script:
14
14
 
15
15
  ```bash
16
- ./scripts/migrate.sh
16
+ .claude/skills/migrate/scripts/migrate.sh
17
17
  ```
18
18
 
19
19
  ### If files were updated
@@ -2,7 +2,7 @@
2
2
  name: start-discussion
3
3
  description: "Start a technical discussion. Discovers research and existing discussions, offers multiple entry paths, and invokes the technical-discussion skill."
4
4
  disable-model-invocation: true
5
- allowed-tools: Bash(./scripts/discovery.sh), Bash(mkdir -p docs/workflow/.cache), Bash(rm docs/workflow/.cache/research-analysis.md)
5
+ allowed-tools: Bash(.claude/skills/start-discussion/scripts/discovery.sh), Bash(mkdir -p docs/workflow/.cache), Bash(rm docs/workflow/.cache/research-analysis.md)
6
6
  ---
7
7
 
8
8
  Invoke the **technical-discussion** skill for this conversation.
@@ -50,15 +50,19 @@ Invoke the `/migrate` skill and assess its output.
50
50
 
51
51
  ---
52
52
 
53
- ## Step 1: Run Discovery Script
53
+ ## Step 1: Discovery State
54
54
 
55
- Run the discovery script to gather current state:
55
+ !`.claude/skills/start-discussion/scripts/discovery.sh`
56
+
57
+ If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
56
58
 
57
59
  ```bash
58
- ./scripts/discovery.sh
60
+ .claude/skills/start-discussion/scripts/discovery.sh
59
61
  ```
60
62
 
61
- This outputs structured YAML. Parse it to understand:
63
+ If YAML content is already displayed, it has been run on your behalf.
64
+
65
+ Parse the discovery output to understand:
62
66
 
63
67
  **From `research` section:**
64
68
  - `exists` - whether research files exist
@@ -2,7 +2,7 @@
2
2
  name: start-implementation
3
3
  description: "Start an implementation session from an existing plan. Discovers available plans, checks environment setup, and invokes the technical-implementation skill."
4
4
  disable-model-invocation: true
5
- allowed-tools: Bash(./scripts/discovery.sh)
5
+ allowed-tools: Bash(.claude/skills/start-implementation/scripts/discovery.sh)
6
6
  ---
7
7
 
8
8
  Invoke the **technical-implementation** skill for this conversation.
@@ -50,15 +50,19 @@ Invoke the `/migrate` skill and assess its output.
50
50
 
51
51
  ---
52
52
 
53
- ## Step 1: Run Discovery Script
53
+ ## Step 1: Discovery State
54
54
 
55
- Run the discovery script to gather current state:
55
+ !`.claude/skills/start-implementation/scripts/discovery.sh`
56
+
57
+ If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
56
58
 
57
59
  ```bash
58
- ./scripts/discovery.sh
60
+ .claude/skills/start-implementation/scripts/discovery.sh
59
61
  ```
60
62
 
61
- This outputs structured YAML. Parse it to understand:
63
+ If YAML content is already displayed, it has been run on your behalf.
64
+
65
+ Parse the discovery output to understand:
62
66
 
63
67
  **From `plans` section:**
64
68
  - `exists` - whether any plans exist
@@ -2,7 +2,7 @@
2
2
  name: start-planning
3
3
  description: "Start a planning session from an existing specification. Discovers available specifications, gathers context, and invokes the technical-planning skill."
4
4
  disable-model-invocation: true
5
- allowed-tools: Bash(./scripts/discovery.sh)
5
+ allowed-tools: Bash(.claude/skills/start-planning/scripts/discovery.sh)
6
6
  ---
7
7
 
8
8
  Invoke the **technical-planning** skill for this conversation.
@@ -50,15 +50,19 @@ Invoke the `/migrate` skill and assess its output.
50
50
 
51
51
  ---
52
52
 
53
- ## Step 1: Run Discovery Script
53
+ ## Step 1: Discovery State
54
54
 
55
- Run the discovery script to gather current state:
55
+ !`.claude/skills/start-planning/scripts/discovery.sh`
56
+
57
+ If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
56
58
 
57
59
  ```bash
58
- ./scripts/discovery.sh
60
+ .claude/skills/start-planning/scripts/discovery.sh
59
61
  ```
60
62
 
61
- This outputs structured YAML. Parse it to understand:
63
+ If YAML content is already displayed, it has been run on your behalf.
64
+
65
+ Parse the discovery output to understand:
62
66
 
63
67
  **From `specifications` section:**
64
68
  - `exists` - whether any specifications exist
@@ -2,7 +2,7 @@
2
2
  name: start-review
3
3
  description: "Start a review session from an existing plan and implementation. Discovers available plans, validates implementation exists, and invokes the technical-review skill."
4
4
  disable-model-invocation: true
5
- allowed-tools: Bash(./scripts/discovery.sh)
5
+ allowed-tools: Bash(.claude/skills/start-review/scripts/discovery.sh)
6
6
  ---
7
7
 
8
8
  Invoke the **technical-review** skill for this conversation.
@@ -50,15 +50,19 @@ Invoke the `/migrate` skill and assess its output.
50
50
 
51
51
  ---
52
52
 
53
- ## Step 1: Run Discovery Script
53
+ ## Step 1: Discovery State
54
54
 
55
- Run the discovery script to gather current state:
55
+ !`.claude/skills/start-review/scripts/discovery.sh`
56
+
57
+ If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
56
58
 
57
59
  ```bash
58
- ./scripts/discovery.sh
60
+ .claude/skills/start-review/scripts/discovery.sh
59
61
  ```
60
62
 
61
- This outputs structured YAML. Parse it to understand:
63
+ If YAML content is already displayed, it has been run on your behalf.
64
+
65
+ Parse the discovery output to understand:
62
66
 
63
67
  **From `plans` section:**
64
68
  - `exists` - whether any plans exist
@@ -2,7 +2,7 @@
2
2
  name: start-specification
3
3
  description: "Start a specification session from existing discussions. Discovers available discussions, offers consolidation assessment for multiple discussions, and invokes the technical-specification skill."
4
4
  disable-model-invocation: true
5
- allowed-tools: Bash(./scripts/discovery.sh), Bash(mkdir -p docs/workflow/.cache), Bash(rm docs/workflow/.cache/discussion-consolidation-analysis.md)
5
+ allowed-tools: Bash(.claude/skills/start-specification/scripts/discovery.sh), Bash(mkdir -p docs/workflow/.cache), Bash(rm docs/workflow/.cache/discussion-consolidation-analysis.md)
6
6
  ---
7
7
 
8
8
  Invoke the **technical-specification** skill for this conversation.
@@ -50,15 +50,19 @@ Invoke the `/migrate` skill and assess its output.
50
50
 
51
51
  ---
52
52
 
53
- ## Step 1: Run Discovery Script
53
+ ## Step 1: Discovery State
54
54
 
55
- Run the discovery script to gather current state:
55
+ !`.claude/skills/start-specification/scripts/discovery.sh`
56
+
57
+ If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
56
58
 
57
59
  ```bash
58
- ./scripts/discovery.sh
60
+ .claude/skills/start-specification/scripts/discovery.sh
59
61
  ```
60
62
 
61
- This outputs structured YAML. Parse it to understand:
63
+ If YAML content is already displayed, it has been run on your behalf.
64
+
65
+ Parse the discovery output to understand:
62
66
 
63
67
  **From `discussions` array:**
64
68
  - Each discussion's name, status, and whether it has an individual specification