@leeovery/claude-technical-workflows 2.1.5 → 2.1.6

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.
@@ -127,7 +127,7 @@ Craft a task description covering the prioritized fixes. Include the following *
127
127
  - Modify existing tests for mechanical changes (renames, moves) — yes
128
128
  - Modify existing tests semantically (different behavior) — no. If a refactor breaks existing tests, the refactor is wrong. Revert it.
129
129
 
130
- Invoke the `implementation-task-executor` agent (`.claude/agents/implementation-task-executor.md`) with:
130
+ Invoke the `implementation-task-executor` agent (`implementation-task-executor.md`) with:
131
131
  - The crafted task description (including test rules) as task content
132
132
  - tdd-workflow.md path
133
133
  - code-quality.md path
@@ -144,7 +144,7 @@ On receipt of result, route on STATUS:
144
144
 
145
145
  ### F. Invoke Reviewer
146
146
 
147
- Invoke the `implementation-task-reviewer` agent (`.claude/agents/implementation-task-reviewer.md`) to independently verify the executor's work. Include the test rules in the reviewer's prompt so it can flag violations. Pass:
147
+ Invoke the `implementation-task-reviewer` agent (`implementation-task-reviewer.md`) to independently verify the executor's work. Include the test rules in the reviewer's prompt so it can flag violations. Pass:
148
148
  - Specification path
149
149
  - The same task description used for the executor (including test rules)
150
150
  - Project skill paths
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leeovery/claude-technical-workflows",
3
- "version": "2.1.5",
3
+ "version": "2.1.6",
4
4
  "description": "Technical workflow skills & commands for Claude Code",
5
5
  "license": "MIT",
6
6
  "author": "Lee Overy <me@leeovery.com>",
@@ -102,7 +102,7 @@ For each unresolved dependency:
102
102
 
103
103
  2. **If plan exists**: Load the format's reading reference
104
104
  - Read `format:` from the dependency plan's frontmatter
105
- - Load `.claude/skills/technical-planning/references/output-formats/{format}/reading.md`
105
+ - Load `../technical-planning/references/output-formats/{format}/reading.md`
106
106
  - Use the task extraction instructions to search for matching tasks
107
107
 
108
108
  3. **Handle ambiguous matches**:
@@ -117,7 +117,7 @@ For each resolved match:
117
117
  - Change the dependency's `state: unresolved` to `state: resolved` and add `task_id: {task-id}`
118
118
 
119
119
  2. **Create dependency in output format**:
120
- - Load `.claude/skills/technical-planning/references/output-formats/{format}/graph.md`
120
+ - Load `../technical-planning/references/output-formats/{format}/graph.md`
121
121
  - Follow the "Adding a Dependency" section to create the blocking relationship
122
122
 
123
123
  ## Step 6: Bidirectional Check
@@ -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(.claude/scripts/migrate.sh)
4
+ allowed-tools: Bash(../../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
- .claude/scripts/migrate.sh
16
+ ../../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(.claude/scripts/discovery-for-discussion.sh), Bash(mkdir -p docs/workflow/.cache), Bash(rm docs/workflow/.cache/research-analysis.md)
5
+ allowed-tools: Bash(../../scripts/discovery-for-discussion.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.
@@ -55,7 +55,7 @@ Invoke the `/migrate` skill and assess its output.
55
55
  Run the discovery script to gather current state:
56
56
 
57
57
  ```bash
58
- .claude/scripts/discovery-for-discussion.sh
58
+ ../../scripts/discovery-for-discussion.sh
59
59
  ```
60
60
 
61
61
  This outputs structured YAML. Parse it to understand:
@@ -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(.claude/scripts/discovery-for-implementation-and-review.sh)
5
+ allowed-tools: Bash(../../scripts/discovery-for-implementation-and-review.sh)
6
6
  ---
7
7
 
8
8
  Invoke the **technical-implementation** skill for this conversation.
@@ -55,7 +55,7 @@ Invoke the `/migrate` skill and assess its output.
55
55
  Run the discovery script to gather current state:
56
56
 
57
57
  ```bash
58
- .claude/scripts/discovery-for-implementation-and-review.sh
58
+ ../../scripts/discovery-for-implementation-and-review.sh
59
59
  ```
60
60
 
61
61
  This outputs structured YAML. Parse it to understand:
@@ -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(.claude/scripts/discovery-for-planning.sh)
5
+ allowed-tools: Bash(../../scripts/discovery-for-planning.sh)
6
6
  ---
7
7
 
8
8
  Invoke the **technical-planning** skill for this conversation.
@@ -55,7 +55,7 @@ Invoke the `/migrate` skill and assess its output.
55
55
  Run the discovery script to gather current state:
56
56
 
57
57
  ```bash
58
- .claude/scripts/discovery-for-planning.sh
58
+ ../../scripts/discovery-for-planning.sh
59
59
  ```
60
60
 
61
61
  This outputs structured YAML. Parse it to understand:
@@ -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(.claude/scripts/discovery-for-implementation-and-review.sh)
5
+ allowed-tools: Bash(../../scripts/discovery-for-implementation-and-review.sh)
6
6
  ---
7
7
 
8
8
  Invoke the **technical-review** skill for this conversation.
@@ -55,7 +55,7 @@ Invoke the `/migrate` skill and assess its output.
55
55
  Run the discovery script to gather current state:
56
56
 
57
57
  ```bash
58
- .claude/scripts/discovery-for-implementation-and-review.sh
58
+ ../../scripts/discovery-for-implementation-and-review.sh
59
59
  ```
60
60
 
61
61
  This outputs structured YAML. Parse it to understand:
@@ -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(.claude/scripts/discovery-for-specification.sh), Bash(mkdir -p docs/workflow/.cache), Bash(rm docs/workflow/.cache/discussion-consolidation-analysis.md)
5
+ allowed-tools: Bash(../../scripts/discovery-for-specification.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.
@@ -55,7 +55,7 @@ Invoke the `/migrate` skill and assess its output.
55
55
  Run the discovery script to gather current state:
56
56
 
57
57
  ```bash
58
- .claude/scripts/discovery-for-specification.sh
58
+ ../../scripts/discovery-for-specification.sh
59
59
  ```
60
60
 
61
61
  This outputs structured YAML. Parse it to understand:
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: technical-discussion
3
3
  description: "Document technical discussions as expert architect and meeting assistant. Capture context, decisions, edge cases, debates, and rationale without jumping to specification or implementation. Use when: (1) Users discuss/explore/debate architecture or design, (2) Working through edge cases before specification, (3) Need to document technical decisions and their rationale, (4) Capturing competing solutions and why choices were made. Creates documentation in docs/workflow/discussion/{topic}.md that can be used to build validated specifications."
4
+ user-invocable: false
4
5
  ---
5
6
 
6
7
  # Technical Discussion
@@ -1,14 +1,15 @@
1
1
  ---
2
2
  name: technical-implementation
3
3
  description: "Orchestrate implementation of plans using agent-based TDD workflow with per-task review and approval gate (auto mode available). Use when: (1) Implementing a plan from docs/workflow/planning/{topic}.md, (2) User says 'implement', 'build', or 'code this' with a plan available, (3) Ad hoc coding that should follow TDD and quality standards, (4) Bug fixes or features benefiting from structured implementation. Dispatches executor and reviewer agents per task, commits after review approval."
4
+ user-invocable: false
4
5
  ---
5
6
 
6
7
  # Technical Implementation
7
8
 
8
9
  Orchestrate implementation by dispatching **executor** and **reviewer** agents per task. Each agent invocation starts fresh — flat context, no accumulated state.
9
10
 
10
- - **Executor** (`.claude/agents/implementation-task-executor.md`) — implements one task via strict TDD
11
- - **Reviewer** (`.claude/agents/implementation-task-reviewer.md`) — independently verifies the task (opus)
11
+ - **Executor** (`../../agents/implementation-task-executor.md`) — implements one task via strict TDD
12
+ - **Reviewer** (`../../agents/implementation-task-reviewer.md`) — independently verifies the task (opus)
12
13
 
13
14
  The orchestrator owns: plan reading, task extraction, agent invocation, git operations, tracking, task gates.
14
15
 
@@ -100,7 +101,7 @@ Save their instructions to `docs/workflow/environment-setup.md` (or "No special
100
101
 
101
102
  1. Read the plan from the provided location (typically `docs/workflow/planning/{topic}.md`)
102
103
  2. Plans can be stored in various formats. The `format` field in the plan's frontmatter identifies which format this plan uses.
103
- 3. Load the format's per-concern adapter files from `.claude/skills/technical-planning/references/output-formats/{format}/`:
104
+ 3. Load the format's per-concern adapter files from `../technical-planning/references/output-formats/{format}/`:
104
105
  - **reading.md** — how to read tasks from the plan
105
106
  - **updating.md** — how to write progress to the plan
106
107
  4. If no `format` field exists, ask the user which format the plan uses.
@@ -55,7 +55,7 @@ If the environment setup document contains only "No special setup required" (or
55
55
  Some plan formats require specific tools. Check the plan's `format` field and load the format's about file for setup instructions:
56
56
 
57
57
  ```
58
- .claude/skills/technical-planning/references/output-formats/{format}/about.md
58
+ ../../technical-planning/references/output-formats/{format}/about.md
59
59
  ```
60
60
 
61
61
  Each format's about.md contains prerequisites and installation instructions.
@@ -4,7 +4,7 @@
4
4
 
5
5
  ---
6
6
 
7
- This step invokes the `implementation-task-executor` agent (`.claude/agents/implementation-task-executor.md`) to implement one task.
7
+ This step invokes the `implementation-task-executor` agent (`../../../../agents/implementation-task-executor.md`) to implement one task.
8
8
 
9
9
  ---
10
10
 
@@ -12,8 +12,8 @@ This step invokes the `implementation-task-executor` agent (`.claude/agents/impl
12
12
 
13
13
  **Every invocation** — initial or re-attempt — includes these file paths:
14
14
 
15
- 1. **tdd-workflow.md**: `.claude/skills/technical-implementation/references/tdd-workflow.md`
16
- 2. **code-quality.md**: `.claude/skills/technical-implementation/references/code-quality.md`
15
+ 1. **tdd-workflow.md**: `../tdd-workflow.md`
16
+ 2. **code-quality.md**: `../code-quality.md`
17
17
  3. **Specification path**: from the plan's frontmatter (if available)
18
18
  4. **Project skill paths**: from `project_skills` in the implementation tracking file
19
19
  5. **Task content**: normalised task content (see [task-normalisation.md](../task-normalisation.md))
@@ -4,7 +4,7 @@
4
4
 
5
5
  ---
6
6
 
7
- This step invokes the `implementation-polish` agent (`.claude/agents/implementation-polish.md`) to perform holistic quality analysis and orchestrate fixes after all tasks are complete.
7
+ This step invokes the `implementation-polish` agent (`../../../../agents/implementation-polish.md`) to perform holistic quality analysis and orchestrate fixes after all tasks are complete.
8
8
 
9
9
  ---
10
10
 
@@ -12,11 +12,11 @@ This step invokes the `implementation-polish` agent (`.claude/agents/implementat
12
12
 
13
13
  **Every invocation** includes these file paths:
14
14
 
15
- 1. **code-quality.md**: `.claude/skills/technical-implementation/references/code-quality.md`
16
- 2. **tdd-workflow.md**: `.claude/skills/technical-implementation/references/tdd-workflow.md`
15
+ 1. **code-quality.md**: `../code-quality.md`
16
+ 2. **tdd-workflow.md**: `../tdd-workflow.md`
17
17
  3. **Specification path**: from the plan's frontmatter (if available)
18
18
  4. **Plan file path**: the implementation plan
19
- 5. **Plan format reading.md**: `.claude/skills/technical-planning/references/output-formats/{format}/reading.md` (format from plan frontmatter)
19
+ 5. **Plan format reading.md**: `../../../technical-planning/references/output-formats/{format}/reading.md` (format from plan frontmatter)
20
20
  6. **Integration context file**: `docs/workflow/implementation/{topic}-context.md`
21
21
  7. **Project skill paths**: from `project_skills` in the implementation tracking file
22
22
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  ---
6
6
 
7
- This step invokes the `implementation-task-reviewer` agent (`.claude/agents/implementation-task-reviewer.md`) to independently verify a completed task.
7
+ This step invokes the `implementation-task-reviewer` agent (`../../../../agents/implementation-task-reviewer.md`) to independently verify a completed task.
8
8
 
9
9
  ---
10
10
 
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: technical-planning
3
3
  description: "Transform specifications into actionable implementation plans with phases, tasks, and acceptance criteria. Use when: (1) User asks to create/write an implementation plan, (2) User asks to plan implementation from a specification, (3) Converting specifications from docs/workflow/specification/{topic}.md into implementation plans, (4) User says 'plan this' or 'create a plan', (5) Need to structure how to build something with phases and concrete steps. Creates plans in docs/workflow/planning/{topic}.md that can be executed via strict TDD."
4
+ user-invocable: false
4
5
  ---
5
6
 
6
7
  # Technical Planning
@@ -4,7 +4,7 @@
4
4
 
5
5
  ---
6
6
 
7
- This step uses the `planning-dependency-grapher` agent (`.claude/agents/planning-dependency-grapher.md`) to analyze all authored tasks, establish internal dependencies, assign priorities, and detect cycles. You invoke the agent, present its output, and handle the approval gate.
7
+ This step uses the `planning-dependency-grapher` agent (`../../../../agents/planning-dependency-grapher.md`) to analyze all authored tasks, establish internal dependencies, assign priorities, and detect cycles. You invoke the agent, present its output, and handle the approval gate.
8
8
 
9
9
  ---
10
10
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  ---
6
6
 
7
- This step uses the `planning-task-author` agent (`.claude/agents/planning-task-author.md`) to write full detail for a single task. You invoke the agent, present its output, and handle the approval gate.
7
+ This step uses the `planning-task-author` agent (`../../../../agents/planning-task-author.md`) to write full detail for a single task. You invoke the agent, present its output, and handle the approval gate.
8
8
 
9
9
  ---
10
10
 
@@ -14,14 +14,14 @@ This step uses the `planning-task-author` agent (`.claude/agents/planning-task-a
14
14
 
15
15
  Invoke `planning-task-author` with these file paths:
16
16
 
17
- 1. **read-specification.md**: `.claude/skills/technical-planning/references/read-specification.md`
17
+ 1. **read-specification.md**: `../read-specification.md`
18
18
  2. **Specification**: path from the Plan Index File's `specification:` field
19
19
  3. **Cross-cutting specs**: paths from the Plan Index File's `cross_cutting_specs:` field (if any)
20
- 4. **task-design.md**: `.claude/skills/technical-planning/references/task-design.md`
20
+ 4. **task-design.md**: `../task-design.md`
21
21
  5. **All approved phases**: the complete phase structure from the Plan Index File body
22
22
  6. **Task list for current phase**: the approved task table
23
23
  7. **Target task**: the task name, edge cases, and ID from the table
24
- 8. **Output format authoring reference**: path to the format's `authoring.md` (e.g., `.claude/skills/technical-planning/references/output-formats/{format}/authoring.md`)
24
+ 8. **Output format authoring reference**: path to the format's `authoring.md` (e.g., `../output-formats/{format}/authoring.md`)
25
25
 
26
26
  ### Present the Output
27
27
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  ---
6
6
 
7
- This step uses the `planning-phase-designer` agent (`.claude/agents/planning-phase-designer.md`) to define or review the phase structure. Whether phases are being designed for the first time or reviewed from a previous session, the process converges on the same approval gate.
7
+ This step uses the `planning-phase-designer` agent (`../../../../agents/planning-phase-designer.md`) to define or review the phase structure. Whether phases are being designed for the first time or reviewed from a previous session, the process converges on the same approval gate.
8
8
 
9
9
  ---
10
10
 
@@ -30,11 +30,11 @@ Orient the user:
30
30
 
31
31
  Invoke `planning-phase-designer` with these file paths:
32
32
 
33
- 1. **read-specification.md**: `.claude/skills/technical-planning/references/read-specification.md`
33
+ 1. **read-specification.md**: `../read-specification.md`
34
34
  2. **Specification**: path from the Plan Index File's `specification:` field
35
35
  3. **Cross-cutting specs**: paths from the Plan Index File's `cross_cutting_specs:` field (if any)
36
- 4. **phase-design.md**: `.claude/skills/technical-planning/references/phase-design.md`
37
- 5. **task-design.md**: `.claude/skills/technical-planning/references/task-design.md`
36
+ 4. **phase-design.md**: `../phase-design.md`
37
+ 5. **task-design.md**: `../task-design.md`
38
38
 
39
39
  The agent returns a complete phase structure. Write it directly to the Plan Index File body.
40
40
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  ---
6
6
 
7
- This step uses the `planning-task-designer` agent (`.claude/agents/planning-task-designer.md`) to design a task list for a single phase. You invoke the agent, present its output, and handle the approval gate.
7
+ This step uses the `planning-task-designer` agent (`../../../../agents/planning-task-designer.md`) to design a task list for a single phase. You invoke the agent, present its output, and handle the approval gate.
8
8
 
9
9
  ---
10
10
 
@@ -18,10 +18,10 @@ Orient the user:
18
18
 
19
19
  Invoke `planning-task-designer` with these file paths:
20
20
 
21
- 1. **read-specification.md**: `.claude/skills/technical-planning/references/read-specification.md`
21
+ 1. **read-specification.md**: `../read-specification.md`
22
22
  2. **Specification**: path from the Plan Index File's `specification:` field
23
23
  3. **Cross-cutting specs**: paths from the Plan Index File's `cross_cutting_specs:` field (if any)
24
- 4. **task-design.md**: `.claude/skills/technical-planning/references/task-design.md`
24
+ 4. **task-design.md**: `../task-design.md`
25
25
  5. **All approved phases**: the complete phase structure from the Plan Index File body
26
26
  6. **Target phase number**: the phase being broken into tasks
27
27
 
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: technical-research
3
3
  description: "Explore ideas, validate concepts, and research broadly across technical, business, and market domains. Use when: (1) User has a new idea to explore, (2) Need to research a topic deeply, (3) Validating feasibility - technical, business, or market, (4) Learning and exploration without necessarily building anything, (5) User says 'research this' or 'explore this idea', (6) Brain dumping early thoughts before formal discussion. Creates research documents in docs/workflow/research/ that may feed into discussion or specification."
4
+ user-invocable: false
4
5
  ---
5
6
 
6
7
  # Technical Research
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: technical-review
3
3
  description: "Validate completed implementation against plan tasks and acceptance criteria. Use when: (1) Implementation is complete, (2) User wants validation before merging/shipping, (3) Quality gate check needed after implementation. Reviews ALL plan tasks for implementation correctness, test adequacy, and code quality. Produces structured feedback (approve, request changes, or comments) - does NOT fix code."
4
+ user-invocable: false
4
5
  ---
5
6
 
6
7
  # Technical Review
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: technical-specification
3
3
  description: "Build validated specifications from source material through collaborative refinement. Use when: (1) User asks to create/build a specification from source material, (2) User wants to validate and refine content before planning, (3) Converting source material (discussions, research, requirements) into standalone specifications, (4) User says 'specify this' or 'create a spec', (5) Need to filter hallucinations and enrich gaps before formal planning. Creates specifications in docs/workflow/specification/{topic}.md that can be used to build implementation plans."
4
+ user-invocable: false
4
5
  ---
5
6
 
6
7
  # Technical Specification
@@ -25,7 +25,7 @@ Read the plan file from `docs/workflow/planning/{topic}.md` and check the `forma
25
25
  Load the format's reading reference:
26
26
 
27
27
  ```
28
- .claude/skills/technical-planning/references/output-formats/{format}/reading.md
28
+ ../technical-planning/references/output-formats/{format}/reading.md
29
29
  ```
30
30
 
31
31
  This file contains instructions for reading plans in that format.