@tudeorangbiasa/sdd-multiagent-opencode 0.1.0
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/.opencode/agents/sdd-explorer.md +75 -0
- package/.opencode/agents/sdd-implementer.md +72 -0
- package/.opencode/agents/sdd-orchestrator.md +152 -0
- package/.opencode/agents/sdd-planner.md +58 -0
- package/.opencode/agents/sdd-reviewer.md +74 -0
- package/.opencode/agents/sdd-verifier.md +90 -0
- package/.opencode/commands/audit.md +75 -0
- package/.opencode/commands/brief.md +190 -0
- package/.opencode/commands/evolve.md +87 -0
- package/.opencode/commands/execute-parallel.md +116 -0
- package/.opencode/commands/execute-task.md +81 -0
- package/.opencode/commands/generate-prd.md +82 -0
- package/.opencode/commands/generate-rules.md +67 -0
- package/.opencode/commands/grill-me.md +99 -0
- package/.opencode/commands/implement.md +149 -0
- package/.opencode/commands/init-sdd.md +141 -0
- package/.opencode/commands/plan.md +96 -0
- package/.opencode/commands/refine.md +115 -0
- package/.opencode/commands/research.md +194 -0
- package/.opencode/commands/sdd-full-plan.md +91 -0
- package/.opencode/commands/specify.md +124 -0
- package/.opencode/commands/tasks.md +110 -0
- package/.opencode/commands/upgrade.md +107 -0
- package/.opencode/skills/sdd-audit/SKILL.md +59 -0
- package/.opencode/skills/sdd-evolve/SKILL.md +95 -0
- package/.opencode/skills/sdd-implementation/SKILL.md +88 -0
- package/.opencode/skills/sdd-planning/SKILL.md +59 -0
- package/.opencode/skills/sdd-research/SKILL.md +44 -0
- package/.sdd/config.json +36 -0
- package/.sdd/templates/feature-brief-v2.md +65 -0
- package/.sdd/templates/plan-compact.md +50 -0
- package/.sdd/templates/project-profile-template.json +33 -0
- package/.sdd/templates/research-compact.md +114 -0
- package/.sdd/templates/roadmap-template.json +29 -0
- package/.sdd/templates/roadmap-template.md +66 -0
- package/.sdd/templates/spec-compact.md +71 -0
- package/.sdd/templates/tasks-compact.md +48 -0
- package/.sdd/templates/todo-compact.md +30 -0
- package/README.md +272 -0
- package/bin/sdd-opencode.js +387 -0
- package/opencode.json +98 -0
- package/package.json +28 -0
- package/vendor/opencode-agent-rules/.opencode/plugins/context-guard.js +7 -0
- package/vendor/opencode-agent-rules/.opencode/rules/cli-first.md +31 -0
- package/vendor/opencode-agent-rules/.opencode/rules/context-budget.md +39 -0
- package/vendor/opencode-agent-rules/.opencode/rules/core-behavior.md +44 -0
- package/vendor/opencode-agent-rules/.opencode/rules/status-verification.md +36 -0
- package/vendor/opencode-agent-rules/AGENTS.md +64 -0
- package/vendor/opencode-agent-rules/opencode.json +9 -0
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Interview the user relentlessly about a plan or design until reaching shared understanding. Use before /brief to clarify vague ideas, or to stress-test existing plans
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
Interview the user relentlessly about every aspect of their plan until you reach a shared understanding. Walk down each branch of the decision tree, resolving dependencies between decisions one-by-one.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
/grill-me $ARGUMENTS
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
**Examples:**
|
|
16
|
+
```
|
|
17
|
+
/grill-me I want to add authentication to my app
|
|
18
|
+
/grill-me We need a notification system
|
|
19
|
+
/grill-me I'm thinking of rebuilding the checkout flow
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Protocol
|
|
25
|
+
|
|
26
|
+
### Rules
|
|
27
|
+
|
|
28
|
+
1. **Ask ONE question at a time.** Never batch multiple questions.
|
|
29
|
+
2. **For each question, provide your recommended answer.** Make it easy for the user to just say "yes" if they agree.
|
|
30
|
+
3. **If a question can be answered by exploring the codebase, explore the codebase instead.** Use `codebase-memory-mcp` to find existing patterns before asking.
|
|
31
|
+
4. **Track the decision tree mentally.** Walk down each branch until resolved, then move to the next.
|
|
32
|
+
5. **Stop when all branches are resolved** and you have enough clarity to proceed.
|
|
33
|
+
|
|
34
|
+
### Question Categories
|
|
35
|
+
|
|
36
|
+
Ask questions from these categories in order, skipping ones already answered:
|
|
37
|
+
|
|
38
|
+
1. **Problem & Goal** — What are we building and why?
|
|
39
|
+
2. **Users** — Who will use this? What do they need?
|
|
40
|
+
3. **Scope** — What's in v1? What's explicitly out?
|
|
41
|
+
4. **Technical** — Existing patterns? New tech? Constraints?
|
|
42
|
+
5. **Success** — How do we know it's done? What metrics matter?
|
|
43
|
+
|
|
44
|
+
### Question Format
|
|
45
|
+
|
|
46
|
+
```
|
|
47
|
+
**Question N:** [Your question]
|
|
48
|
+
|
|
49
|
+
**My recommendation:** [Your suggested answer with brief rationale]
|
|
50
|
+
|
|
51
|
+
Does this work, or would you change it?
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### Codebase Exploration
|
|
55
|
+
|
|
56
|
+
Before asking about technical decisions, check the codebase first:
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
Let me check how your codebase currently handles [topic]...
|
|
60
|
+
|
|
61
|
+
[Use codebase-memory-mcp to explore]
|
|
62
|
+
|
|
63
|
+
Found: [existing pattern at path/to/file]
|
|
64
|
+
|
|
65
|
+
Given this, I'd recommend [recommendation]. Does that align with your thinking?
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
### Completion
|
|
69
|
+
|
|
70
|
+
When all branches are resolved, summarize the shared understanding:
|
|
71
|
+
|
|
72
|
+
```
|
|
73
|
+
## Shared Understanding
|
|
74
|
+
|
|
75
|
+
Here's what we've agreed on:
|
|
76
|
+
|
|
77
|
+
1. **Problem:** [summary]
|
|
78
|
+
2. **Users:** [who]
|
|
79
|
+
3. **Scope:** [in v1 / out of v1]
|
|
80
|
+
4. **Technical approach:** [direction]
|
|
81
|
+
5. **Success criteria:** [metrics]
|
|
82
|
+
|
|
83
|
+
**Ready to create a brief?** Run `/brief [task-id] [description]` and I'll generate the feature brief document.
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
## When to Use
|
|
89
|
+
|
|
90
|
+
- User has a vague idea and needs to clarify it before planning
|
|
91
|
+
- User has a plan but wants to stress-test it for holes
|
|
92
|
+
- User mentions "grill me" or "interrogate me"
|
|
93
|
+
- After `/brief` if the brief feels incomplete and needs deeper exploration
|
|
94
|
+
|
|
95
|
+
## When NOT to Use
|
|
96
|
+
|
|
97
|
+
- User already has a clear, detailed spec → skip to `/specify` or `/plan`
|
|
98
|
+
- User wants quick planning → use `/brief` directly
|
|
99
|
+
- User is in a hurry → batch questions instead
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Execute the planned implementation with systematic todo-list execution and continuous progress tracking
|
|
3
|
+
agent: sdd-implementer
|
|
4
|
+
subtask: true
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
**You are an implementation agent.** Execute the planned implementation systematically:
|
|
8
|
+
- Read all planning documents (plan.md, tasks.md, spec.md)
|
|
9
|
+
- Generate a todo-list if one doesn't exist
|
|
10
|
+
- Execute todos in order, respecting dependencies
|
|
11
|
+
- Mark each item complete as you finish it
|
|
12
|
+
- Document blockers and deviations
|
|
13
|
+
- Write production-quality code
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Prerequisites
|
|
18
|
+
|
|
19
|
+
- `plan.md` file in `specs/active/$1/`
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
/implement $1
|
|
25
|
+
/implement $1 --tdd
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
**Flags:**
|
|
29
|
+
| Flag | Description |
|
|
30
|
+
|------|-------------|
|
|
31
|
+
| `--tdd` | Test-Driven Development: write failing test first, then implement to pass |
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## Instructions
|
|
36
|
+
|
|
37
|
+
### Phase 1: Analysis
|
|
38
|
+
|
|
39
|
+
Read planning documents in order:
|
|
40
|
+
1. `specs/active/$1/plan.md` (REQUIRED)
|
|
41
|
+
2. `specs/active/$1/spec.md` (if exists)
|
|
42
|
+
3. `specs/active/$1/tasks.md` (if exists)
|
|
43
|
+
4. `specs/active/$1/research.md` (if exists)
|
|
44
|
+
5. `specs/active/$1/feature-brief.md` (if exists)
|
|
45
|
+
|
|
46
|
+
**If plan.md doesn't exist:** Suggest running `/plan $1` or `/brief $1` first.
|
|
47
|
+
|
|
48
|
+
Check for existing `todo-list.md` in the task directory.
|
|
49
|
+
|
|
50
|
+
### Phase 2: Planning
|
|
51
|
+
|
|
52
|
+
Present implementation plan before starting:
|
|
53
|
+
- What will be built
|
|
54
|
+
- Execution order/phases
|
|
55
|
+
- Files to create/modify
|
|
56
|
+
- Patterns to follow
|
|
57
|
+
- Todo-list preview (5-10 key items)
|
|
58
|
+
|
|
59
|
+
**Wait for user approval before proceeding.**
|
|
60
|
+
|
|
61
|
+
### Phase 3: Execution
|
|
62
|
+
|
|
63
|
+
**Create directory if it doesn't exist:** `specs/active/$1/`
|
|
64
|
+
|
|
65
|
+
**Create or update todo-list.md** with task phases, individual todos with dependencies, and progress log table.
|
|
66
|
+
|
|
67
|
+
**Execute todos systematically:**
|
|
68
|
+
1. Read entire todo-list before starting
|
|
69
|
+
2. Execute in order, respecting dependencies
|
|
70
|
+
3. Mark completion: `- [ ]` → `- [x]` after each item
|
|
71
|
+
4. Document blockers - never skip silently
|
|
72
|
+
5. Update progress log
|
|
73
|
+
|
|
74
|
+
**Show progress** after every 3-5 completed items.
|
|
75
|
+
|
|
76
|
+
### Phase 3b: TDD Mode (if --tdd flag)
|
|
77
|
+
|
|
78
|
+
When `--tdd` is specified, follow this loop for each todo:
|
|
79
|
+
|
|
80
|
+
**Step 1: Define expected behavior**
|
|
81
|
+
- Read the todo description
|
|
82
|
+
- Write a failing test that captures the expected behavior
|
|
83
|
+
- Test should fail with clear error message
|
|
84
|
+
|
|
85
|
+
**Step 2: Write minimum code to pass**
|
|
86
|
+
- Implement only what's needed to make the test pass
|
|
87
|
+
- Do NOT add extra features or polish
|
|
88
|
+
- Keep it minimal
|
|
89
|
+
|
|
90
|
+
**Step 3: Run test**
|
|
91
|
+
- Execute the specific test
|
|
92
|
+
- Verify it passes
|
|
93
|
+
|
|
94
|
+
**Step 4: Refactor (optional)**
|
|
95
|
+
- Only after test passes, refactor if needed
|
|
96
|
+
- Ensure tests still pass after refactor
|
|
97
|
+
|
|
98
|
+
**TDD todo format in todo-list.md:**
|
|
99
|
+
```markdown
|
|
100
|
+
- [ ] [Task name] --tdd
|
|
101
|
+
- Test file: `tests/[feature].test.ts`
|
|
102
|
+
- Test describes: [expected behavior]
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
**Rules for TDD:**
|
|
106
|
+
- Never write implementation code before the failing test
|
|
107
|
+
- Test must fail before implementation starts
|
|
108
|
+
- Only implement enough to make test pass
|
|
109
|
+
- Refactor AFTER tests pass, not before
|
|
110
|
+
|
|
111
|
+
### Phase 4: Verification
|
|
112
|
+
|
|
113
|
+
Spawn `sdd-verifier` subagent to independently validate:
|
|
114
|
+
- [ ] All todos complete or blocked
|
|
115
|
+
- [ ] Code follows project patterns
|
|
116
|
+
- [ ] No linter errors
|
|
117
|
+
- [ ] Tests pass (if applicable)
|
|
118
|
+
- [ ] Spec requirements met
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## Output
|
|
123
|
+
|
|
124
|
+
**End response with:**
|
|
125
|
+
|
|
126
|
+
```
|
|
127
|
+
✅ Implementation complete: $1
|
|
128
|
+
|
|
129
|
+
**Summary:**
|
|
130
|
+
- Completed: [X]/[Y] tasks
|
|
131
|
+
- Blocked: [N] items (if any)
|
|
132
|
+
- Files created: [count]
|
|
133
|
+
- Files modified: [count]
|
|
134
|
+
|
|
135
|
+
**What was built:**
|
|
136
|
+
- [Feature/component 1]
|
|
137
|
+
- [Feature/component 2]
|
|
138
|
+
|
|
139
|
+
**Blocked items (if any):**
|
|
140
|
+
- [Item]: [Reason]
|
|
141
|
+
|
|
142
|
+
**Next steps:**
|
|
143
|
+
- Run tests: `[test command]`
|
|
144
|
+
- Review changes in IDE
|
|
145
|
+
- Update specs: `/evolve $1 [discovery]`
|
|
146
|
+
|
|
147
|
+
**Files:**
|
|
148
|
+
- Todo list: `specs/active/$1/todo-list.md`
|
|
149
|
+
```
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Install or refresh SDD workflow into current project
|
|
3
|
+
agent: sdd-orchestrator
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Install Spec-Driven Development workflow (commands, agents, skills, templates) into a project that already has base rules.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
/init-sdd
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Prerequisites
|
|
19
|
+
|
|
20
|
+
This command expects `opencode-agent-rules` to be installed first. Check for:
|
|
21
|
+
- `AGENTS.md` in project root
|
|
22
|
+
- `.opencode/rules/context-budget.md` exists
|
|
23
|
+
|
|
24
|
+
If missing, output:
|
|
25
|
+
```
|
|
26
|
+
⚠️ Base rules not found.
|
|
27
|
+
|
|
28
|
+
Please install opencode-agent-rules first:
|
|
29
|
+
1. Clone or copy base rules to project
|
|
30
|
+
2. Run /init-rules
|
|
31
|
+
3. Then run /init-sdd
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Behavior
|
|
37
|
+
|
|
38
|
+
### Phase 1: Verify Prerequisites
|
|
39
|
+
|
|
40
|
+
1. Check if `AGENTS.md` exists
|
|
41
|
+
2. Check if `.opencode/rules/context-budget.md` exists
|
|
42
|
+
3. If either missing, abort and show install instructions
|
|
43
|
+
|
|
44
|
+
### Phase 2: Create Directory Structure
|
|
45
|
+
|
|
46
|
+
Create if missing:
|
|
47
|
+
```
|
|
48
|
+
.sdd/
|
|
49
|
+
├── config.json
|
|
50
|
+
├── templates/
|
|
51
|
+
specs/
|
|
52
|
+
├── active/
|
|
53
|
+
├── backlog/
|
|
54
|
+
├── completed/
|
|
55
|
+
└── todo-roadmap/
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### Phase 3: Install SDD Files
|
|
59
|
+
|
|
60
|
+
Copy from this repo:
|
|
61
|
+
- `.opencode/agents/*` → `.opencode/agents/`
|
|
62
|
+
- `.opencode/commands/*` → `.opencode/commands/`
|
|
63
|
+
- `.opencode/skills/*` → `.opencode/skills/`
|
|
64
|
+
- `.sdd/config.json` → `.sdd/config.json`
|
|
65
|
+
- `.sdd/templates/*` → `.sdd/templates/`
|
|
66
|
+
|
|
67
|
+
Note: Do NOT overwrite existing `.opencode/` directories if project has custom commands.
|
|
68
|
+
|
|
69
|
+
### Phase 4: Create Project Profile
|
|
70
|
+
|
|
71
|
+
Create `.sdd/project-profile.json` with this structure:
|
|
72
|
+
|
|
73
|
+
```json
|
|
74
|
+
{
|
|
75
|
+
"projectState": "unknown",
|
|
76
|
+
"initialized": "DATE",
|
|
77
|
+
"stack": {
|
|
78
|
+
"framework": null,
|
|
79
|
+
"language": null,
|
|
80
|
+
"packageManager": null,
|
|
81
|
+
"styling": null
|
|
82
|
+
},
|
|
83
|
+
"commands": {
|
|
84
|
+
"dev": null,
|
|
85
|
+
"build": null,
|
|
86
|
+
"test": null,
|
|
87
|
+
"lint": null
|
|
88
|
+
},
|
|
89
|
+
"design": {
|
|
90
|
+
"sourceOfTruth": null,
|
|
91
|
+
"hasDesignMd": false,
|
|
92
|
+
"hasProductMd": false,
|
|
93
|
+
"componentRoots": []
|
|
94
|
+
},
|
|
95
|
+
"skillRouting": {
|
|
96
|
+
"uiDefault": "existing-design-system",
|
|
97
|
+
"visualVerification": "sdd-verifier",
|
|
98
|
+
"codeReview": "sdd-reviewer"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
### Phase 5: Merge opencode.json
|
|
104
|
+
|
|
105
|
+
If project has `opencode.json`, merge these sections:
|
|
106
|
+
- `agents` definitions
|
|
107
|
+
- `permission` rules
|
|
108
|
+
|
|
109
|
+
If project doesn't have `opencode.json`, create from this repo's template.
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
## Output
|
|
114
|
+
|
|
115
|
+
```
|
|
116
|
+
✅ SDD workflow installed
|
|
117
|
+
|
|
118
|
+
Files installed:
|
|
119
|
+
- .opencode/agents/ (6 agents)
|
|
120
|
+
- .opencode/commands/ (16 commands)
|
|
121
|
+
- .opencode/skills/ (5 skills)
|
|
122
|
+
- .sdd/config.json
|
|
123
|
+
- .sdd/templates/ (8 templates)
|
|
124
|
+
- .sdd/project-profile.json
|
|
125
|
+
|
|
126
|
+
⚠️ Next steps:
|
|
127
|
+
1. Update project-profile.json with your stack
|
|
128
|
+
2. Run /brief <feature> to start
|
|
129
|
+
|
|
130
|
+
Available commands:
|
|
131
|
+
/brief /research /specify /plan /tasks /implement /audit
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
|
|
136
|
+
## Re-run Behavior
|
|
137
|
+
|
|
138
|
+
If running again (project already has SDD):
|
|
139
|
+
- Report: "SDD already installed"
|
|
140
|
+
- Offer to refresh: "Run with --force to refresh all files"
|
|
141
|
+
- Update `initialized` date in project-profile.json
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Generate a detailed technical implementation plan from specifications, including architecture decisions, tech stack, and design patterns
|
|
3
|
+
agent: sdd-planner
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
**You are a technical architect agent.** Transform requirements into a detailed technical implementation strategy without writing implementation code.
|
|
7
|
+
|
|
8
|
+
**Skill:** Uses `sdd-planning` skill.
|
|
9
|
+
|
|
10
|
+
**Output:** `specs/active/$1/plan.md`
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## Prerequisites
|
|
15
|
+
|
|
16
|
+
- Must have existing `spec.md` OR `feature-brief.md` in task directory
|
|
17
|
+
|
|
18
|
+
## Usage
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
/plan $1
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
**Examples:**
|
|
25
|
+
```
|
|
26
|
+
/plan user-auth-system
|
|
27
|
+
/plan checkout-flow
|
|
28
|
+
/plan notification-system
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## Instructions
|
|
34
|
+
|
|
35
|
+
### Phase 1: Analysis
|
|
36
|
+
|
|
37
|
+
1. **Read specifications** in order:
|
|
38
|
+
- `specs/active/$1/spec.md` (preferred)
|
|
39
|
+
- `specs/active/$1/feature-brief.md` (alternative)
|
|
40
|
+
- `specs/active/$1/research.md` (if exists)
|
|
41
|
+
|
|
42
|
+
**If no spec found:** Prompt user to run `/specify` or `/brief` first.
|
|
43
|
+
|
|
44
|
+
2. **Extract requirements:** Functional and non-functional requirements, constraints, user stories, acceptance criteria
|
|
45
|
+
|
|
46
|
+
3. **Analyze codebase:** Use `codebase-memory-mcp` to understand existing patterns, tech stack, conventions, integration points
|
|
47
|
+
|
|
48
|
+
4. **Identify decisions needed:** Architecture style, data storage, API design, integrations, security
|
|
49
|
+
|
|
50
|
+
### Phase 2: Plan Preview
|
|
51
|
+
|
|
52
|
+
**Present plan structure and wait for approval:**
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
## Technical Plan Preview
|
|
56
|
+
|
|
57
|
+
**Task ID:** $1
|
|
58
|
+
**Architecture:** [High-level approach]
|
|
59
|
+
**Tech stack:** [Key technologies with rationale]
|
|
60
|
+
**Components:** [Main components and purposes]
|
|
61
|
+
**Data model:** [Key entities]
|
|
62
|
+
**API design:** [Key endpoints]
|
|
63
|
+
|
|
64
|
+
Ready to generate the full plan?
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### Phase 3: Generate Plan
|
|
68
|
+
|
|
69
|
+
**Create directory if it doesn't exist:** `specs/active/$1/`
|
|
70
|
+
|
|
71
|
+
**Generate `plan.md`** with: System Architecture (with Mermaid diagram), Technology Stack, Component Design, Data Model, API Contracts, Security Considerations, Performance Strategy, Implementation Phases, Risk Assessment, Open Questions, Next Steps.
|
|
72
|
+
|
|
73
|
+
**Verify:** Read the file back to confirm it was created correctly.
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
## Output
|
|
78
|
+
|
|
79
|
+
**End your response with:**
|
|
80
|
+
|
|
81
|
+
```
|
|
82
|
+
✅ Plan created: `specs/active/$1/plan.md`
|
|
83
|
+
|
|
84
|
+
**Architecture:** [Brief description]
|
|
85
|
+
**Components:** [Count] main components
|
|
86
|
+
**Phases:** [Count] implementation phases
|
|
87
|
+
|
|
88
|
+
**Key decisions:**
|
|
89
|
+
- [Decision 1]: [Choice]
|
|
90
|
+
- [Decision 2]: [Choice]
|
|
91
|
+
|
|
92
|
+
**Next steps:**
|
|
93
|
+
- Review the technical plan
|
|
94
|
+
- Run `/tasks $1` to generate implementation tasks
|
|
95
|
+
- Or run `/implement $1` if tasks are clear
|
|
96
|
+
```
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Refine existing prompts, briefs, or specifications through continued discussion and iteration
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
**Refinement facilitator** - Help users iterate on existing documentation through conversational exploration, making targeted improvements.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
/refine $1
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
**Examples:**
|
|
16
|
+
```
|
|
17
|
+
/refine user-auth
|
|
18
|
+
/refine checkout-flow
|
|
19
|
+
/refine notification-system
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Instructions
|
|
25
|
+
|
|
26
|
+
### Phase 1: Analysis (Readonly)
|
|
27
|
+
|
|
28
|
+
**Step 1: Find refinement targets**
|
|
29
|
+
|
|
30
|
+
Search for:
|
|
31
|
+
1. `specs/active/$1/feature-brief.md`
|
|
32
|
+
2. `specs/active/$1/spec.md`
|
|
33
|
+
3. `specs/active/$1/plan.md`
|
|
34
|
+
4. `specs/active/$1/tasks.md`
|
|
35
|
+
|
|
36
|
+
**Step 2: Present what's available**
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
## Refinement Targets Found
|
|
40
|
+
|
|
41
|
+
**Task:** $1
|
|
42
|
+
|
|
43
|
+
**Available documents:**
|
|
44
|
+
| # | Document | Last Updated | Size |
|
|
45
|
+
|---|----------|--------------|------|
|
|
46
|
+
| 1 | feature-brief.md | [date] | [lines] |
|
|
47
|
+
| 2 | spec.md | [date] | [lines] |
|
|
48
|
+
| 3 | plan.md | [date] | [lines] |
|
|
49
|
+
|
|
50
|
+
**What would you like to refine?**
|
|
51
|
+
1. Feature brief - Requirements and approach
|
|
52
|
+
2. Specification - User stories and acceptance criteria
|
|
53
|
+
3. Technical plan - Architecture and design
|
|
54
|
+
4. Something specific - Tell me what
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### Phase 2: Exploration (Conversation)
|
|
58
|
+
|
|
59
|
+
**Start the refinement conversation** by summarizing the current state and asking what to refine.
|
|
60
|
+
|
|
61
|
+
Conduct conversational refinement:
|
|
62
|
+
- Ask follow-up questions
|
|
63
|
+
- Track refinement requests
|
|
64
|
+
- Present proposed changes before applying
|
|
65
|
+
|
|
66
|
+
### Phase 3: Planning (Show Changes)
|
|
67
|
+
|
|
68
|
+
**Present proposed changes before applying** with before/after diffs, change types (ADD/MODIFY/REMOVE/CLARIFY), and proposed changelog entry.
|
|
69
|
+
|
|
70
|
+
**Wait for user approval before proceeding.**
|
|
71
|
+
|
|
72
|
+
### Phase 4: Execution (After Approval)
|
|
73
|
+
|
|
74
|
+
**Step 1: Apply changes** - Update the document with all approved changes, change labels, updated version number, updated timestamp
|
|
75
|
+
|
|
76
|
+
**Step 2: Add changelog entry**
|
|
77
|
+
|
|
78
|
+
**Step 3: Verify changes** - Read the file back to confirm updates applied
|
|
79
|
+
|
|
80
|
+
### Phase 5: Completion
|
|
81
|
+
|
|
82
|
+
**CHECKPOINT: Refinement Complete (REQUIRED)**
|
|
83
|
+
|
|
84
|
+
Before final output, verify:
|
|
85
|
+
- [ ] All requested changes applied
|
|
86
|
+
- [ ] Original context preserved
|
|
87
|
+
- [ ] Changelog updated
|
|
88
|
+
- [ ] Version incremented
|
|
89
|
+
- [ ] File verified
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
93
|
+
## Output
|
|
94
|
+
|
|
95
|
+
```
|
|
96
|
+
✅ Refinement complete: `specs/active/$1/[file]`
|
|
97
|
+
|
|
98
|
+
**Changes applied:**
|
|
99
|
+
- [ADD] [Count] new items
|
|
100
|
+
- [MODIFY] [Count] existing items
|
|
101
|
+
- [REMOVE] [Count] items
|
|
102
|
+
- [CLARIFY] [Count] items
|
|
103
|
+
|
|
104
|
+
**Version:** [old] → [new]
|
|
105
|
+
|
|
106
|
+
**Key changes:**
|
|
107
|
+
1. [Change 1 summary]
|
|
108
|
+
2. [Change 2 summary]
|
|
109
|
+
|
|
110
|
+
**Next steps:**
|
|
111
|
+
- Review the updated document
|
|
112
|
+
- Make more refinements: `/refine $1`
|
|
113
|
+
- Update related docs if needed
|
|
114
|
+
- Proceed with implementation: `/implement $1`
|
|
115
|
+
```
|