@leeovery/claude-technical-workflows 2.0.42 → 2.0.44
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/commands/link-dependencies.md +10 -10
- package/commands/workflow/start-discussion.md +162 -120
- package/commands/workflow/start-implementation.md +147 -66
- package/commands/workflow/start-planning.md +122 -43
- package/commands/workflow/start-research.md +90 -13
- package/commands/workflow/start-review.md +86 -41
- package/commands/workflow/start-specification.md +18 -11
- package/package.json +4 -2
- package/scripts/discovery-for-discussion.sh +198 -0
- package/scripts/discovery-for-implementation-and-review.sh +131 -0
- package/scripts/discovery-for-planning.sh +186 -0
- package/scripts/{specification-discovery.sh → discovery-for-specification.sh} +7 -2
- package/scripts/migrations/002-specification-frontmatter.sh +207 -0
- package/scripts/migrations/003-planning-frontmatter.sh +191 -0
- package/skills/technical-planning/references/output-backlog-md.md +1 -1
- package/skills/technical-planning/references/output-beads.md +3 -3
- package/skills/technical-planning/references/output-linear.md +3 -3
- package/skills/technical-planning/references/output-local-markdown.md +17 -5
- package/skills/technical-research/SKILL.md +10 -1
- package/skills/technical-research/references/template.md +39 -0
- package/skills/technical-specification/references/specification-guide.md +20 -11
|
@@ -33,15 +33,15 @@ Create `{topic}.md` with this structure:
|
|
|
33
33
|
|
|
34
34
|
```markdown
|
|
35
35
|
---
|
|
36
|
+
topic: {feature-name}
|
|
37
|
+
status: in-progress
|
|
38
|
+
date: YYYY-MM-DD
|
|
36
39
|
format: local-markdown
|
|
40
|
+
specification: {topic}.md
|
|
37
41
|
---
|
|
38
42
|
|
|
39
43
|
# Implementation Plan: {Feature/Project Name}
|
|
40
44
|
|
|
41
|
-
**Date**: YYYY-MM-DD *(use today's actual date)*
|
|
42
|
-
**Status**: Draft | Ready | In Progress | Completed
|
|
43
|
-
**Specification**: `docs/workflow/specification/{topic}.md`
|
|
44
|
-
|
|
45
45
|
## Overview
|
|
46
46
|
|
|
47
47
|
**Goal**: What we're building and why (one sentence)
|
|
@@ -222,7 +222,19 @@ grep -A 5 "### Phase 1" docs/workflow/planning/billing-system.md | grep "\[x\]"
|
|
|
222
222
|
|
|
223
223
|
## Frontmatter
|
|
224
224
|
|
|
225
|
-
|
|
225
|
+
Plan documents use YAML frontmatter for metadata:
|
|
226
|
+
|
|
227
|
+
```yaml
|
|
228
|
+
---
|
|
229
|
+
topic: {feature-name} # Matches filename (without .md)
|
|
230
|
+
status: in-progress # in-progress | concluded
|
|
231
|
+
date: YYYY-MM-DD # Creation date
|
|
232
|
+
format: local-markdown # Output format used
|
|
233
|
+
specification: {topic}.md # Source specification filename
|
|
234
|
+
---
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
The `format` field tells implementation which output adapter to use for reading/updating the plan.
|
|
226
238
|
|
|
227
239
|
## Flagging Incomplete Tasks
|
|
228
240
|
|
|
@@ -58,9 +58,18 @@ Ask one question at a time. Wait for the answer. Document. Then ask the next.
|
|
|
58
58
|
|
|
59
59
|
**Output**: `docs/workflow/research/exploration.md`
|
|
60
60
|
|
|
61
|
+
**Template**: Use `references/template.md` for document structure. All research documents use YAML frontmatter:
|
|
62
|
+
|
|
63
|
+
```yaml
|
|
64
|
+
---
|
|
65
|
+
topic: exploration
|
|
66
|
+
date: YYYY-MM-DD # Use today's actual date
|
|
67
|
+
---
|
|
68
|
+
```
|
|
69
|
+
|
|
61
70
|
Start with one file. Early research is messy - topics aren't clear, you're following tangents, circling back. Don't force structure too early.
|
|
62
71
|
|
|
63
|
-
**Let themes emerge**: Over multiple sessions, topics may become distinct. When they do, split into semantic files (`market-landscape.md`, `technical-feasibility.md`).
|
|
72
|
+
**Let themes emerge**: Over multiple sessions, topics may become distinct. When they do, split into semantic files (`market-landscape.md`, `technical-feasibility.md`). Update the `topic` field to match the filename.
|
|
64
73
|
|
|
65
74
|
**Periodic review**: Every few sessions, assess: are themes emerging? Split them out. Still fuzzy? Keep exploring. Ready for deeper discussion or specification? Research is complete.
|
|
66
75
|
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Research Document Template
|
|
2
|
+
|
|
3
|
+
Use this template when creating research documents.
|
|
4
|
+
|
|
5
|
+
## Template
|
|
6
|
+
|
|
7
|
+
```markdown
|
|
8
|
+
---
|
|
9
|
+
topic: exploration
|
|
10
|
+
date: YYYY-MM-DD # Use today's actual date
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# Research: {Title}
|
|
14
|
+
|
|
15
|
+
Brief description of what this research covers and what prompted it.
|
|
16
|
+
|
|
17
|
+
## Starting Point
|
|
18
|
+
|
|
19
|
+
What we know so far:
|
|
20
|
+
- {Initial thoughts or context from the user}
|
|
21
|
+
- {Any constraints or existing knowledge}
|
|
22
|
+
- {Where we're starting: technical, market, business, etc.}
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
{Content follows - freeform, managed by the skill}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Field Notes
|
|
30
|
+
|
|
31
|
+
- `topic`: Use `exploration` for the initial exploration file. Use semantic names (`market-landscape`, `technical-feasibility`) when splitting into focused files.
|
|
32
|
+
- `date`: Today's date when creating the document.
|
|
33
|
+
|
|
34
|
+
## Notes
|
|
35
|
+
|
|
36
|
+
- The "Starting Point" section captures context from the initial conversation
|
|
37
|
+
- Content after that is intentionally unstructured - let themes emerge naturally
|
|
38
|
+
- When splitting into topic files, update the `topic` field to match the filename
|
|
39
|
+
- The skill handles content organization during sessions
|
|
@@ -143,13 +143,14 @@ This is a single file per topic. Structure is **flexible** - organize around pha
|
|
|
143
143
|
Suggested skeleton:
|
|
144
144
|
|
|
145
145
|
```markdown
|
|
146
|
-
# Specification: [Topic Name]
|
|
147
|
-
|
|
148
|
-
**Status**: Building specification
|
|
149
|
-
**Type**: feature | cross-cutting
|
|
150
|
-
**Last Updated**: YYYY-MM-DD *(use today's actual date)*
|
|
151
|
-
|
|
152
146
|
---
|
|
147
|
+
topic: {topic-name}
|
|
148
|
+
status: in-progress
|
|
149
|
+
type: feature
|
|
150
|
+
date: YYYY-MM-DD # Use today's actual date
|
|
151
|
+
---
|
|
152
|
+
|
|
153
|
+
# Specification: [Topic Name]
|
|
153
154
|
|
|
154
155
|
## Specification
|
|
155
156
|
|
|
@@ -162,6 +163,13 @@ Suggested skeleton:
|
|
|
162
163
|
[Optional - capture in-progress discussion if needed]
|
|
163
164
|
```
|
|
164
165
|
|
|
166
|
+
### Frontmatter Fields
|
|
167
|
+
|
|
168
|
+
- **topic**: Kebab-case identifier matching the filename
|
|
169
|
+
- **status**: `in-progress` (building) or `concluded` (complete)
|
|
170
|
+
- **type**: `feature` (something to build) or `cross-cutting` (patterns/policies)
|
|
171
|
+
- **date**: Last updated date
|
|
172
|
+
|
|
165
173
|
## Specification Types
|
|
166
174
|
|
|
167
175
|
The `Type` field distinguishes between specifications that result in standalone implementation work versus those that inform how other work is done.
|
|
@@ -687,11 +695,12 @@ Once the type is confirmed and tracking files are removed, ask for final sign-of
|
|
|
687
695
|
After user confirms, update the specification frontmatter:
|
|
688
696
|
|
|
689
697
|
```markdown
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
698
|
+
---
|
|
699
|
+
topic: {topic-name}
|
|
700
|
+
status: concluded
|
|
701
|
+
type: feature # or cross-cutting
|
|
702
|
+
date: YYYY-MM-DD # Use today's actual date
|
|
703
|
+
---
|
|
695
704
|
```
|
|
696
705
|
|
|
697
706
|
Specification is complete when:
|