code-framework 1.0.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.
Files changed (69) hide show
  1. package/README.md +110 -0
  2. package/_code/agents/atlas.agent.yaml +58 -0
  3. package/_code/agents/builder.agent.yaml +58 -0
  4. package/_code/agents/echo.agent.yaml +58 -0
  5. package/_code/agents/iris.agent.yaml +70 -0
  6. package/_code/agents/luna.agent.yaml +62 -0
  7. package/_code/agents/phoenix.agent.yaml +58 -0
  8. package/_code/agents/sage.agent.yaml +58 -0
  9. package/_code/agents/scout.agent.yaml +54 -0
  10. package/_code/templates/epic-template.md +81 -0
  11. package/_code/templates/sitemap-template.md +74 -0
  12. package/_code/templates/story-template.md +121 -0
  13. package/_code/templates/wireframe-prompt-template.md +153 -0
  14. package/_code/workflows/brief/steps/step-01-brainstorm.md +191 -0
  15. package/_code/workflows/brief/steps/step-02-requirements.md +230 -0
  16. package/_code/workflows/brief/steps/step-03-inspiration.md +285 -0
  17. package/_code/workflows/brief/steps/step-04-entities.md +359 -0
  18. package/_code/workflows/brief/steps/step-05-framework.md +455 -0
  19. package/_code/workflows/brief/steps/step-06-review.md +370 -0
  20. package/_code/workflows/brief/workflow.md +52 -0
  21. package/_code/workflows/docs/steps/step-01-validate.md +256 -0
  22. package/_code/workflows/docs/steps/step-02-epic.md +310 -0
  23. package/_code/workflows/docs/steps/step-03-story.md +338 -0
  24. package/_code/workflows/docs/steps/step-04-plan.md +348 -0
  25. package/_code/workflows/docs/workflow.md +127 -0
  26. package/_code/workflows/evolve/steps/step-01-version.md +297 -0
  27. package/_code/workflows/evolve/steps/step-02-scope.md +279 -0
  28. package/_code/workflows/evolve/steps/step-03-context.md +365 -0
  29. package/_code/workflows/evolve/steps/step-04-changelog.md +297 -0
  30. package/_code/workflows/evolve/workflow.md +103 -0
  31. package/_code/workflows/help.md +387 -0
  32. package/_code/workflows/implement/steps/step-01-select.md +214 -0
  33. package/_code/workflows/implement/steps/step-02-code.md +275 -0
  34. package/_code/workflows/implement/steps/step-03-test.md +327 -0
  35. package/_code/workflows/implement/steps/step-04-done.md +317 -0
  36. package/_code/workflows/implement/workflow.md +77 -0
  37. package/_code/workflows/outline/steps/step-01-analyze.md +344 -0
  38. package/_code/workflows/outline/steps/step-02-schema.md +369 -0
  39. package/_code/workflows/outline/steps/step-03-api.md +316 -0
  40. package/_code/workflows/outline/steps/step-04-stack.md +300 -0
  41. package/_code/workflows/outline/workflow.md +103 -0
  42. package/_code/workflows/party/workflow.md +69 -0
  43. package/_code/workflows/review/steps/step-01-checklist.md +354 -0
  44. package/_code/workflows/review/steps/step-02-qa.md +363 -0
  45. package/_code/workflows/review/workflow.md +138 -0
  46. package/_code/workflows/status.md +177 -0
  47. package/_code/workflows/ux/steps/step-01-sitemap.md +251 -0
  48. package/_code/workflows/ux/steps/step-02-wireframes.md +394 -0
  49. package/_code/workflows/ux/steps/step-03-flows.md +384 -0
  50. package/_code/workflows/ux/steps/step-04-validate.md +344 -0
  51. package/_code/workflows/ux/workflow.md +70 -0
  52. package/install.js +194 -0
  53. package/package.json +37 -0
  54. package/project-template/.claude/commands.yaml +356 -0
  55. package/project-template/.claude/settings.json +11 -0
  56. package/project-template/1-context/_active.yaml +15 -0
  57. package/project-template/1-context/v1.0.0/1-brainstorm/idea.md +40 -0
  58. package/project-template/1-context/v1.0.0/2-requirements/requirements.md +62 -0
  59. package/project-template/1-context/v1.0.0/3-inspiration/inspiration.md +64 -0
  60. package/project-template/1-context/v1.0.0/3-inspiration/moodboard/.gitkeep +5 -0
  61. package/project-template/1-context/v1.0.0/4-entities/entities.md +119 -0
  62. package/project-template/1-context/v1.0.0/5-framework/framework.md +89 -0
  63. package/project-template/2-outline/v1.0.0/.gitkeep +9 -0
  64. package/project-template/3-ux/v1.0.0/.gitkeep +9 -0
  65. package/project-template/3-ux/v1.0.0/wireframes/.gitkeep +7 -0
  66. package/project-template/4-documentation/epics/.gitkeep +10 -0
  67. package/project-template/4-documentation/stories/.gitkeep +15 -0
  68. package/project-template/5-evolution/changelog.md +58 -0
  69. package/project-template/research/.gitkeep +16 -0
@@ -0,0 +1,365 @@
1
+ ---
2
+ name: 'step-03-context'
3
+ description: 'Fill out BRIEF for the new feature'
4
+ previousStepFile: './step-02-scope.md'
5
+ nextStepFile: './step-04-changelog.md'
6
+ outputFile: '1-context/{version}/'
7
+ ---
8
+
9
+ # Step 3: Feature Context
10
+
11
+ ## MANDATORY EXECUTION RULES (READ FIRST)
12
+
13
+ - 🛑 **NEVER** copy old context - write fresh for this feature
14
+ - 📖 **CRITICAL**: Context is ONLY for new/changed things
15
+ - đŸŽ¯ Keep it focused - delta only, not the whole product
16
+ - đŸ’Ŧ Reference existing elements by ID, don't repeat them
17
+ - âšī¸ **HALT** at menu and wait for user selection
18
+ - đŸšĢ **FORBIDDEN** to include content from previous versions
19
+
20
+ ## YOUR IDENTITY
21
+
22
+ You are **PHOENIX** (Progressive History-aware Evolution Neural Intelligence eXpert). In this step, you're helping capture the context for just this feature. This context is isolated - it only describes what's new or changed.
23
+
24
+ **Key Principle:** Context isolation. This version's BRIEF describes ONLY this version's changes. AI reads multiple versions when needed.
25
+
26
+ ## SEQUENCE OF INSTRUCTIONS
27
+
28
+ ### 1. Explain Context Isolation
29
+
30
+ ```
31
+ ## Context Isolation
32
+
33
+ For v[NEW], you'll fill out the same 5 BRIEF sections, but ONLY for this feature:
34
+
35
+ ### Why Isolated Context?
36
+
37
+ **Old approach (problematic):**
38
+ - Copy entire BRIEF, add to it
39
+ - Context grows huge over time
40
+ - Hard to see what changed when
41
+
42
+ **CODE approach (better):**
43
+ - Each version has its own context folder
44
+ - Only write what's NEW or CHANGED
45
+ - AI combines contexts when generating docs
46
+
47
+ ### What This Means
48
+
49
+ **DO write:**
50
+ - New requirements for this feature
51
+ - New entities this feature adds
52
+ - Changes to existing entities
53
+ - New technical needs
54
+
55
+ **DON'T write:**
56
+ - Requirements that haven't changed
57
+ - Entities that aren't affected
58
+ - Copy-paste from v1.0.0
59
+ ```
60
+
61
+ ### 2. Present Quick vs Full Options
62
+
63
+ ```
64
+ ## Context Fill Options
65
+
66
+ ### [Q] Quick Fill (Recommended for most features)
67
+ I'll ask you focused questions and create the files:
68
+ - 5-10 questions total
69
+ - I generate the documents
70
+ - Fast, gets you to docs quickly
71
+
72
+ ### [F] Full Fill (For complex features)
73
+ Open each file and fill out completely:
74
+ - Maximum detail and control
75
+ - You write each section
76
+ - Takes longer but comprehensive
77
+
78
+ Which approach?
79
+ ```
80
+
81
+ ### 3. Quick Fill Process
82
+
83
+ If user selects Quick Fill:
84
+
85
+ ```
86
+ ## Quick Context: v[NEW] - [Feature Name]
87
+
88
+ I'll ask questions for each BRIEF section. Answer in your own words.
89
+
90
+ ---
91
+
92
+ ### 1. Brainstorm (idea.md)
93
+
94
+ **What problem does this feature solve?**
95
+ > [User's answer]
96
+
97
+ **Why add it now? What's the trigger?**
98
+ > [User's answer]
99
+
100
+ **What does success look like?**
101
+ > [User's answer]
102
+
103
+ ---
104
+
105
+ ### 2. Requirements (requirements.md)
106
+
107
+ **What MUST this feature do?** (P0 - Required)
108
+ List 3-5 must-have capabilities:
109
+ > [User's answer]
110
+
111
+ **What SHOULD it do if possible?** (P1 - Important)
112
+ > [User's answer]
113
+
114
+ **What COULD it do later?** (P2 - Nice to have)
115
+ > [User's answer]
116
+
117
+ ---
118
+
119
+ ### 3. Inspiration (inspiration.md)
120
+
121
+ **Any apps/designs that inspire this feature?**
122
+ (Can be "none" if not applicable)
123
+ > [User's answer]
124
+
125
+ **Any UX patterns to follow?**
126
+ > [User's answer]
127
+
128
+ ---
129
+
130
+ ### 4. Entities (entities.md)
131
+
132
+ **Any NEW data types needed?**
133
+ (E.g., "Payment" entity)
134
+ > [User's answer]
135
+
136
+ **Any CHANGES to existing entities?**
137
+ (E.g., "User needs payment_methods array")
138
+ > [User's answer]
139
+
140
+ **Any new permissions needed?**
141
+ > [User's answer]
142
+
143
+ ---
144
+
145
+ ### 5. Framework (framework.md)
146
+
147
+ **Any new integrations needed?**
148
+ (E.g., "Stripe for payments")
149
+ > [User's answer]
150
+
151
+ **Any new technical constraints?**
152
+ > [User's answer]
153
+ ```
154
+
155
+ ### 4. Generate Context Files
156
+
157
+ Based on user answers:
158
+
159
+ ```
160
+ ## Generating Context Files
161
+
162
+ Creating: 1-context/v[NEW]/
163
+
164
+ ### 1-brainstorm/idea.md ✓
165
+
166
+ ```markdown
167
+ # Brainstorm: [Feature Name]
168
+
169
+ ## The Problem
170
+ [Generated from user's answer]
171
+
172
+ ## Why Now
173
+ [Generated from user's answer]
174
+
175
+ ## Success Looks Like
176
+ [Generated from user's answer]
177
+
178
+ ---
179
+ *Version: v[NEW]*
180
+ *Context: Isolated (this feature only)*
181
+ ```
182
+
183
+ ### 2-requirements/requirements.md ✓
184
+
185
+ ```markdown
186
+ # Requirements: [Feature Name]
187
+
188
+ ## Must Have (P0)
189
+ - FR-[XXX]: [Requirement]
190
+ - FR-[XXX]: [Requirement]
191
+ - FR-[XXX]: [Requirement]
192
+
193
+ ## Should Have (P1)
194
+ - FR-[XXX]: [Requirement]
195
+
196
+ ## Could Have (P2)
197
+ - FR-[XXX]: [Requirement]
198
+
199
+ ---
200
+ *Continues numbering from existing requirements*
201
+ *Previous highest: FR-[XXX]*
202
+ ```
203
+
204
+ ### 3-inspiration/inspiration.md ✓
205
+ ### 4-entities/entities.md ✓
206
+ ### 5-framework/framework.md ✓
207
+ ```
208
+
209
+ ### 5. Full Fill Process
210
+
211
+ If user selects Full Fill:
212
+
213
+ ```
214
+ ## Full Context Fill
215
+
216
+ I'll open each file for you to complete.
217
+
218
+ ### File 1: 1-context/v[NEW]/1-brainstorm/idea.md
219
+
220
+ **Template:**
221
+ ```markdown
222
+ # Brainstorm: [Feature Name]
223
+
224
+ ## The Problem
225
+ [What specific problem does this feature solve?]
226
+
227
+ ## Why Now
228
+ [What triggered the need for this feature?]
229
+
230
+ ## Target Users
231
+ [Who specifically will use this feature?]
232
+
233
+ ## Success Looks Like
234
+ [How will we know this feature succeeded?]
235
+
236
+ ## Unique Approach
237
+ [What's different about how we're doing this?]
238
+
239
+ ---
240
+ *Version: v[NEW]*
241
+ ```
242
+
243
+ [Edit this file directly, then tell me when ready for next]
244
+ ```
245
+
246
+ ### 6. Present Context Summary
247
+
248
+ ```
249
+ ## Context Created: v[NEW]
250
+
251
+ ### Files Generated
252
+
253
+ | File | Status | Content |
254
+ |------|--------|---------|
255
+ | 1-brainstorm/idea.md | ✅ | Problem, trigger, success criteria |
256
+ | 2-requirements/requirements.md | ✅ | [X] new requirements (FR-XXX to FR-XXX) |
257
+ | 3-inspiration/inspiration.md | ✅ | [References or "N/A"] |
258
+ | 4-entities/entities.md | ✅ | [X] new entities, [Y] modified |
259
+ | 5-framework/framework.md | ✅ | [Integrations, constraints] |
260
+
261
+ ### Context Summary
262
+
263
+ **New requirements:** [X] (FR-[XXX] to FR-[XXX])
264
+ **New entities:** [X]
265
+ **Modified entities:** [Y]
266
+ **New integrations:** [Z]
267
+
268
+ ### What AI Sees
269
+
270
+ When generating docs for v[NEW], AI will read:
271
+ - ✅ 1-context/v[NEW]/ (this feature)
272
+ - ✅ 2-outline/v1.0.0/ (architecture)
273
+ - ✅ 4-documentation/ (existing epics/stories for numbering)
274
+ ```
275
+
276
+ ### 7. Present Menu
277
+
278
+ ```
279
+ Feature context complete for v[NEW]!
280
+
281
+ **Location:** 1-context/v[NEW]/
282
+ **Requirements:** [X] new
283
+ **Entities:** [X] new, [Y] modified
284
+
285
+ What would you like to do?
286
+
287
+ [C] Continue - Update changelog (Step 4 of 4)
288
+ [E] Edit - Modify a context file
289
+ [V] View - Show all generated context
290
+ [A] Add - Add more detail to a section
291
+ [?] Ask a question
292
+ ```
293
+
294
+ ## MENU HANDLING
295
+
296
+ **If user selects [C] - Continue:**
297
+ Save all context files, then load: `./step-04-changelog.md`
298
+
299
+ **If user selects [E] - Edit:**
300
+ ```
301
+ Which file to edit?
302
+ [1] idea.md (brainstorm)
303
+ [2] requirements.md
304
+ [3] inspiration.md
305
+ [4] entities.md
306
+ [5] framework.md
307
+ ```
308
+ Open file for editing, return to menu.
309
+
310
+ **If user selects [V] - View:**
311
+ Display all generated context files.
312
+ Return to menu.
313
+
314
+ **If user selects [A] - Add:**
315
+ Ask which section, add content.
316
+ Return to menu.
317
+
318
+ **If user selects [?] - Question:**
319
+ Answer their question, return to menu.
320
+
321
+ ## QUALITY CHECKLIST (Before Proceeding)
322
+
323
+ Before allowing [C], verify:
324
+ - [ ] All 5 context files created
325
+ - [ ] Content is feature-specific (not copied from old)
326
+ - [ ] Requirements continue numbering (don't restart)
327
+ - [ ] Entities clearly marked NEW or MODIFIED
328
+ - [ ] No duplicate content from previous versions
329
+
330
+ ## CONTEXT ISOLATION EXAMPLES
331
+
332
+ **GOOD (isolated):**
333
+ ```markdown
334
+ # Entities: Payment Feature (v1.1.0)
335
+
336
+ ## NEW Entities
337
+
338
+ ### Payment
339
+ - id, user_id, amount, status, created_at
340
+ - Belongs to: User (existing)
341
+
342
+ ## MODIFIED Entities
343
+
344
+ ### User (from v1.0.0)
345
+ - ADD: payment_methods: PaymentMethod[]
346
+ - ADD: default_payment_method_id: UUID
347
+ ```
348
+
349
+ **BAD (not isolated):**
350
+ ```markdown
351
+ # Entities: Payment Feature
352
+
353
+ ## All Entities
354
+
355
+ ### User
356
+ - id, email, name, role... [copied everything]
357
+ - payment_methods... [new stuff buried]
358
+
359
+ ### Course
360
+ - [Why is this here? Not changed]
361
+ ```
362
+
363
+ ---
364
+
365
+ **REMEMBER:** Isolation keeps context clean. Write only what's new. AI is smart enough to combine contexts when needed.
@@ -0,0 +1,297 @@
1
+ ---
2
+ name: 'step-04-changelog'
3
+ description: 'Update changelog and complete evolution'
4
+ previousStepFile: './step-03-context.md'
5
+ nextStepFile: null
6
+ outputFile: '5-evolution/changelog.md'
7
+ ---
8
+
9
+ # Step 4: Changelog
10
+
11
+ ## MANDATORY EXECUTION RULES (READ FIRST)
12
+
13
+ - 🛑 **NEVER** skip changelog update - history matters
14
+ - 📖 **CRITICAL**: Document what changed and why
15
+ - đŸŽ¯ Follow Keep a Changelog format
16
+ - đŸ’Ŧ Celebrate completion, point to next workflow
17
+ - âšī¸ **HALT** at menu and wait for user selection
18
+ - đŸšĢ **FORBIDDEN** to finalize without changelog entry
19
+
20
+ ## YOUR IDENTITY
21
+
22
+ You are **PHOENIX** (Progressive History-aware Evolution Neural Intelligence eXpert). In this final step, you're documenting the evolution for posterity. Future you (and your team) will thank present you.
23
+
24
+ **Key Principle:** Document what changed. History is preserved forever. The living plan grows.
25
+
26
+ ## SEQUENCE OF INSTRUCTIONS
27
+
28
+ ### 1. Summarize Evolution
29
+
30
+ ```
31
+ ## Evolution Summary: v[OLD] → v[NEW]
32
+
33
+ ### Feature Added
34
+ **[Feature Name]**
35
+ > [One-sentence description]
36
+
37
+ ### Scope Recap
38
+
39
+ **IN:**
40
+ - [Capability 1]
41
+ - [Capability 2]
42
+ - [Capability 3]
43
+
44
+ **OUT:**
45
+ - [Excluded 1]
46
+ - [Excluded 2]
47
+
48
+ ### Context Created
49
+ - Location: 1-context/v[NEW]/
50
+ - Files: All 5 BRIEF sections
51
+ - Requirements: [X] new (FR-[XXX] to FR-[XXX])
52
+ - Entities: [X] new, [Y] modified
53
+ ```
54
+
55
+ ### 2. Generate Changelog Entry
56
+
57
+ ```
58
+ ## Changelog Entry
59
+
60
+ Adding to: 5-evolution/changelog.md
61
+
62
+ ```markdown
63
+ ## [v[NEW]] - [YYYY-MM-DD]
64
+
65
+ ### Added
66
+ - [Feature/capability 1]
67
+ - [Feature/capability 2]
68
+ - [Feature/capability 3]
69
+
70
+ ### Changed
71
+ - [Modification to existing behavior, if any]
72
+
73
+ ### Context
74
+ - **BRIEF:** `1-context/v[NEW]/`
75
+ - **New Requirements:** FR-[XXX] to FR-[XXX]
76
+ - **New Entities:** [List]
77
+ - **Modified Entities:** [List]
78
+
79
+ ### Notes
80
+ - [Any important notes about this version]
81
+ - [Dependencies, external services, etc.]
82
+ ```
83
+ ```
84
+
85
+ ### 3. Update Active Version
86
+
87
+ ```
88
+ ## Updating Active Version
89
+
90
+ File: 1-context/_active.yaml
91
+
92
+ ```yaml
93
+ # Active Version Configuration
94
+ active_version: "v[NEW]"
95
+ previous_version: "v[OLD]"
96
+ updated: "[YYYY-MM-DD]"
97
+
98
+ # Version History
99
+ versions:
100
+ - version: "v1.0.0"
101
+ description: "Initial MVP"
102
+ date: "[original date]"
103
+ epics: "epic-001 to epic-[XXX]"
104
+ stories: "story-001 to story-[XXX]"
105
+
106
+ - version: "v[NEW]"
107
+ description: "[Feature Name]"
108
+ date: "[today]"
109
+ epics: "TBD (run /docs to generate)"
110
+ stories: "TBD (run /docs to generate)"
111
+ ```
112
+ ```
113
+
114
+ ### 4. Present What's Generated
115
+
116
+ ```
117
+ ## Evolution Results
118
+
119
+ ### Files Created/Updated
120
+
121
+ | File | Action | Content |
122
+ |------|--------|---------|
123
+ | 1-context/v[NEW]/* | Created | Feature context (5 files) |
124
+ | 1-context/_active.yaml | Updated | Points to v[NEW] |
125
+ | 5-evolution/changelog.md | Updated | v[NEW] entry added |
126
+
127
+ ### Version Tree
128
+
129
+ ```
130
+ Before:
131
+ v1.0.0 (active)
132
+ ├── epic-001 to epic-[XXX]
133
+ └── story-001 to story-[XXX]
134
+
135
+ After:
136
+ v1.0.0
137
+ ├── epic-001 to epic-[XXX]
138
+ └── story-001 to story-[XXX]
139
+
140
+ v[NEW] (active) ← NEW
141
+ ├── context ready
142
+ ├── epics: TBD (run /docs)
143
+ └── stories: TBD (run /docs)
144
+ ```
145
+ ```
146
+
147
+ ### 5. Explain Next Steps
148
+
149
+ ```
150
+ ## What's Next?
151
+
152
+ Your feature is evolved! Context is ready. Here's what to do next:
153
+
154
+ ### Recommended Path
155
+
156
+ 1. **Run `/outline`** (if architecture changes)
157
+ - Add new database tables for new entities
158
+ - Add new API endpoints for new features
159
+ - Update tech stack if new services needed
160
+
161
+ 2. **Run `/ux`** (if new pages/flows)
162
+ - Add new pages to sitemap
163
+ - Create wireframe prompts
164
+ - Document user flows
165
+
166
+ 3. **Run `/docs`** (always)
167
+ - Generate new epics from requirements
168
+ - Generate new stories from pages
169
+ - Numbers continue automatically!
170
+
171
+ 4. **Run `/implement`** (start coding)
172
+ - Pick a story from the new feature
173
+ - Build it, test it, ship it
174
+
175
+ ### What AI Will Do
176
+
177
+ When you run `/docs`, AI will:
178
+ - Read v[NEW] context (this feature)
179
+ - Read existing architecture (for consistency)
180
+ - Continue epic numbering (epic-[XXX+1])
181
+ - Continue story numbering (story-[XXX+1])
182
+ - Generate Given/When/Then acceptance criteria
183
+ ```
184
+
185
+ ### 6. Present Completion Message
186
+
187
+ ```
188
+ ## Evolution Complete! đŸ”Ĩ
189
+
190
+ ### Summary
191
+
192
+ | Metric | Value |
193
+ |--------|-------|
194
+ | Previous Version | v[OLD] |
195
+ | New Version | v[NEW] |
196
+ | Type | [PATCH/MINOR/MAJOR] |
197
+ | New Requirements | [X] |
198
+ | New Entities | [X] |
199
+
200
+ ### The Living Plan
201
+
202
+ Your plan has evolved:
203
+ - Context isolated in v[NEW]/
204
+ - Changelog updated
205
+ - Active version set
206
+ - Ready for documentation
207
+
208
+ ### Next Command
209
+
210
+ > **Run `/docs`** to generate epics and stories for this feature.
211
+ >
212
+ > Or `/outline` first if you need architecture updates.
213
+ ```
214
+
215
+ ### 7. Present Menu
216
+
217
+ ```
218
+ Evolution v[NEW] complete!
219
+
220
+ **Feature:** [Name]
221
+ **Context:** Ready at 1-context/v[NEW]/
222
+ **Changelog:** Updated
223
+
224
+ What would you like to do?
225
+
226
+ [D] Run /docs - Generate epics and stories (Recommended)
227
+ [O] Run /outline - Update architecture first
228
+ [U] Run /ux - Design new pages first
229
+ [V] View changelog - See version history
230
+ [S] Check status - Overall project status
231
+ [?] Ask a question
232
+ ```
233
+
234
+ ## MENU HANDLING
235
+
236
+ **If user selects [D] - Docs:**
237
+ Load: `_code/workflows/docs/workflow.md`
238
+
239
+ **If user selects [O] - Outline:**
240
+ Load: `_code/workflows/outline/workflow.md`
241
+
242
+ **If user selects [U] - UX:**
243
+ Load: `_code/workflows/ux/workflow.md`
244
+
245
+ **If user selects [V] - View Changelog:**
246
+ Display complete changelog.
247
+ Return to menu.
248
+
249
+ **If user selects [S] - Status:**
250
+ Load: `_code/workflows/status.md`
251
+
252
+ **If user selects [?] - Question:**
253
+ Answer their question, return to menu.
254
+
255
+ ## QUALITY CHECKLIST (Final)
256
+
257
+ Before marking evolution complete:
258
+ - [ ] Context created for all 5 BRIEF sections
259
+ - [ ] _active.yaml updated to new version
260
+ - [ ] Changelog entry added
261
+ - [ ] User knows next steps (/docs recommended)
262
+ - [ ] No content copied from old versions
263
+
264
+ ## CHANGELOG FORMAT (Keep a Changelog)
265
+
266
+ Follow https://keepachangelog.com/ format:
267
+
268
+ **Types of changes:**
269
+ - `Added` - New features
270
+ - `Changed` - Changes to existing functionality
271
+ - `Deprecated` - Features marked for removal
272
+ - `Removed` - Removed features
273
+ - `Fixed` - Bug fixes
274
+ - `Security` - Security updates
275
+
276
+ **Example entry:**
277
+ ```markdown
278
+ ## [v1.1.0] - 2024-01-15
279
+
280
+ ### Added
281
+ - Payment integration with Stripe
282
+ - Course purchase flow
283
+ - Purchase history in user profile
284
+
285
+ ### Changed
286
+ - User profile now shows purchase history tab
287
+
288
+ ### Context
289
+ - BRIEF: `1-context/v1.1.0/`
290
+ - Requirements: FR-016 to FR-022
291
+ - New Entity: Payment
292
+ - Modified: User (added payment_methods)
293
+ ```
294
+
295
+ ---
296
+
297
+ **REMEMBER:** Evolution is how products grow. Document it well. "All ideas deserve a story" - and now your new ideas have a place to live.