@leeovery/claude-technical-workflows 2.0.41 → 2.0.43
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/workflow/start-discussion.md +162 -120
- package/commands/workflow/start-implementation.md +146 -66
- package/commands/workflow/start-planning.md +122 -43
- package/commands/workflow/start-research.md +90 -13
- package/commands/workflow/start-review.md +85 -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 +127 -0
- package/scripts/discovery-for-planning.sh +182 -0
- package/scripts/{specification-discovery.sh → discovery-for-specification.sh} +7 -2
- package/scripts/migrations/002-specification-frontmatter.sh +170 -0
- package/scripts/migrations/003-planning-frontmatter.sh +172 -0
- 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
|
@@ -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:
|