@thierrynakoa/fire-flow 10.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 (215) hide show
  1. package/.claude-plugin/plugin.json +64 -0
  2. package/ARCHITECTURE-DIAGRAM.md +440 -0
  3. package/COMMAND-REFERENCE.md +172 -0
  4. package/DOMINION-FLOW-OVERVIEW.md +421 -0
  5. package/LICENSE +21 -0
  6. package/QUICK-START.md +351 -0
  7. package/README.md +398 -0
  8. package/TROUBLESHOOTING.md +264 -0
  9. package/agents/fire-codebase-mapper.md +484 -0
  10. package/agents/fire-debugger.md +535 -0
  11. package/agents/fire-executor.md +949 -0
  12. package/agents/fire-fact-checker.md +276 -0
  13. package/agents/fire-learncoding-explainer.md +237 -0
  14. package/agents/fire-learncoding-walker.md +147 -0
  15. package/agents/fire-planner.md +675 -0
  16. package/agents/fire-project-researcher.md +155 -0
  17. package/agents/fire-research-synthesizer.md +166 -0
  18. package/agents/fire-researcher.md +723 -0
  19. package/agents/fire-reviewer.md +499 -0
  20. package/agents/fire-roadmapper.md +203 -0
  21. package/agents/fire-verifier.md +880 -0
  22. package/bin/cli.js +208 -0
  23. package/commands/fire-0-orient.md +476 -0
  24. package/commands/fire-1-new.md +281 -0
  25. package/commands/fire-1a-discuss.md +455 -0
  26. package/commands/fire-2-plan.md +527 -0
  27. package/commands/fire-3-execute.md +1303 -0
  28. package/commands/fire-4-verify.md +845 -0
  29. package/commands/fire-5-handoff.md +515 -0
  30. package/commands/fire-6-resume.md +501 -0
  31. package/commands/fire-7-review.md +409 -0
  32. package/commands/fire-add-new-skill.md +598 -0
  33. package/commands/fire-analytics.md +499 -0
  34. package/commands/fire-assumptions.md +78 -0
  35. package/commands/fire-autonomous.md +528 -0
  36. package/commands/fire-brainstorm.md +413 -0
  37. package/commands/fire-complete-milestone.md +270 -0
  38. package/commands/fire-dashboard.md +375 -0
  39. package/commands/fire-debug.md +663 -0
  40. package/commands/fire-discover.md +616 -0
  41. package/commands/fire-double-check.md +460 -0
  42. package/commands/fire-execute-plan.md +182 -0
  43. package/commands/fire-learncoding.md +242 -0
  44. package/commands/fire-loop-resume.md +272 -0
  45. package/commands/fire-loop-stop.md +198 -0
  46. package/commands/fire-loop.md +1168 -0
  47. package/commands/fire-map-codebase.md +313 -0
  48. package/commands/fire-new-milestone.md +356 -0
  49. package/commands/fire-reflect.md +235 -0
  50. package/commands/fire-research.md +246 -0
  51. package/commands/fire-search.md +330 -0
  52. package/commands/fire-security-audit-repo.md +293 -0
  53. package/commands/fire-security-scan.md +484 -0
  54. package/commands/fire-session-summary.md +252 -0
  55. package/commands/fire-skills-diff.md +506 -0
  56. package/commands/fire-skills-history.md +388 -0
  57. package/commands/fire-skills-rollback.md +408 -0
  58. package/commands/fire-skills-sync.md +470 -0
  59. package/commands/fire-test.md +520 -0
  60. package/commands/fire-todos.md +335 -0
  61. package/commands/fire-transition.md +186 -0
  62. package/commands/fire-update.md +312 -0
  63. package/commands/fire-verify-uat.md +146 -0
  64. package/commands/fire-vuln-scan.md +493 -0
  65. package/hooks/hooks.json +16 -0
  66. package/hooks/run-hook.cmd +69 -0
  67. package/hooks/run-hook.sh +8 -0
  68. package/hooks/run-session-end.cmd +49 -0
  69. package/hooks/run-session-end.sh +7 -0
  70. package/hooks/session-end.sh +90 -0
  71. package/hooks/session-start.sh +111 -0
  72. package/package.json +52 -0
  73. package/plugin.json +7 -0
  74. package/references/auto-skill-extraction.md +136 -0
  75. package/references/behavioral-directives.md +365 -0
  76. package/references/blocker-tracking.md +155 -0
  77. package/references/checkpoints.md +165 -0
  78. package/references/circuit-breaker.md +410 -0
  79. package/references/context-engineering.md +587 -0
  80. package/references/decision-time-guidance.md +289 -0
  81. package/references/error-classification.md +326 -0
  82. package/references/execution-mode-intelligence.md +242 -0
  83. package/references/git-integration.md +217 -0
  84. package/references/honesty-protocols.md +304 -0
  85. package/references/integration-architecture.md +470 -0
  86. package/references/issue-to-pr-pipeline.md +150 -0
  87. package/references/metrics-and-trends.md +234 -0
  88. package/references/playwright-e2e-testing.md +326 -0
  89. package/references/questioning.md +125 -0
  90. package/references/research-improvements.md +110 -0
  91. package/references/skills-usage-guide.md +429 -0
  92. package/references/tdd.md +131 -0
  93. package/references/testing-enforcement.md +192 -0
  94. package/references/ui-brand.md +383 -0
  95. package/references/validation-checklist.md +456 -0
  96. package/references/verification-patterns.md +187 -0
  97. package/references/warrior-principles.md +173 -0
  98. package/skills-library/SKILLS-INDEX.md +588 -0
  99. package/skills-library/_general/frontend/html-visual-reports.md +292 -0
  100. package/skills-library/_general/methodology/debug-swarm-researcher-escape-hatch.md +240 -0
  101. package/skills-library/_general/methodology/learncoding-agentic-pattern.md +114 -0
  102. package/skills-library/_general/methodology/shell-autonomous-loop-fixplan.md +238 -0
  103. package/skills-library/basics/api-rest-basics.md +162 -0
  104. package/skills-library/basics/env-variables.md +96 -0
  105. package/skills-library/basics/error-handling-basics.md +125 -0
  106. package/skills-library/basics/git-commit-conventions.md +106 -0
  107. package/skills-library/basics/readme-template.md +108 -0
  108. package/skills-library/common-tasks/async-await-patterns.md +157 -0
  109. package/skills-library/common-tasks/auth-jwt-basics.md +164 -0
  110. package/skills-library/common-tasks/database-schema-design.md +166 -0
  111. package/skills-library/common-tasks/file-upload-basics.md +166 -0
  112. package/skills-library/common-tasks/form-validation.md +159 -0
  113. package/skills-library/debugging/FAILURE_TAXONOMY_CLASSIFICATION.md +117 -0
  114. package/skills-library/debugging/THREE_AGENT_HYPOTHESIS_DEBUGGING.md +86 -0
  115. package/skills-library/methodology/BREATH_BASED_PARALLEL_EXECUTION.md +678 -0
  116. package/skills-library/methodology/CONFIDENCE_GATED_EXECUTION.md +243 -0
  117. package/skills-library/methodology/EVIDENCE_BASED_VALIDATION.md +308 -0
  118. package/skills-library/methodology/MULTI_PERSPECTIVE_CODE_REVIEW.md +330 -0
  119. package/skills-library/methodology/PATH_VERIFICATION_GATE.md +211 -0
  120. package/skills-library/methodology/REFLEXION_MEMORY_PATTERN.md +183 -0
  121. package/skills-library/methodology/RESEARCH_BACKED_WORKFLOW_UPGRADE.md +263 -0
  122. package/skills-library/methodology/SABBATH_REST_PATTERN.md +267 -0
  123. package/skills-library/methodology/STONE_AND_SCAFFOLD.md +220 -0
  124. package/skills-library/performance/cache-augmented-generation.md +172 -0
  125. package/skills-library/quality-safety/debugging-steps.md +147 -0
  126. package/skills-library/quality-safety/deployment-checklist.md +155 -0
  127. package/skills-library/quality-safety/security-checklist.md +204 -0
  128. package/skills-library/quality-safety/testing-basics.md +180 -0
  129. package/skills-library/security/agent-security-scanner.md +445 -0
  130. package/skills-library/specialists/api-architecture/api-designer.md +49 -0
  131. package/skills-library/specialists/api-architecture/graphql-architect.md +49 -0
  132. package/skills-library/specialists/api-architecture/mcp-developer.md +51 -0
  133. package/skills-library/specialists/api-architecture/microservices-architect.md +50 -0
  134. package/skills-library/specialists/api-architecture/websocket-engineer.md +48 -0
  135. package/skills-library/specialists/backend/django-expert.md +52 -0
  136. package/skills-library/specialists/backend/fastapi-expert.md +52 -0
  137. package/skills-library/specialists/backend/laravel-specialist.md +52 -0
  138. package/skills-library/specialists/backend/nestjs-expert.md +51 -0
  139. package/skills-library/specialists/backend/rails-expert.md +53 -0
  140. package/skills-library/specialists/backend/spring-boot-engineer.md +56 -0
  141. package/skills-library/specialists/data-ml/fine-tuning-expert.md +48 -0
  142. package/skills-library/specialists/data-ml/ml-pipeline.md +47 -0
  143. package/skills-library/specialists/data-ml/pandas-pro.md +47 -0
  144. package/skills-library/specialists/data-ml/rag-architect.md +51 -0
  145. package/skills-library/specialists/data-ml/spark-engineer.md +47 -0
  146. package/skills-library/specialists/frontend/angular-architect.md +52 -0
  147. package/skills-library/specialists/frontend/flutter-expert.md +51 -0
  148. package/skills-library/specialists/frontend/nextjs-developer.md +54 -0
  149. package/skills-library/specialists/frontend/react-native-expert.md +50 -0
  150. package/skills-library/specialists/frontend/vue-expert.md +51 -0
  151. package/skills-library/specialists/infrastructure/chaos-engineer.md +74 -0
  152. package/skills-library/specialists/infrastructure/cloud-architect.md +70 -0
  153. package/skills-library/specialists/infrastructure/database-optimizer.md +64 -0
  154. package/skills-library/specialists/infrastructure/devops-engineer.md +70 -0
  155. package/skills-library/specialists/infrastructure/kubernetes-specialist.md +52 -0
  156. package/skills-library/specialists/infrastructure/monitoring-expert.md +70 -0
  157. package/skills-library/specialists/infrastructure/sre-engineer.md +70 -0
  158. package/skills-library/specialists/infrastructure/terraform-engineer.md +51 -0
  159. package/skills-library/specialists/languages/cpp-pro.md +74 -0
  160. package/skills-library/specialists/languages/csharp-developer.md +69 -0
  161. package/skills-library/specialists/languages/dotnet-core-expert.md +54 -0
  162. package/skills-library/specialists/languages/golang-pro.md +51 -0
  163. package/skills-library/specialists/languages/java-architect.md +49 -0
  164. package/skills-library/specialists/languages/javascript-pro.md +68 -0
  165. package/skills-library/specialists/languages/kotlin-specialist.md +68 -0
  166. package/skills-library/specialists/languages/php-pro.md +49 -0
  167. package/skills-library/specialists/languages/python-pro.md +52 -0
  168. package/skills-library/specialists/languages/react-expert.md +51 -0
  169. package/skills-library/specialists/languages/rust-engineer.md +50 -0
  170. package/skills-library/specialists/languages/sql-pro.md +56 -0
  171. package/skills-library/specialists/languages/swift-expert.md +69 -0
  172. package/skills-library/specialists/languages/typescript-pro.md +51 -0
  173. package/skills-library/specialists/platform/atlassian-mcp.md +52 -0
  174. package/skills-library/specialists/platform/embedded-systems.md +53 -0
  175. package/skills-library/specialists/platform/game-developer.md +53 -0
  176. package/skills-library/specialists/platform/salesforce-developer.md +53 -0
  177. package/skills-library/specialists/platform/shopify-expert.md +49 -0
  178. package/skills-library/specialists/platform/wordpress-pro.md +49 -0
  179. package/skills-library/specialists/quality/code-documenter.md +51 -0
  180. package/skills-library/specialists/quality/code-reviewer.md +67 -0
  181. package/skills-library/specialists/quality/debugging-wizard.md +51 -0
  182. package/skills-library/specialists/quality/fullstack-guardian.md +51 -0
  183. package/skills-library/specialists/quality/legacy-modernizer.md +50 -0
  184. package/skills-library/specialists/quality/playwright-expert.md +65 -0
  185. package/skills-library/specialists/quality/spec-miner.md +56 -0
  186. package/skills-library/specialists/quality/test-master.md +65 -0
  187. package/skills-library/specialists/security/secure-code-guardian.md +55 -0
  188. package/skills-library/specialists/security/security-reviewer.md +53 -0
  189. package/skills-library/specialists/workflow/architecture-designer.md +53 -0
  190. package/skills-library/specialists/workflow/cli-developer.md +70 -0
  191. package/skills-library/specialists/workflow/feature-forge.md +65 -0
  192. package/skills-library/specialists/workflow/prompt-engineer.md +54 -0
  193. package/skills-library/specialists/workflow/the-fool.md +62 -0
  194. package/templates/ASSUMPTIONS.md +125 -0
  195. package/templates/BLOCKERS.md +73 -0
  196. package/templates/DECISION_LOG.md +116 -0
  197. package/templates/UAT.md +96 -0
  198. package/templates/blueprint.md +94 -0
  199. package/templates/brainstorm.md +185 -0
  200. package/templates/conscience.md +92 -0
  201. package/templates/fire-handoff.md +159 -0
  202. package/templates/metrics.md +67 -0
  203. package/templates/phase-prompt.md +142 -0
  204. package/templates/record.md +131 -0
  205. package/templates/review-report.md +117 -0
  206. package/templates/skills-index.md +157 -0
  207. package/templates/verification.md +149 -0
  208. package/templates/vision.md +79 -0
  209. package/validation-config.yml +793 -0
  210. package/version.json +7 -0
  211. package/workflows/execute-phase.md +732 -0
  212. package/workflows/handoff-session.md +678 -0
  213. package/workflows/new-project.md +578 -0
  214. package/workflows/plan-phase.md +592 -0
  215. package/workflows/verify-phase.md +874 -0
@@ -0,0 +1,131 @@
1
+ # Summary Template (Dominion Flow Enhanced)
2
+
3
+ > **Origin:** Ported from Dominion Flow `summary.md` with metrics collection for trend analysis.
4
+
5
+ Template for `.planning/phases/XX-name/{phase}-{plan}-RECORD.md`
6
+
7
+ ---
8
+
9
+ ## File Template
10
+
11
+ ```markdown
12
+ ---
13
+ phase: XX-name
14
+ plan: NN
15
+ subsystem: [primary subsystem]
16
+ tags: [tech tags]
17
+ requires:
18
+ - [prior phases this builds on]
19
+ provides:
20
+ - [what this delivers for future phases]
21
+ affects:
22
+ - [future phases that may need to reference this]
23
+ tech-stack:
24
+ added: [new dependencies]
25
+ patterns: [new patterns established]
26
+ key-files:
27
+ created: [new files]
28
+ modified: [changed files]
29
+ key-decisions:
30
+ - [decision: rationale]
31
+
32
+ # Dominion Flow Metrics (for bottleneck detection + trend analysis)
33
+ metrics:
34
+ duration_minutes: [N]
35
+ tasks_completed: [N]
36
+ tasks_blocked: [N]
37
+ files_created: [N]
38
+ files_modified: [N]
39
+ lines_added: [N]
40
+ lines_removed: [N]
41
+ tests_added: [N]
42
+ test_coverage_delta: "[+/-N%]"
43
+ skills_applied: [N]
44
+ honesty_checkpoints: [N]
45
+ commits: [N]
46
+ blocker_count: [N]
47
+ execution_mode: sequential|subagent|swarm
48
+ mode_reason: "[why this mode was selected]"
49
+ agents_spawned: [N]
50
+ ---
51
+
52
+ ## Quick Summary
53
+
54
+ [One substantive sentence. Not "completed plan" - what was actually built.]
55
+
56
+ ## Task Commits
57
+
58
+ | # | Hash | Description | Files |
59
+ |---|------|-------------|-------|
60
+ | 1 | abc1234 | feat(XX-NN): [task 1] | src/file1.ts, src/file2.ts |
61
+ | 2 | def5678 | feat(XX-NN): [task 2] | src/file3.ts |
62
+ | 3 | ghi9012 | test(XX-NN): [task 3] | src/__tests__/file.test.ts |
63
+
64
+ ## Deviations from Plan
65
+
66
+ [If none: "None - executed as planned."]
67
+
68
+ | Deviation | Rule | Detail |
69
+ |-----------|------|--------|
70
+ | [what changed] | Rule 1 - Bug | [why] |
71
+
72
+ ## Test Results
73
+
74
+ | Segment | Tests Run | Passed | Failed | New Tests |
75
+ |---------|-----------|--------|--------|-----------|
76
+ | 1 | 24 | 24 | 0 | 3 |
77
+ | 2 | 27 | 27 | 0 | 3 |
78
+
79
+ ## Decisions Made
80
+
81
+ - **[Decision]:** [Choice made] — [Rationale]
82
+
83
+ ## Blockers Encountered
84
+
85
+ - **BLOCKER-XXX [PX]:** [Description] — [Status: Resolved/Open]
86
+
87
+ ## Skills Applied
88
+
89
+ - [skill-library/category/SKILL_NAME.md] — [how it helped]
90
+
91
+ ## Honesty Checkpoints
92
+
93
+ - **Gap identified:** [what was uncertain]
94
+ - **Research conducted:** [what was looked up]
95
+ - **Resolution:** [what was decided]
96
+ - **Confidence after research:** [High/Medium/Low]
97
+
98
+ ## Next Step
99
+
100
+ [More plans in phase? Phase complete? What comes next?]
101
+
102
+ ## Performance
103
+
104
+ - **Duration:** [N] minutes
105
+ - **Started:** [timestamp]
106
+ - **Completed:** [timestamp]
107
+ - **Tasks:** [completed]/[total]
108
+ - **Files:** [created] created, [modified] modified
109
+ - **Branch:** feature/phase-XX-description
110
+ ```
111
+
112
+ ---
113
+
114
+ ## Writing Guidelines
115
+
116
+ - **Quick Summary:** Substantive. "Built JWT auth with refresh tokens" not "Completed plan 02"
117
+ - **Task Commits:** Include actual git hashes for traceability
118
+ - **Deviations:** Categorize by Rule (1-Bug, 2-Critical, 3-Blocking, 4-Architectural)
119
+ - **Metrics:** Fill accurately - these feed into bottleneck detection and trend analysis
120
+ - **Skills Applied:** Reference exact skill file path for future reuse tracking
121
+ - **Honesty Checkpoints:** Document any research conducted during execution
122
+
123
+ ---
124
+
125
+ ## Metrics Collection
126
+
127
+ The `metrics` frontmatter is consumed by:
128
+ - `/fire-transition` — aggregates into phase-level metrics in CONSCIENCE.md
129
+ - `/fire-analytics` — historical trend analysis
130
+ - `/fire-dashboard` — visual project health display
131
+ - `references/metrics-and-trends.md` — bottleneck detection algorithm
@@ -0,0 +1,117 @@
1
+ # Multi-Perspective Code Review
2
+
3
+ **Target:** {target}
4
+ **Date:** {timestamp}
5
+ **Depth:** shallow | normal | deep
6
+ **Personas Used:** {count}
7
+
8
+ ---
9
+
10
+ ## Executive Summary
11
+
12
+ | Severity | Count | Action Required |
13
+ |----------|-------|-----------------|
14
+ | CRITICAL | 0 | Immediate fix |
15
+ | HIGH | 0 | Fix before merge |
16
+ | MEDIUM | 0 | Address soon |
17
+ | LOW | 0 | Optional |
18
+
19
+ **Overall Assessment:** BLOCK | APPROVE WITH FIXES | APPROVE
20
+
21
+ ---
22
+
23
+ ## Critical Findings (Fix Immediately)
24
+
25
+ ### Finding #1: {Title}
26
+
27
+ | Attribute | Value |
28
+ |-----------|-------|
29
+ | **Severity** | CRITICAL |
30
+ | **Location** | `{file}:{line}` |
31
+ | **Flagged By** | {persona list} |
32
+ | **Confidence** | {percentage}% |
33
+
34
+ **Problem:**
35
+ ```{language}
36
+ // Code showing the issue
37
+ ```
38
+
39
+ **Fix:**
40
+ ```{language}
41
+ // Code showing the solution
42
+ ```
43
+
44
+ **Why This Matters:**
45
+ {Explanation of impact}
46
+
47
+ ---
48
+
49
+ ## High Priority Findings
50
+
51
+ ### Finding #{N}: {Title}
52
+
53
+ | Attribute | Value |
54
+ |-----------|-------|
55
+ | **Severity** | HIGH |
56
+ | **Location** | `{file}:{line}` |
57
+ | **Flagged By** | {persona list} |
58
+
59
+ **Problem:** {description}
60
+
61
+ **Fix:** {recommendation}
62
+
63
+ ---
64
+
65
+ ## Medium Priority Findings
66
+
67
+ | # | Location | Issue | Flagged By |
68
+ |---|----------|-------|------------|
69
+ | 1 | `{file}:{line}` | {issue} | {persona} |
70
+
71
+ ---
72
+
73
+ ## Low Priority / Suggestions
74
+
75
+ - {suggestion 1}
76
+ - {suggestion 2}
77
+
78
+ ---
79
+
80
+ ## Persona Breakdown
81
+
82
+ ### Security Review ({count} personas)
83
+ - **Issues Found:** {count}
84
+ - **Unique Insights:** {insights}
85
+
86
+ ### Quality Review ({count} personas)
87
+ - **Issues Found:** {count}
88
+ - **Unique Insights:** {insights}
89
+
90
+ ### Architecture Review ({count} personas)
91
+ - **Issues Found:** {count}
92
+ - **Unique Insights:** {insights}
93
+
94
+ ### UX/DX Review ({count} personas)
95
+ - **Issues Found:** {count}
96
+ - **Unique Insights:** {insights}
97
+
98
+ ---
99
+
100
+ ## Actionable Summary
101
+
102
+ ### Must Fix Before Merge
103
+ 1. [ ] {item}
104
+ 2. [ ] {item}
105
+
106
+ ### Should Fix Soon
107
+ 1. [ ] {item}
108
+ 2. [ ] {item}
109
+
110
+ ### Consider Later
111
+ 1. [ ] {item}
112
+ 2. [ ] {item}
113
+
114
+ ---
115
+
116
+ *Review completed: {timestamp}*
117
+ *Powered by: Dominion Flow Multi-Perspective Review*
@@ -0,0 +1,157 @@
1
+ # Skills Applied to This Project
2
+
3
+ **Project:** {project_name}
4
+ **Last Updated:** {last_updated}
5
+
6
+ ---
7
+
8
+ ## Summary
9
+
10
+ | Metric | Value |
11
+ |--------|-------|
12
+ | Total skills applied | {total_skills_applied} |
13
+ | Categories used | {categories_used_count} ({categories_list}) |
14
+ | Most used category | {most_used_category} ({most_used_count} applications) |
15
+ | Most effective skill | {most_effective_skill} |
16
+ | Time saved estimate | {time_saved_estimate} |
17
+
18
+ ---
19
+
20
+ ## By Phase
21
+
22
+ {by_phase_sections}
23
+
24
+ ---
25
+
26
+ ## By Category
27
+
28
+ {by_category_sections}
29
+
30
+ ---
31
+
32
+ ## Skills Effectiveness
33
+
34
+ | Skill | Times Applied | Avg Impact | Success Rate | Notes |
35
+ |-------|---------------|------------|--------------|-------|
36
+ {effectiveness_rows}
37
+
38
+ ---
39
+
40
+ ## Quick Reference
41
+
42
+ ### Most Valuable Skills for This Project
43
+ {most_valuable_skills}
44
+
45
+ ### Commonly Used Patterns
46
+ {common_patterns}
47
+
48
+ ### Skills to Consider Adding
49
+ {skills_to_consider}
50
+
51
+ ---
52
+
53
+ ## Recent Applications
54
+
55
+ | Date | Skill | Phase | Plan | Result |
56
+ |------|-------|-------|------|--------|
57
+ {recent_applications_rows}
58
+
59
+ ---
60
+
61
+ ## Contribution Candidates
62
+
63
+ Skills discovered during this project that should be contributed to the global library:
64
+
65
+ {contribution_candidates}
66
+
67
+ ---
68
+
69
+ ## Skills Search Quick Commands
70
+
71
+ ```bash
72
+ # Search for database patterns
73
+ /fire-search "database performance"
74
+
75
+ # Search for security solutions
76
+ /fire-search "authentication"
77
+
78
+ # Search for API patterns
79
+ /fire-search "pagination REST"
80
+
81
+ # View skill details
82
+ /fire-search "select:database-solutions/n-plus-1"
83
+
84
+ # View skill history
85
+ /fire-skills-history database-solutions/n-plus-1
86
+
87
+ # Sync with global library
88
+ /fire-skills-sync --both
89
+ ```
90
+
91
+ ---
92
+
93
+ ## Category Index
94
+
95
+ ### database-solutions/
96
+ {database_solutions_list}
97
+
98
+ ### api-patterns/
99
+ {api_patterns_list}
100
+
101
+ ### security/
102
+ {security_list}
103
+
104
+ ### performance/
105
+ {performance_list}
106
+
107
+ ### frontend/
108
+ {frontend_list}
109
+
110
+ ### testing/
111
+ {testing_list}
112
+
113
+ ### infrastructure/
114
+ {infrastructure_list}
115
+
116
+ ### automation/
117
+ {automation_list}
118
+
119
+ ### deployment-security/
120
+ {deployment_security_list}
121
+
122
+ ### patterns-standards/
123
+ {patterns_standards_list}
124
+
125
+ ### form-solutions/
126
+ {form_solutions_list}
127
+
128
+ ### document-processing/
129
+ {document_processing_list}
130
+
131
+ ### video-media/
132
+ {video_media_list}
133
+
134
+ ### integrations/
135
+ {integrations_list}
136
+
137
+ ### methodology/
138
+ {methodology_list}
139
+
140
+ ---
141
+
142
+ ## Analytics Summary
143
+
144
+ ### Usage Over Time
145
+ ```
146
+ {usage_timeline_ascii}
147
+ ```
148
+
149
+ ### Category Distribution
150
+ ```
151
+ {category_distribution_ascii}
152
+ ```
153
+
154
+ ---
155
+
156
+ *Index generated: {generated_timestamp}*
157
+ *Run `/fire-analytics` for detailed usage statistics*
@@ -0,0 +1,149 @@
1
+ # Verification Report: Phase {phase_number}
2
+
3
+ **Project:** {project_name}
4
+ **Phase:** {phase_number} - {phase_name}
5
+ **Date:** {verification_date}
6
+ **Verifier:** fire-verifier
7
+
8
+ ---
9
+
10
+ ## Summary
11
+
12
+ | Category | Score | Status |
13
+ |----------|-------|--------|
14
+ | Must-Haves | {musthave_passed}/{musthave_total} | {musthave_status} |
15
+ | WARRIOR Validation | {warrior_passed}/{warrior_total} | {warrior_status} |
16
+ | **Overall** | **{total_passed}/{total_total}** | **{overall_status}** |
17
+
18
+ ---
19
+
20
+ ## Must-Haves: {musthave_passed}/{musthave_total} {musthave_status_emoji}
21
+
22
+ ### Truths (Observable Behaviors)
23
+ {truths_checklist}
24
+
25
+ ### Artifacts (File Verification)
26
+ {artifacts_checklist}
27
+
28
+ ### Key Links (Component Wiring)
29
+ {key_links_checklist}
30
+
31
+ ---
32
+
33
+ ## WARRIOR Validation: {warrior_passed}/{warrior_total} {warrior_status_emoji}
34
+
35
+ ### Code Quality ({code_quality_passed}/{code_quality_total}) {code_quality_emoji}
36
+ - [ ] Project builds without errors
37
+ - [ ] No TypeScript errors (`npx tsc --noEmit`)
38
+ - [ ] ESLint compliance (`npx eslint . --ext .ts,.tsx`)
39
+ - [ ] No console.logs in production code
40
+ - [ ] Code comments present (why, not what)
41
+ - [ ] Functions have JSDoc/TSDoc where appropriate
42
+
43
+ ### Testing ({testing_passed}/{testing_total}) {testing_emoji}
44
+ - [ ] Unit tests passing (`npm run test`)
45
+ - [ ] Integration tests passing (`npm run test:integration`)
46
+ - [ ] Test coverage >= {coverage_threshold}% (current: {current_coverage}%)
47
+ - [ ] Manual testing complete
48
+ - [ ] E2E tests passing (if applicable)
49
+
50
+ ### Security ({security_passed}/{security_total}) {security_emoji}
51
+ - [ ] No hardcoded credentials in code
52
+ - [ ] No secrets in git history
53
+ - [ ] Input validation implemented
54
+ - [ ] SQL injection prevention (parameterized queries)
55
+ - [ ] XSS protection (output encoding)
56
+ - [ ] HTTPS enforced in production
57
+ - [ ] CORS configured properly
58
+ - [ ] Rate limiting active on public endpoints
59
+
60
+ ### Performance ({performance_passed}/{performance_total}) {performance_emoji}
61
+ - [ ] Page load times < 2s (LCP)
62
+ - [ ] Database queries optimized (no N+1)
63
+ - [ ] Proper indexes on frequently queried columns
64
+ - [ ] No memory leaks detected
65
+ - [ ] API response times < 200ms (p95)
66
+ - [ ] Bundle size within limits
67
+
68
+ ### Database ({database_passed}/{database_total}) {database_emoji}
69
+ - [ ] Migrations applied successfully
70
+ - [ ] Schema matches expected state
71
+ - [ ] Indexes created for foreign keys
72
+ - [ ] Proper constraints (NOT NULL, UNIQUE)
73
+ - [ ] Seed data available for testing
74
+
75
+ ### API Design ({api_passed}/{api_total}) {api_emoji}
76
+ - [ ] RESTful conventions followed
77
+ - [ ] Proper HTTP status codes
78
+ - [ ] Error responses are informative
79
+ - [ ] Versioning in place (/v1/, /v2/)
80
+ - [ ] Rate limiting headers present
81
+ - [ ] API documentation updated
82
+
83
+ ### Infrastructure ({infra_passed}/{infra_total}) {infra_emoji}
84
+ - [ ] Environment variables documented
85
+ - [ ] Docker configuration valid (if used)
86
+ - [ ] CI/CD pipeline passing
87
+ - [ ] Health check endpoint available
88
+
89
+ ### Documentation ({docs_passed}/{docs_total}) {docs_emoji}
90
+ - [ ] README updated with new features
91
+ - [ ] API documentation current
92
+ - [ ] Setup instructions accurate
93
+ - [ ] Changelog entry added
94
+
95
+ ---
96
+
97
+ ## Gaps Identified
98
+
99
+ {gaps_list}
100
+
101
+ ---
102
+
103
+ ## Automated Check Results
104
+
105
+ ### Code Quality Checks
106
+ ```
107
+ {code_quality_output}
108
+ ```
109
+
110
+ ### Test Results
111
+ ```
112
+ {test_output}
113
+ ```
114
+
115
+ ### Security Scan
116
+ ```
117
+ {security_scan_output}
118
+ ```
119
+
120
+ ### Performance Metrics
121
+ ```
122
+ {performance_metrics_output}
123
+ ```
124
+
125
+ ---
126
+
127
+ ## Recommendations
128
+
129
+ {recommendations}
130
+
131
+ ---
132
+
133
+ ## Verification Status: {final_status}
134
+
135
+ {final_recommendation}
136
+
137
+ ---
138
+
139
+ ## Sign-Off
140
+
141
+ - [ ] Must-Haves verified by: {pf_verifier}
142
+ - [ ] WARRIOR validation by: {warrior_verifier}
143
+ - [ ] Human review completed: {human_reviewer}
144
+ - [ ] Approved for: {approved_for}
145
+
146
+ ---
147
+
148
+ *Verification completed: {verification_timestamp}*
149
+ *Report generated by: fire-verifier agent*
@@ -0,0 +1,79 @@
1
+ # {project_name} Roadmap
2
+
3
+ ## Milestone: v{milestone_version} - {milestone_name}
4
+
5
+ **Target:** {milestone_target_date}
6
+ **Status:** {milestone_status}
7
+ **Progress:** [{progress_bar}] {progress_percent}%
8
+
9
+ ---
10
+
11
+ ## Phase Overview
12
+
13
+ | # | Phase | Status | Plans | Description |
14
+ |---|-------|--------|-------|-------------|
15
+ {phase_overview_rows}
16
+
17
+ ---
18
+
19
+ ## Phase Details
20
+
21
+ {phase_details}
22
+
23
+ ---
24
+
25
+ ## Dependencies
26
+
27
+ ```mermaid
28
+ graph TD
29
+ {dependency_graph}
30
+ ```
31
+
32
+ ---
33
+
34
+ ## Timeline
35
+
36
+ ```
37
+ {timeline_ascii}
38
+ ```
39
+
40
+ ---
41
+
42
+ ## Risk Assessment
43
+
44
+ | Risk | Impact | Mitigation | Status |
45
+ |------|--------|------------|--------|
46
+ {risk_rows}
47
+
48
+ ---
49
+
50
+ ## Success Criteria
51
+
52
+ ### Must-Haves (Required for v{milestone_version})
53
+ {must_haves_list}
54
+
55
+ ### Nice-to-Haves (Deferred if needed)
56
+ {nice_to_haves_list}
57
+
58
+ ---
59
+
60
+ ## Milestone Completion Checklist
61
+
62
+ - [ ] All phases completed
63
+ - [ ] All must-haves verified
64
+ - [ ] Dominion Flow validation passed
65
+ - [ ] WARRIOR 70-point validation passed
66
+ - [ ] Documentation updated
67
+ - [ ] Handoff created
68
+ - [ ] Ready for deployment/release
69
+
70
+ ---
71
+
72
+ ## Notes
73
+
74
+ {notes}
75
+
76
+ ---
77
+
78
+ *Created: {created_date}*
79
+ *Last updated: {last_updated}*