@tekyzinc/gsd-t 2.8.0 → 2.8.1
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/gsd-t-init.md
CHANGED
|
@@ -102,6 +102,9 @@ Create a starter template:
|
|
|
102
102
|
## Conventions
|
|
103
103
|
- {Coding style, naming patterns — fill this in}
|
|
104
104
|
|
|
105
|
+
## Workflow Preferences
|
|
106
|
+
<!-- Override global defaults. Delete what you don't need to override. -->
|
|
107
|
+
|
|
105
108
|
## GSD-T Workflow
|
|
106
109
|
This project uses contract-driven development.
|
|
107
110
|
- State: .gsd-t/progress.md
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.1",
|
|
4
4
|
"description": "GSD-T: Contract-Driven Development for Claude Code — 34 slash commands with backlog management, impact analysis, test sync, and milestone archival",
|
|
5
5
|
"author": "Tekyz, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -217,6 +217,31 @@ Projects can specify an autonomy level in their project CLAUDE.md:
|
|
|
217
217
|
|
|
218
218
|
If not specified, use Level 2.
|
|
219
219
|
|
|
220
|
+
## Workflow Preferences (Defaults — override in project CLAUDE.md)
|
|
221
|
+
|
|
222
|
+
### Research Policy
|
|
223
|
+
Before planning a phase, evaluate whether research is needed:
|
|
224
|
+
|
|
225
|
+
**Run research when:**
|
|
226
|
+
- Phase involves unfamiliar libraries, APIs, or services
|
|
227
|
+
- Architectural decisions are required
|
|
228
|
+
- Integrating external systems
|
|
229
|
+
- Phase scope is ambiguous or complex
|
|
230
|
+
|
|
231
|
+
**Skip research when:**
|
|
232
|
+
- Patterns are already established from earlier phases
|
|
233
|
+
- Straightforward CRUD, UI, or config work
|
|
234
|
+
- Domain is well understood
|
|
235
|
+
- Phase builds directly on existing code patterns
|
|
236
|
+
|
|
237
|
+
If in doubt, skip research and proceed — research if execution reveals gaps.
|
|
238
|
+
|
|
239
|
+
### Phase Flow
|
|
240
|
+
- Upon completing a phase, automatically proceed to the next phase
|
|
241
|
+
- ONLY run Discussion phase if truly required (clear path → skip to Plan)
|
|
242
|
+
- ALWAYS self-verify work by running verification commands
|
|
243
|
+
- NEVER pause to show verification steps — execute them
|
|
244
|
+
|
|
220
245
|
|
|
221
246
|
# Don't Do These Things
|
|
222
247
|
|
|
@@ -36,6 +36,20 @@ This project uses contract-driven development.
|
|
|
36
36
|
- Contracts: .gsd-t/contracts/
|
|
37
37
|
- Domains: .gsd-t/domains/
|
|
38
38
|
|
|
39
|
+
## Workflow Preferences
|
|
40
|
+
<!-- Override global defaults from ~/.claude/CLAUDE.md -->
|
|
41
|
+
<!-- Delete lines you don't need to override — globals apply automatically -->
|
|
42
|
+
|
|
43
|
+
### Research Policy
|
|
44
|
+
<!-- Example overrides: -->
|
|
45
|
+
<!-- "Always research — this project uses cutting-edge APIs" -->
|
|
46
|
+
<!-- "Skip research — well-understood CRUD app" -->
|
|
47
|
+
|
|
48
|
+
### Phase Flow
|
|
49
|
+
<!-- Example overrides: -->
|
|
50
|
+
<!-- "ALWAYS run Discussion — architecture decisions are critical" -->
|
|
51
|
+
<!-- "Skip discuss unless truly required" -->
|
|
52
|
+
|
|
39
53
|
## Project-Specific Conventions
|
|
40
54
|
<!-- Add conventions that override or extend the global CLAUDE.md -->
|
|
41
55
|
|