@flydocs/cli 0.6.0-alpha.13 → 0.6.0-alpha.20

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 (152) hide show
  1. package/dist/cli.js +281 -256
  2. package/package.json +1 -1
  3. package/template/.claude/CLAUDE.md +62 -66
  4. package/template/.claude/agents/implementation-agent.md +1 -1
  5. package/template/.claude/agents/pm-agent.md +1 -1
  6. package/template/.claude/commands/activate.md +1 -1
  7. package/template/.claude/commands/attach.md +1 -1
  8. package/template/.claude/commands/block.md +2 -2
  9. package/template/.claude/commands/capture.md +1 -1
  10. package/template/.claude/commands/close.md +1 -1
  11. package/template/.claude/commands/flydocs-setup.md +261 -58
  12. package/template/.claude/commands/flydocs-upgrade.md +26 -27
  13. package/template/.claude/commands/implement.md +1 -1
  14. package/template/.claude/commands/new-project.md +1 -1
  15. package/template/.claude/commands/onboard.md +275 -0
  16. package/template/.claude/commands/project-update.md +1 -1
  17. package/template/.claude/commands/refine.md +1 -1
  18. package/template/.claude/commands/review.md +1 -1
  19. package/template/.claude/commands/start-session.md +1 -1
  20. package/template/.claude/commands/status.md +1 -1
  21. package/template/.claude/commands/validate.md +1 -1
  22. package/template/.claude/commands/wrap-session.md +1 -1
  23. package/template/.claude/hooks/auto-approve.py +132 -0
  24. package/template/.claude/hooks/post-pr-check.py +108 -0
  25. package/template/.claude/hooks/post-transition-check.py +94 -0
  26. package/template/{.flydocs → .claude}/hooks/prompt-submit.py +167 -17
  27. package/template/.claude/hooks/session-start.py +146 -0
  28. package/template/.claude/hooks/stop-gate.py +109 -0
  29. package/template/.claude/settings.json +41 -4
  30. package/template/.claude/skills/README.md +23 -25
  31. package/template/.claude/skills/flydocs-workflow/SKILL.md +121 -34
  32. package/template/.claude/skills/flydocs-workflow/cursor-rule.mdc +9 -8
  33. package/template/.claude/skills/flydocs-workflow/reference/golden-rules.md +28 -17
  34. package/template/.claude/skills/flydocs-workflow/reference/graph-schema.md +116 -0
  35. package/template/.claude/skills/flydocs-workflow/reference/pr-workflow.md +30 -15
  36. package/template/.claude/skills/flydocs-workflow/reference/priority-estimates.md +1 -1
  37. package/template/.claude/skills/flydocs-workflow/reference/service-descriptor-schema.md +251 -0
  38. package/template/.claude/skills/flydocs-workflow/reference/status-workflow.md +26 -26
  39. package/template/.claude/skills/flydocs-workflow/scripts/_local/__init__.py +0 -0
  40. package/template/.claude/skills/{flydocs-local/scripts/flydocs_api.py → flydocs-workflow/scripts/_local/file_store.py} +133 -46
  41. package/template/.claude/skills/flydocs-workflow/scripts/flydocs_api.py +693 -0
  42. package/template/{.flydocs → .claude/skills/flydocs-workflow}/scripts/generate_manifest.py +4 -4
  43. package/template/.claude/skills/{flydocs-context-graph → flydocs-workflow}/scripts/graph_build.py +132 -1
  44. package/template/.claude/skills/{flydocs-context-graph → flydocs-workflow}/scripts/graph_query.py +18 -5
  45. package/template/.claude/skills/{flydocs-context-graph → flydocs-workflow}/scripts/graph_session.py +1 -1
  46. package/template/.claude/skills/{flydocs-context-graph → flydocs-workflow}/scripts/graph_update.py +4 -4
  47. package/template/.claude/skills/{flydocs-context-graph → flydocs-workflow}/scripts/graph_utils.py +2 -1
  48. package/template/.claude/skills/flydocs-workflow/scripts/issues.py +489 -0
  49. package/template/.claude/skills/flydocs-workflow/scripts/projects.py +144 -0
  50. package/template/.claude/skills/flydocs-workflow/scripts/pull_services.py +128 -0
  51. package/template/.claude/skills/flydocs-workflow/scripts/push_service.py +132 -0
  52. package/template/.claude/skills/flydocs-workflow/scripts/session.py +54 -0
  53. package/template/.claude/skills/flydocs-workflow/scripts/workspace.py +860 -0
  54. package/template/.claude/skills/flydocs-workflow/session.md +16 -11
  55. package/template/.claude/skills/flydocs-workflow/stages/activate.md +13 -8
  56. package/template/.claude/skills/flydocs-workflow/stages/capture.md +4 -4
  57. package/template/.claude/skills/flydocs-workflow/stages/close.md +1 -1
  58. package/template/.claude/skills/flydocs-workflow/stages/implement.md +7 -7
  59. package/template/.claude/skills/flydocs-workflow/stages/refine.md +5 -5
  60. package/template/.claude/skills/flydocs-workflow/stages/review.md +2 -2
  61. package/template/.claude/skills/flydocs-workflow/stages/validate.md +3 -1
  62. package/template/.claude/skills/flydocs-workflow/templates/pr/default.md +33 -0
  63. package/template/.cursor/agents/implementation-agent.md +1 -1
  64. package/template/.cursor/agents/pm-agent.md +2 -2
  65. package/template/.cursor/hooks.json +10 -3
  66. package/template/.env.example +6 -6
  67. package/template/.flydocs/config.json +2 -1
  68. package/template/.flydocs/templates/README.md +13 -14
  69. package/template/.flydocs/templates/quick-capture.md +4 -8
  70. package/template/.flydocs/version +1 -1
  71. package/template/AGENTS.md +39 -32
  72. package/template/flydocs/README.md +1 -3
  73. package/template/flydocs/context/project.md +6 -3
  74. package/template/flydocs/design-system/README.md +3 -3
  75. package/template/manifest.json +17 -19
  76. package/template/.claude/skills/flydocs-cloud/SKILL.md +0 -138
  77. package/template/.claude/skills/flydocs-cloud/cursor-rule.mdc +0 -50
  78. package/template/.claude/skills/flydocs-cloud/scripts/assign.py +0 -28
  79. package/template/.claude/skills/flydocs-cloud/scripts/assign_cycle.py +0 -28
  80. package/template/.claude/skills/flydocs-cloud/scripts/assign_milestone.py +0 -22
  81. package/template/.claude/skills/flydocs-cloud/scripts/comment.py +0 -29
  82. package/template/.claude/skills/flydocs-cloud/scripts/create_issue.py +0 -83
  83. package/template/.claude/skills/flydocs-cloud/scripts/create_milestone.py +0 -35
  84. package/template/.claude/skills/flydocs-cloud/scripts/create_project.py +0 -33
  85. package/template/.claude/skills/flydocs-cloud/scripts/create_team.py +0 -39
  86. package/template/.claude/skills/flydocs-cloud/scripts/delete_milestone.py +0 -21
  87. package/template/.claude/skills/flydocs-cloud/scripts/estimate.py +0 -33
  88. package/template/.claude/skills/flydocs-cloud/scripts/flydocs_api.py +0 -241
  89. package/template/.claude/skills/flydocs-cloud/scripts/generate_config.py +0 -125
  90. package/template/.claude/skills/flydocs-cloud/scripts/get_estimate_scale.py +0 -23
  91. package/template/.claude/skills/flydocs-cloud/scripts/get_issue.py +0 -24
  92. package/template/.claude/skills/flydocs-cloud/scripts/get_me.py +0 -103
  93. package/template/.claude/skills/flydocs-cloud/scripts/link.py +0 -28
  94. package/template/.claude/skills/flydocs-cloud/scripts/list_cycles.py +0 -28
  95. package/template/.claude/skills/flydocs-cloud/scripts/list_issues.py +0 -44
  96. package/template/.claude/skills/flydocs-cloud/scripts/list_labels.py +0 -19
  97. package/template/.claude/skills/flydocs-cloud/scripts/list_milestones.py +0 -28
  98. package/template/.claude/skills/flydocs-cloud/scripts/list_projects.py +0 -31
  99. package/template/.claude/skills/flydocs-cloud/scripts/list_providers.py +0 -19
  100. package/template/.claude/skills/flydocs-cloud/scripts/list_statuses.py +0 -19
  101. package/template/.claude/skills/flydocs-cloud/scripts/list_teams.py +0 -19
  102. package/template/.claude/skills/flydocs-cloud/scripts/priority.py +0 -29
  103. package/template/.claude/skills/flydocs-cloud/scripts/project_update.py +0 -45
  104. package/template/.claude/skills/flydocs-cloud/scripts/refresh_labels.py +0 -87
  105. package/template/.claude/skills/flydocs-cloud/scripts/set_identity.py +0 -54
  106. package/template/.claude/skills/flydocs-cloud/scripts/set_labels.py +0 -54
  107. package/template/.claude/skills/flydocs-cloud/scripts/set_preferences.py +0 -49
  108. package/template/.claude/skills/flydocs-cloud/scripts/set_provider.py +0 -31
  109. package/template/.claude/skills/flydocs-cloud/scripts/set_status_mapping.py +0 -57
  110. package/template/.claude/skills/flydocs-cloud/scripts/set_team.py +0 -28
  111. package/template/.claude/skills/flydocs-cloud/scripts/transition.py +0 -26
  112. package/template/.claude/skills/flydocs-cloud/scripts/update_description.py +0 -36
  113. package/template/.claude/skills/flydocs-cloud/scripts/update_issue.py +0 -100
  114. package/template/.claude/skills/flydocs-cloud/scripts/update_milestone.py +0 -42
  115. package/template/.claude/skills/flydocs-cloud/scripts/validate_setup.py +0 -120
  116. package/template/.claude/skills/flydocs-context-graph/SKILL.md +0 -94
  117. package/template/.claude/skills/flydocs-context-graph/schema.md +0 -78
  118. package/template/.claude/skills/flydocs-context-graph/scripts/graph_context.py +0 -338
  119. package/template/.claude/skills/flydocs-context7/SKILL.md +0 -105
  120. package/template/.claude/skills/flydocs-context7/cursor-rule.mdc +0 -49
  121. package/template/.claude/skills/flydocs-context7/scripts/context7.py +0 -293
  122. package/template/.claude/skills/flydocs-estimates/SKILL.md +0 -384
  123. package/template/.claude/skills/flydocs-figma/SKILL.md +0 -377
  124. package/template/.claude/skills/flydocs-figma/references/PROMPTING.md +0 -108
  125. package/template/.claude/skills/flydocs-figma/references/TROUBLESHOOTING.md +0 -112
  126. package/template/.claude/skills/flydocs-local/SKILL.md +0 -103
  127. package/template/.claude/skills/flydocs-local/cursor-rule.mdc +0 -43
  128. package/template/.claude/skills/flydocs-local/scripts/assign.py +0 -29
  129. package/template/.claude/skills/flydocs-local/scripts/comment.py +0 -27
  130. package/template/.claude/skills/flydocs-local/scripts/create_issue.py +0 -44
  131. package/template/.claude/skills/flydocs-local/scripts/estimate.py +0 -37
  132. package/template/.claude/skills/flydocs-local/scripts/get_issue.py +0 -20
  133. package/template/.claude/skills/flydocs-local/scripts/link.py +0 -41
  134. package/template/.claude/skills/flydocs-local/scripts/list_issues.py +0 -50
  135. package/template/.claude/skills/flydocs-local/scripts/priority.py +0 -37
  136. package/template/.claude/skills/flydocs-local/scripts/project_update.py +0 -67
  137. package/template/.claude/skills/flydocs-local/scripts/status_summary.py +0 -16
  138. package/template/.claude/skills/flydocs-local/scripts/transition.py +0 -24
  139. package/template/.claude/skills/flydocs-local/scripts/update_description.py +0 -35
  140. package/template/.claude/skills/flydocs-local/scripts/update_issue.py +0 -84
  141. package/template/.flydocs/hooks/auto-approve.py +0 -71
  142. package/template/.flydocs/scripts/skill_manager.py +0 -541
  143. package/template/.flydocs/templates/bug.md +0 -166
  144. package/template/.flydocs/templates/chore.md +0 -110
  145. package/template/.flydocs/templates/feature.md +0 -173
  146. package/template/.flydocs/templates/idea.md +0 -122
  147. /package/template/{.flydocs → .claude}/hooks/post-edit.py +0 -0
  148. /package/template/.claude/skills/{flydocs-estimates/references → flydocs-workflow/reference}/provider-costs.md +0 -0
  149. /package/template/.claude/skills/flydocs-workflow/templates/{bug.md → issues/bug.md} +0 -0
  150. /package/template/.claude/skills/flydocs-workflow/templates/{chore.md → issues/chore.md} +0 -0
  151. /package/template/.claude/skills/flydocs-workflow/templates/{feature.md → issues/feature.md} +0 -0
  152. /package/template/.claude/skills/flydocs-workflow/templates/{idea.md → issues/idea.md} +0 -0
@@ -1,110 +0,0 @@
1
- <!-- AGENT INSTRUCTIONS
2
- When creating or refining a chore issue:
3
-
4
- 1. CONTEXT SECTION:
5
- - Explain the value (cleaner code, better UX, faster performance)
6
- - Be specific about scope to prevent scope creep
7
- - Mark as "Ongoing" if this is iterative work
8
-
9
- 2. TASK LIST:
10
- - Be specific and actionable
11
- - Add tasks as you discover them during work
12
- - Move tasks to "Out of Scope" if they're too big
13
- - Tasks should be completable in one session
14
-
15
- 3. ACCEPTANCE CRITERIA:
16
- - Focus on completion and quality
17
- - Mark documentation as N/A if no new patterns
18
- - Mark tests as N/A if no behavior changes
19
-
20
- 4. COMPLETION CRITERIA:
21
- - "Done when" should be clear stopping point
22
- - If scope keeps growing, suggest splitting into multiple chores
23
-
24
- 5. WORKFLOW:
25
- - Chores often skip formal review/QA
26
- - Use simplified flow: Backlog → In Progress → Done
27
- - Use full flow only for significant refactors
28
-
29
- Remove these instructions when creating the final issue.
30
- -->
31
-
32
- ## Context
33
-
34
- **Why This Matters:**
35
- [Explanation of the value - cleaner code, better UX, faster performance, etc.]
36
-
37
- **Scope:**
38
- [What areas/pages/features does this touch? Be specific enough to stay focused.]
39
-
40
- **Type:** Ongoing | One-time
41
-
42
- ---
43
-
44
- ## Task List
45
-
46
- ### Initial Tasks
47
- - [ ] [Task 1 - be specific]
48
- - [ ] [Task 2 - be specific]
49
- - [ ] [Task 3 - be specific]
50
-
51
- ### Added During Work
52
- <!-- Add new tasks discovered while working -->
53
-
54
- ### Out of Scope
55
- <!-- Tasks that don't fit - might become new issues -->
56
- - [Task that's too big or different focus]
57
-
58
- ---
59
-
60
- ## Acceptance Criteria
61
-
62
- ### Completion
63
- - [ ] All initial tasks completed (or moved to out of scope)
64
- - [ ] Code quality acceptable
65
- - [ ] No regressions introduced
66
-
67
- ### Tests
68
- - [ ] Tests updated if behavior changed
69
- - [ ] All tests passing
70
- - [ ] N/A - No behavior changes
71
-
72
- ### Documentation
73
- - [ ] Patterns documented (if new approach discovered)
74
- - [ ] N/A - No significant documentation needed
75
-
76
- ---
77
-
78
- ## Technical Notes
79
-
80
- ### Approach
81
- [How you'll tackle this work]
82
-
83
- ### Files to Touch
84
- - `path/to/file.tsx` - [What changes]
85
-
86
- ### Risk Assessment
87
- - **Regression Risk:** Low | Medium | High
88
- - **Related Areas:** [What else might be affected]
89
-
90
- ---
91
-
92
- ## Completion Criteria
93
-
94
- **This chore is done when:**
95
- - [ ] [Completion criterion 1]
96
- - [ ] [Completion criterion 2]
97
- - [ ] No obvious improvements remaining in scope
98
-
99
- **Signs this needs to be split:**
100
- - Work has been ongoing for 3+ weeks
101
- - Scope has grown significantly
102
- - New tasks are unrelated to original purpose
103
-
104
- ---
105
-
106
- _Created: YYYY-MM-DD_
107
-
108
-
109
-
110
-
@@ -1,173 +0,0 @@
1
- <!-- AGENT INSTRUCTIONS
2
- When creating or refining a feature issue:
3
-
4
- 1. CONTEXT SECTION:
5
- - Explain the problem being solved, not just the solution
6
- - Include business value or user impact
7
- - Reference project goals from {content-folder}/context/overview.md if relevant
8
-
9
- 2. USER STORY:
10
- - Must follow "As a... I want... So that..." format
11
- - Be specific about the user role (not just "user")
12
- - Benefit should be concrete and measurable
13
- - Include an example scenario for clarity
14
-
15
- 3. ACCEPTANCE CRITERIA:
16
- - Each criterion must be testable and specific
17
- - Use checkboxes for tracking completion
18
- - Include error handling scenarios
19
- - "Must Have" = required for completion
20
- - "Should Have" = nice to have, not blocking
21
- - "Won't Have" = explicitly out of scope
22
-
23
- 4. TECHNICAL NOTES:
24
- - Reference patterns from {content-folder}/context/stack.md
25
- - List specific components/files to create or modify
26
- - Include data model changes if applicable
27
- - Note any API changes needed
28
-
29
- 5. DEPENDENCIES:
30
- - List issues that must be completed first
31
- - Note what future work this enables
32
-
33
- Remove these instructions when creating the final issue.
34
- -->
35
-
36
- ## Context
37
-
38
- [Problem description - what user pain or business need does this address?]
39
-
40
- **Current Issues:**
41
- - [Issue or limitation 1]
42
- - [Issue or limitation 2]
43
-
44
- ---
45
-
46
- ## User Story
47
-
48
- **As a** [specific user role]
49
- **I want to** [specific goal or action]
50
- **So that** [concrete benefit or outcome]
51
-
52
- **Example Scenario:**
53
- [Real-world scenario where this feature would be used]
54
-
55
- ---
56
-
57
- ## Acceptance Criteria
58
-
59
- ### Must Have
60
- - [ ] [Specific, measurable criterion 1]
61
- - [ ] [User can perform X action and see Y result]
62
- - [ ] [System behaves correctly when Z happens]
63
- - [ ] [Error handling: System shows helpful message when...]
64
-
65
- ### Should Have
66
- - [ ] [Nice-to-have enhancement]
67
-
68
- ### Won't Have (Out of Scope)
69
- - [Explicitly excluded functionality]
70
-
71
- ### Tests
72
- - [ ] Tests written for core functionality
73
- - [ ] Edge cases and error scenarios covered
74
- - [ ] All tests passing
75
-
76
- ### Documentation
77
- - [ ] Code documented (comments on complex logic)
78
- - [ ] Knowledge base updated (if significant decisions/patterns)
79
- - [ ] Context files updated (if architecture changes)
80
- - [ ] N/A - No significant documentation needed
81
-
82
- ---
83
-
84
- ## Technical Notes
85
-
86
- ### Implementation Approach
87
- [High-level description of how this will be built]
88
-
89
- **Key Technical Decisions:**
90
- 1. [Decision 1 and rationale]
91
- 2. [Decision 2 and rationale]
92
-
93
- ### Components Needed
94
- **New:**
95
- - `ComponentName` - [What it does]
96
-
97
- **Modify:**
98
- - `ExistingComponent` - [What changes needed]
99
-
100
- ### Data Model
101
- ```typescript
102
- // Schema changes if any
103
- // OR: No data model changes required
104
- ```
105
-
106
- ### API Endpoints
107
- - `POST /api/endpoint` - [Description]
108
- - OR: No new endpoints required
109
-
110
- ---
111
-
112
- ## Dependencies
113
-
114
- **Required Before Starting:**
115
- - [Feature or system that must exist first]
116
- - OR: No dependencies - can start immediately
117
-
118
- **Enables Future Work:**
119
- - [Feature that depends on this being complete]
120
-
121
- ---
122
-
123
- ## Design Reference
124
- <!-- Add Figma links as attachments -->
125
-
126
- ---
127
-
128
- ## AI Effort Estimate
129
- <!--
130
- AGENT: Fill this section during /refine using the flydocs-estimates skill.
131
- See .claude/skills/flydocs-estimates/SKILL.md for calculation details.
132
- Update Actuals section during /close for calibration.
133
- -->
134
-
135
- ### Sizing Factors
136
-
137
- | Factor | Value | Multiplier |
138
- |--------|-------|------------|
139
- | **Task Type** | feature | base: 40k |
140
- | **Scope** | [S/M/L/XL] | ×[0.5/1.0/2.0/4.0] |
141
- | **Novelty** | [existing/partial/greenfield] | ×[0.7/1.2/2.0] |
142
- | **Clarity** | [defined/discovery/exploratory] | ×[0.8/1.5/2.5] |
143
- | **Codebase** | [simple/moderate/complex] | ×[0.8/1.0/1.5] |
144
-
145
- ### Estimate
146
-
147
- **Provider**: [Claude Sonnet 4]
148
- **Calculated Tokens**: ~[X]k
149
- **Confidence**: ±[40-60]%
150
- **Token Range**: [low]k - [high]k
151
- **Cost Range**: $[low] - $[high]
152
-
153
- ### Approach Comparison
154
-
155
- | Approach | Est. Cost | Est. Time | Recommendation |
156
- |----------|-----------|-----------|----------------|
157
- | **Full AI** | $[X] | [X] hrs | [When to use] |
158
- | **AI-Assisted** | $[X] + [X]hrs | [X] hrs | [When to use] |
159
- | **Human-Led** | $[X] (review) | [X] hrs | [When to use] |
160
-
161
- ### Actuals (fill on /close)
162
- **Actual Tokens**: [fill after completion]
163
- **Variance**: [+/-X]% [under/over estimate]
164
- **Notes**: [what drove variance - blockers, scope changes, retries]
165
-
166
- ---
167
-
168
- _Created: YYYY-MM-DD_
169
-
170
-
171
-
172
-
173
-
@@ -1,122 +0,0 @@
1
- <!-- AGENT INSTRUCTIONS
2
- When creating or refining an idea issue:
3
-
4
- 1. SKETCH SECTION:
5
- - Keep it light - this is brainstorming
6
- - What/Why/How should each be one sentence
7
- - Details can be rough notes
8
-
9
- 2. POTENTIAL VALUE:
10
- - Think about user benefit first
11
- - Business value second
12
- - Be honest about impact uncertainty
13
-
14
- 3. QUESTIONS TO ANSWER:
15
- - Capture what you don't know
16
- - These become research tasks before refinement
17
- - Include feasibility, effort, and value questions
18
-
19
- 4. COMPLEXITY:
20
- - If XL or larger, note how to break it down
21
- - Ideas often seem smaller until investigated
22
-
23
- 5. STATUS TRACKING:
24
- - Ideas follow: Captured → Researched → Validated → Refined or Declined
25
- - "Refined" means it became a full feature issue
26
- - "Declined" with reason is valuable documentation
27
-
28
- 6. CONVERSION:
29
- - When idea is validated, create feature issue
30
- - Link the feature issue in "Refined" status
31
-
32
- Remove these instructions when creating the final issue.
33
- -->
34
-
35
- ## Sketch
36
-
37
- **Quick Description:**
38
- - **What:** [One sentence - what is this?]
39
- - **Why:** [One sentence - why might this be valuable?]
40
- - **How:** [One sentence - rough idea of how it might work]
41
-
42
- **Details:**
43
- [Additional thoughts, context, inspiration, related ideas]
44
-
45
- ---
46
-
47
- ## Potential Value
48
-
49
- **For Users:**
50
- - [Benefit 1]
51
- - [Benefit 2]
52
-
53
- **For Business/Product:**
54
- - [Value 1]
55
- - [Value 2]
56
-
57
- **Estimated Impact:** 🔥 High | 📊 Medium | 💡 Low | ❓ Unknown
58
-
59
- ---
60
-
61
- ## Questions to Answer
62
-
63
- **Unknowns:**
64
- - [ ] What needs research or investigation?
65
- - [ ] What's the technical feasibility?
66
- - [ ] What's the rough effort estimate?
67
- - [ ] Does this already exist elsewhere?
68
-
69
- **Dependencies:**
70
- - [ ] Does this depend on other work?
71
- - [ ] Are there technical constraints?
72
-
73
- **Risks:**
74
- - [ ] What could go wrong?
75
-
76
- ---
77
-
78
- ## Rough Complexity
79
-
80
- **Complexity:** XS | S | M | L | XL | ❓ Unknown
81
-
82
- **If XL or larger:**
83
- [How could this be broken into smaller features?]
84
-
85
- ---
86
-
87
- ## Next Steps
88
-
89
- **To Validate This Idea:**
90
- 1. [Research step 1]
91
- 2. [User validation needed]
92
- 3. [Technical spike or prototype]
93
-
94
- **To Turn Into a Feature:**
95
- 1. [ ] Answer the questions above
96
- 2. [ ] Define clear user story and acceptance criteria
97
- 3. [ ] Get stakeholder buy-in
98
- 4. [ ] Create feature issue with full template
99
-
100
- ---
101
-
102
- ## Status Tracking
103
-
104
- - [ ] **Captured** - Idea written down ✅
105
- - [ ] **Researched** - Questions answered, feasibility checked
106
- - [ ] **Validated** - Worth pursuing
107
- - [ ] **Refined** - Converted to full feature issue
108
- - [ ] **Declined** - Decided not to pursue
109
-
110
- **If Declined:**
111
- - **Reason:** [Why we decided not to do this]
112
-
113
- **If Refined:**
114
- - **New Issue:** [Link to feature issue created from this idea]
115
-
116
- ---
117
-
118
- _Captured: YYYY-MM-DD_
119
-
120
-
121
-
122
-