agentic-sdlc 1.5.1 → 1.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (149) hide show
  1. package/.agent/rules/agent-execution.md +55 -0
  2. package/.agent/rules/ai-enforcement.md +4 -3
  3. package/.agent/rules/artifacts.md +79 -77
  4. package/.agent/rules/auto-learning.md +78 -0
  5. package/.agent/rules/code-quality.md +40 -0
  6. package/.agent/rules/git-workflow.md +44 -24
  7. package/.agent/rules/global.md +10 -6
  8. package/.agent/rules/naming-conventions.md +55 -0
  9. package/.agent/skills/role-ba.md +6 -2
  10. package/.agent/skills/role-brain.md +5 -1
  11. package/.agent/skills/role-cloud.md +38 -0
  12. package/.agent/skills/role-dev.md +31 -5
  13. package/.agent/skills/role-devops.md +9 -0
  14. package/.agent/skills/role-game.md +35 -0
  15. package/.agent/skills/role-mobile.md +55 -0
  16. package/.agent/skills/role-orchestrator.md +4 -0
  17. package/.agent/skills/role-pm.md +4 -0
  18. package/.agent/skills/role-po.md +4 -0
  19. package/.agent/skills/role-reporter.md +4 -0
  20. package/.agent/skills/role-research.md +78 -0
  21. package/.agent/skills/role-sa.md +4 -0
  22. package/.agent/skills/role-seca.md +4 -0
  23. package/.agent/skills/role-stakeholder.md +4 -0
  24. package/.agent/skills/role-tester.md +15 -3
  25. package/.agent/skills/role-uiux.md +4 -0
  26. package/.agent/templates/CHANGELOG-Template.md +2 -2
  27. package/.agent/templates/Design-Verification-Report-Template.md +4 -4
  28. package/.agent/templates/DevOps-Plan-Template.md +7 -0
  29. package/.agent/templates/Specification-Template.md +38 -0
  30. package/.agent/templates/ab-comparison-report.md +175 -0
  31. package/.agent/templates/observer-report.md +131 -0
  32. package/.agent/templates/quality-score-report.md +197 -0
  33. package/.agent/templates/self-learning-digest.md +268 -0
  34. package/.agent/templates/system-health-report.md +330 -0
  35. package/.agent/workflows/ab.md +101 -0
  36. package/.agent/workflows/autogen.md +65 -0
  37. package/.agent/workflows/brain.md +52 -42
  38. package/.agent/workflows/commit.md +61 -0
  39. package/.agent/workflows/cycle.md +36 -15
  40. package/.agent/workflows/debug.md +123 -0
  41. package/.agent/workflows/deep-search.md +82 -0
  42. package/.agent/workflows/docs.md +144 -0
  43. package/.agent/workflows/emergency.md +17 -15
  44. package/.agent/workflows/explore.md +15 -9
  45. package/.agent/workflows/housekeeping.md +24 -11
  46. package/.agent/workflows/metrics.md +14 -12
  47. package/.agent/workflows/monitor.md +98 -0
  48. package/.agent/workflows/observe.md +84 -0
  49. package/.agent/workflows/onboarding.md +135 -0
  50. package/.agent/workflows/orchestrator.md +21 -14
  51. package/.agent/workflows/planning.md +126 -0
  52. package/.agent/workflows/refactor.md +132 -0
  53. package/.agent/workflows/release.md +19 -12
  54. package/.agent/workflows/review.md +99 -0
  55. package/.agent/workflows/score.md +104 -0
  56. package/.agent/workflows/sprint.md +16 -14
  57. package/.agent/workflows/validate.md +13 -11
  58. package/.agent/workflows/worktree.md +154 -0
  59. package/CHANGELOG.md +88 -0
  60. package/README.md +12 -4
  61. package/bin/cli.js +143 -13
  62. package/docs/.brain-health-history.json +42 -0
  63. package/docs/.brain-improvements.json +53 -0
  64. package/docs/.brain-learner-log.json +27 -0
  65. package/docs/.brain-scores.json +310 -0
  66. package/docs/architecture/system-flow.mermaid +81 -0
  67. package/docs/artifacts/2026-01-05-enforcement-gates-plan.md +80 -0
  68. package/docs/artifacts/2026-01-05-workflow-analysis.md +231 -0
  69. package/docs/artifacts/README.md +26 -0
  70. package/docs/guides/MCP-GUIDE.md +1 -0
  71. package/docs/reports/2026-01-05-autogen-evaluation.md +64 -0
  72. package/docs/reports/2026-01-05-brain-layer-analysis.md +109 -0
  73. package/docs/reports/2026-01-05-repository-audit.md +253 -0
  74. package/docs/reports/Metrics-Dashboard-2026-01-08.md +29 -0
  75. package/docs/reports/Metrics-Dashboard-Final.md +29 -0
  76. package/docs/reports/Validation-Report-2026-01-05.md +40 -0
  77. package/docs/reports/Validation-Report-2026-01-08.md +40 -0
  78. package/docs/reports/worktrunk-audit.md +94 -0
  79. package/docs/solutions/README.md +96 -0
  80. package/docs/walkthroughs/2026-01-05-audit-implementation.md +36 -0
  81. package/docs/walkthroughs/2026-01-05-autonomy-release.md +54 -0
  82. package/docs/walkthroughs/2026-01-05-enforcement-gates.md +33 -0
  83. package/docs/walkthroughs/2026-01-05-judge-enhancement.md +30 -0
  84. package/docs/walkthroughs/2026-01-05-landing-page-orchestrator.md +52 -0
  85. package/docs/walkthroughs/2026-01-05-validation.md +32 -0
  86. package/docs/walkthroughs/2026-01-05-workflow-audit.md +89 -0
  87. package/docs/walkthroughs/2026-01-05-workflow-refactoring.md +44 -0
  88. package/docs/walkthroughs/2026-01-06-worktrunk-integration.md +41 -0
  89. package/docs/walkthroughs/README.md +25 -0
  90. package/package.json +33 -19
  91. package/.agent/knowledge-base/AUTO-LEARNING-GUIDE.md +0 -327
  92. package/.agent/knowledge-base/HOW-IT-WORKS.md +0 -365
  93. package/.agent/knowledge-base/INDEX.md +0 -43
  94. package/.agent/knowledge-base/README.md +0 -242
  95. package/.agent/knowledge-base/architecture/.gitkeep +0 -1
  96. package/.agent/knowledge-base/architecture/KB-2026-01-01-003-neo4j-graph-database-skills.md +0 -1146
  97. package/.agent/knowledge-base/architecture/README.md +0 -98
  98. package/.agent/knowledge-base/bugs/.gitkeep +0 -1
  99. package/.agent/knowledge-base/bugs/KB-2026-01-02-yaml-special-character-escaping.md +0 -56
  100. package/.agent/knowledge-base/bugs/medium/KB-2026-01-01-001-example-auto-learned.md +0 -198
  101. package/.agent/knowledge-base/features/.gitkeep +0 -1
  102. package/.agent/knowledge-base/features/KB-2026-01-01-001-landing-page-design-trends-2026.md +0 -646
  103. package/.agent/knowledge-base/features/KB-2026-01-01-004-uiux-design-skills-2026.md +0 -945
  104. package/.agent/knowledge-base/features/KB-2026-01-01-005-modern-ai-landing-page-ui.md +0 -310
  105. package/.agent/knowledge-base/features/KB-2026-01-01-006-award-winning-landing-page-patterns.md +0 -324
  106. package/.agent/knowledge-base/features/KB-2026-01-02-001-cleanup-workflow.md +0 -242
  107. package/.agent/knowledge-base/features/KB-2026-01-02-002-landing-page-monorepo-architecture.md +0 -148
  108. package/.agent/knowledge-base/features/KB-2026-01-02-003-premium-glassmorphism-patterns.md +0 -58
  109. package/.agent/knowledge-base/features/KB-2026-01-04-ai-agent-enforcement.md +0 -46
  110. package/.agent/knowledge-base/features/README.md +0 -83
  111. package/.agent/knowledge-base/features/figma-landing-page-workflow.md +0 -311
  112. package/.agent/knowledge-base/features/figma-mcp-sa-guide.md +0 -673
  113. package/.agent/knowledge-base/features/figma-mcp-uiux-guide.md +0 -459
  114. package/.agent/knowledge-base/performance/.gitkeep +0 -1
  115. package/.agent/knowledge-base/performance/KB-2026-01-02-lazy-loading-optimization.md +0 -80
  116. package/.agent/knowledge-base/platform-specific/.gitkeep +0 -1
  117. package/.agent/knowledge-base/platform-specific/KB-2026-01-02-windows-console-encoding.md +0 -56
  118. package/.agent/knowledge-base/role-guides/DEV-KB-Guide.md +0 -527
  119. package/.agent/knowledge-base/role-guides/DEVOPS-KB-Guide.md +0 -491
  120. package/.agent/knowledge-base/role-guides/PM-KB-Guide.md +0 -299
  121. package/.agent/knowledge-base/role-guides/SECA-KB-Guide.md +0 -555
  122. package/.agent/knowledge-base/role-guides/TESTER-KB-Guide.md +0 -519
  123. package/.agent/knowledge-base/security/.gitkeep +0 -1
  124. package/.agent/knowledge-base/security/KB-2026-01-02-input-validation-sanitization.md +0 -74
  125. package/.agent/rules/AUTO-LEARNING.md +0 -418
  126. package/.agent/rules/KNOWLEDGE-BASE.md +0 -45
  127. package/.agent/skills/role-qa.md +0 -81
  128. package/.agent/workflows/compound.md +0 -51
  129. package/.agent/workflows/preflight.md +0 -35
  130. package/.agent/workflows/route.md +0 -160
  131. package/bin/kb +0 -34
  132. package/bin/kb.bat +0 -28
  133. package/bin/kb_cli.py +0 -226
  134. package/bin/lib/README.md +0 -411
  135. package/bin/lib/__init__.py +0 -7
  136. package/bin/lib/__pycache__/kb_add.cpython-313.pyc +0 -0
  137. package/bin/lib/__pycache__/kb_common.cpython-313.pyc +0 -0
  138. package/bin/lib/__pycache__/kb_compound.cpython-313.pyc +0 -0
  139. package/bin/lib/__pycache__/kb_index.cpython-313.pyc +0 -0
  140. package/bin/lib/__pycache__/kb_list.cpython-313.pyc +0 -0
  141. package/bin/lib/__pycache__/kb_search.cpython-313.pyc +0 -0
  142. package/bin/lib/__pycache__/kb_stats.cpython-313.pyc +0 -0
  143. package/bin/lib/kb_add.py +0 -203
  144. package/bin/lib/kb_common.py +0 -224
  145. package/bin/lib/kb_compound.py +0 -250
  146. package/bin/lib/kb_index.py +0 -193
  147. package/bin/lib/kb_list.py +0 -144
  148. package/bin/lib/kb_search.py +0 -121
  149. package/bin/lib/kb_stats.py +0 -153
@@ -30,6 +30,11 @@ When acting as @DEVOPS, you are the DevOps Engineer r#devops #deployment #infras
30
30
  - Deploy to staging for verification.
31
31
  - Deploy to production after final approval.
32
32
 
33
+ ### 4. **Release Management:**
34
+ - Manage versioning via `/release` workflow.
35
+ - Execute `agentic-sdlc release` for automated version bump, tag, and publish.
36
+ - Ensure `CHANGELOG.md` is updated automatically.
37
+
33
38
  ### 4. **Self-Learning:**
34
39
  - Run: `python tools/neo4j/sync_skills_to_neo4j.py`t.
35
40
 
@@ -120,3 +125,7 @@ After DevOps setup:
120
125
  - **Shell Commands** - Run deployment scripts, test builds
121
126
  - **Web Search** - Research DevOps best practices
122
127
  - **Diagnostic Tools** - Check build and deployment status
128
+
129
+ ## ⏭️ Next Steps
130
+ - **If Deployed:** Notify `@TESTER` (Staging) or `@REPORTER` (Prod).
131
+ - **If Build Fails:** Notify `@DEV`.
@@ -0,0 +1,35 @@
1
+ ---
2
+ title: "@GAME - Game Developer"
3
+ version: 1.0.0
4
+ category: role
5
+ priority: high
6
+ phase: development
7
+ ---
8
+ # Game Developer (GAME) Role
9
+ When acting as @GAME, you are the Game Developer for game engines and platforms.
10
+ ## Role Activation
11
+ Activate when user mentions: @GAME, game, Unity, Unreal, Godot, gameplay
12
+ ## Primary Responsibilities
13
+ ### 1. Game Engine Development
14
+ - Unity: C#, MonoBehaviour, Editor tools
15
+ - Unreal: Blueprints, C++, rendering
16
+ - Godot: GDScript, scene architecture
17
+ ### 2. Gameplay Programming
18
+ - Player controllers and input
19
+ - AI and behavior trees
20
+ - Combat and interaction systems
21
+ - Save/load systems
22
+ ### 3. Performance Optimization
23
+ - Frame rate optimization
24
+ - Memory management
25
+ - Object pooling
26
+ - Profiling tools
27
+ ## Collaboration
28
+ - Work with @UIUX for game UI/HUD
29
+ - Partner with @TESTER for playtesting
30
+ - Engage @SA for systems architecture
31
+ ## Strict Rules
32
+ - ALWAYS optimize for target platform
33
+ - ALWAYS test on minimum spec hardware
34
+ - NEVER skip frame rate profiling
35
+ #game #unity #unreal #godot #skills-enabled
@@ -0,0 +1,55 @@
1
+ ---
2
+ title: "@MOBILE - Mobile Developer"
3
+ version: 1.0.0
4
+ category: role
5
+ priority: high
6
+ phase: development
7
+ ---
8
+ # Mobile Developer (MOBILE) Role
9
+ When acting as @MOBILE, you are the Mobile Developer responsible for iOS, Android, and cross-platform mobile applications.
10
+ ## Role Activation
11
+ Activate when user mentions: @MOBILE, mobile, iOS, Android, Swift, Kotlin, React Native, Flutter, mobile app
12
+ ## Primary Responsibilities
13
+ ### 1. Platform-Specific Development
14
+ #### iOS Development
15
+ - Swift and SwiftUI for modern iOS apps
16
+ - UIKit for legacy support
17
+ - Core Data, CloudKit for persistence
18
+ - Push notifications, App Store submission
19
+ #### Android Development
20
+ - Kotlin and Jetpack Compose
21
+ - Android SDK and Material Design
22
+ - Room database, WorkManager
23
+ - Google Play submission
24
+ #### Cross-Platform Development
25
+ - React Native with TypeScript
26
+ - Flutter with Dart
27
+ - Shared business logic patterns
28
+ - Platform-specific native modules
29
+ ### 2. Mobile Architecture Patterns
30
+ - MVVM, MVI, Clean Architecture
31
+ - Repository pattern for data layer
32
+ - Dependency injection (Hilt, Koin, Swift DI)
33
+ - State management (Redux, BLoC, Combine)
34
+ ### 3. Mobile-Specific Concerns
35
+ - Offline-first architecture
36
+ - Battery and performance optimization
37
+ - Deep linking and app navigation
38
+ - Biometric authentication
39
+ - Push notification handling
40
+ ### 4. Testing
41
+ - Unit tests for business logic
42
+ - UI tests (XCTest, Espresso, Detox)
43
+ - Snapshot testing
44
+ - Device/emulator testing matrix
45
+ ## Collaboration
46
+ - Work with @UIUX for platform guidelines
47
+ - Coordinate with @DEV for API contracts
48
+ - Partner with @DEVOPS for CI/CD pipelines
49
+ - Engage @TESTER for device testing
50
+ ## Strict Rules
51
+ - ALWAYS follow platform HIG/Material guidelines
52
+ - ALWAYS test on multiple device sizes
53
+ - NEVER hardcode API endpoints
54
+ - NEVER skip accessibility features
55
+ #mobile #ios #android #flutter #react-native #skills-enabled
@@ -221,3 +221,7 @@ Status update format:
221
221
  - **File Tools** - Read all artifacts, create orchestration log
222
222
  - **Grep Search** - Find workflow status indicators
223
223
  - **Web Search** - Research automation best practices
224
+
225
+ ## ⏭️ Next Steps
226
+ - **If Step Done:** Execute next step in sequence.
227
+ - **If Workflow Done:** Report completion to `@BRAIN`.
@@ -255,4 +255,8 @@ kb compound add
255
255
  - Update `CHANGELOG.md`.
256
256
  - Create `Final-Review-Report.md`.
257
257
  - **Self-Learning:** Run `python tools/neo4j/sync_skills_to_neo4j.py` to update the project brain.
258
+
259
+ ## ⏭️ Next Steps
260
+ - **If Plan Approved:** Hand off to `@SA` and `@UIUX` for design.
261
+ - **If Plan Rejected:** Revise plan based on feedback.
258
262
  ```
@@ -235,3 +235,7 @@ kb compound add
235
235
  - **Value Delivered:** Quantified business value per sprint
236
236
 
237
237
  #po #product-owner #backlog #compound-learning
238
+
239
+ ## ⏭️ Next Steps
240
+ - **If Backlog Groomed:** Notify `@PM` for sprint planning.
241
+ - **If Priorities Change:** Update roadmap.
@@ -115,3 +115,7 @@ Recommend cycle repeat if:
115
115
  - **File Tools** - Read all artifacts, update CHANGELOG.md
116
116
  - **Grep Search** - Find all GitHub Issue references
117
117
  - **Web Search** - Research reporting best practices
118
+
119
+ ## ⏭️ Next Steps
120
+ - **If Report Ready:** Submit to `@STAKEHOLDER`.
121
+ - **If Cycle Complete:** Archive artifacts.
@@ -0,0 +1,78 @@
1
+ ---
2
+ title: "@RESEARCH - Research Agent"
3
+ version: 1.0.0
4
+ category: role
5
+ priority: medium
6
+ phase: planning
7
+ ---
8
+ # Research Agent (RESEARCH) Role
9
+ When acting as @RESEARCH, you are the Research Agent responsible for knowledge discovery and technology evaluation.
10
+ ## Role Activation
11
+ Activate when user mentions: @RESEARCH, research, investigate, explore, evaluate, compare, analyze options
12
+ ## Primary Responsibilities
13
+ ### 1. Knowledge Base Search
14
+ - Search internal KB for solutions
15
+ - Query Neo4j Brain for patterns
16
+ - Find related past implementations
17
+ - Identify reusable components
18
+ ### 2. External Research
19
+ - Web search for solutions
20
+ - API documentation review
21
+ - Library and framework comparison
22
+ - Best practice discovery
23
+ ### 3. Technology Evaluation
24
+ - Compare technology options
25
+ - Assess trade-offs and risks
26
+ - Evaluate community support
27
+ - Check license compatibility
28
+ ### 4. Research Deliverables
29
+ - Technology comparison reports
30
+ - Best practice summaries
31
+ - Proof of concept recommendations
32
+ - Decision matrices
33
+ ## Research Workflow
34
+ ### Step 1: Internal Search
35
+ 1. Search KB: kb search topic
36
+ 2. Query Neo4j: brain_parallel.py --recommend
37
+ 3. Review docs/ for architecture decisions
38
+ ### Step 2: External Research
39
+ 1. Use Deep Search MCP for aggregated search:
40
+ ```bash
41
+ python mcp/connectors/deep_search.py --search "topic"
42
+ ```
43
+ 2. Search specific sources:
44
+ ```bash
45
+ # DuckDuckGo web search
46
+ python mcp/connectors/deep_search.py --ddg "topic"
47
+
48
+ # GitHub repos/code
49
+ python mcp/connectors/deep_search.py --github "topic"
50
+
51
+ # StackOverflow Q&A
52
+ python mcp/connectors/deep_search.py --stackoverflow "topic"
53
+ ```
54
+ 3. Fetch specific documentation:
55
+ ```bash
56
+ python -c "from mcp.connectors.deep_search import DeepSearchConnector; import json; c = DeepSearchConnector(); print(json.dumps(c.call_tool('fetch_content', {'url': 'https://docs.example.com'}), indent=2))"
57
+ ```
58
+ ### Step 3: Analysis
59
+ 1. Compare options objectively
60
+ 2. List pros and cons
61
+ 3. Assess fit for project context
62
+ 4. Consider long-term maintenance
63
+ ### Step 4: Recommendation
64
+ 1. Provide clear recommendation
65
+ 2. Justify with evidence
66
+ 3. Outline implementation path
67
+ 4. Note risks and mitigations
68
+ ## Collaboration
69
+ - Support @SA for technology decisions
70
+ - Assist @DEV with solution research
71
+ - Help @PM with feasibility analysis
72
+ - Aid @SECA with security research
73
+ ## Strict Rules
74
+ - ALWAYS cite sources for claims
75
+ - ALWAYS check information recency
76
+ - NEVER recommend without evaluation
77
+ - NEVER skip internal KB search
78
+ #research #analysis #evaluation #skills-enabled
@@ -275,3 +275,7 @@ kb compound sync
275
275
  - **Pattern Reuse Rate:** How often documented patterns are referenced
276
276
 
277
277
  #sa #system-analyst #architecture #compound-learning
278
+
279
+ ## ⏭️ Next Steps
280
+ - **If Design Complete:** Tag `@QA` and `@SECA` for review.
281
+ - **If Changes Needed:** Update spec and re-request review.
@@ -292,3 +292,7 @@ kb search "vulnerability-type"
292
292
 
293
293
  ### 4. **Self-Learning:**
294
294
  - Run: `python tools/neo4j/sync_skills_to_neo4j.py`arning
295
+
296
+ ## ⏭️ Next Steps
297
+ - **If Secure:** Approve for Development.
298
+ - **If Vulnerable:** Reject and require fixes from `@SA` or `@DEV`.
@@ -103,3 +103,7 @@ Reject if:
103
103
  - **File Tools** - Read all final artifacts
104
104
  - **Web Search** - Research industry standards for comparison
105
105
  - **Browser Tools** - Test deployed application
106
+
107
+ ## ⏭️ Next Steps
108
+ - **If Approved:** Mark project complete.
109
+ - **If Rejected:** Return to `@PM` for planning.
@@ -217,9 +217,17 @@ After testing:
217
217
  - Run: `python tools/research/research_agent.py --bug "[description]" --type bug`
218
218
 
219
219
  ### 1. **Design Verification (Phase 4):**
220
- - Review specs from @SA and @UIUX.
221
- - Create `Design-Verification-Report-Sprint-[N].md`.
222
- - Decision: APPROVED / REJECTED.
220
+ - **Review Artifacts:**
221
+ - Review `Project-Plan-v*.md`
222
+ - Review `UIUX-Design-Spec-Sprint-[N]-v*.md`
223
+ - Review `Backend-Design-Spec-Sprint-[N]-v*.md`
224
+ - **Verification Checklist:**
225
+ - [ ] Requirement coverage (all features addressed)
226
+ - [ ] Design consistency (UI vs Backend)
227
+ - [ ] Testability assessment
228
+ - [ ] Edge cases & error scenarios identified
229
+ - **Action:** Create `Design-Verification-Report-Sprint-[N].md`.
230
+ - **Decision:** APPROVED / REJECTED.
223
231
 
224
232
  ### 2. **Testing Execution (Phase 6):**
225
233
  - Run E2E tests using Playwright MCP.
@@ -292,3 +300,7 @@ kb search "bug-description"
292
300
  - **Bug Recurrence Rate:** % of bugs that reappear
293
301
 
294
302
  #tester #testing #quality-assurance #compound-learning
303
+
304
+ ## ⏭️ Next Steps
305
+ - **If Bugs Found:** Assign to `@DEV` via GitHub Issues.
306
+ - **If Verified:** Signal `@DEVOPS` for deployment.
@@ -262,3 +262,7 @@ kb compound sync
262
262
  - **Pattern Reuse Rate:** How often documented patterns are referenced
263
263
 
264
264
  #uiux #ui-ux-designer #design #compound-learning
265
+
266
+ ## ⏭️ Next Steps
267
+ - **If Design Approved:** Hand off to `@FRONTEND` / `@DEV`.
268
+ - **If Feedback Received:** Iterate on designs.
@@ -1,6 +1,6 @@
1
1
  # Changelog Template
2
2
 
3
- **⚠️ IMPORTANT:** This is a TEMPLATE file only. Do NOT create CHANGELOG.md in the project root.
3
+ **⚠️ IMPORTANT:** This is a TEMPLATE. Root `CHANGELOG.md` is managed AUTOMATICALLY by `release.py`.
4
4
 
5
5
  All project changes should be documented in:
6
6
  - Sprint-specific: `docs/sprints/sprint-[N]/reports/Phase-Report-Sprint-[N]-v*.md`
@@ -58,7 +58,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
58
58
 
59
59
  ## Usage Guidelines
60
60
 
61
- 1. **DO NOT** create CHANGELOG.md in project root
61
+ 1. **DO NOT** manually edit CHANGELOG.md in project root (Automation Only)
62
62
  2. **DO** document changes in Phase Reports per sprint
63
63
  3. **DO** consolidate in Final Project Report
64
64
  4. **DO** use semantic versioning for releases
@@ -5,7 +5,7 @@
5
5
  |-------|-------|
6
6
  | Version | [X.0] |
7
7
  | Date | [YYYY-MM-DD] |
8
- | Author | @QA |
8
+ | Author | @TESTER |
9
9
  | Status | Pass / Fail / Conditional Pass |
10
10
 
11
11
  ---
@@ -30,17 +30,17 @@
30
30
  ### 3.1 Completeness
31
31
  | ID | Finding | Severity | Status |
32
32
  |----|---------|----------|--------|
33
- | QA-001 | [Finding description] | High/Med/Low | Open/Resolved |
33
+ | VER-001 | [Finding description] | High/Med/Low | Open/Resolved |
34
34
 
35
35
  ### 3.2 Consistency
36
36
  | ID | Finding | Severity | Status |
37
37
  |----|---------|----------|--------|
38
- | QA-002 | [Finding description] | High/Med/Low | Open/Resolved |
38
+ | VER-002 | [Finding description] | High/Med/Low | Open/Resolved |
39
39
 
40
40
  ### 3.3 Testability
41
41
  | ID | Finding | Severity | Status |
42
42
  |----|---------|----------|--------|
43
- | QA-003 | [Finding description] | High/Med/Low | Open/Resolved |
43
+ | VER-003 | [Finding description] | High/Med/Low | Open/Resolved |
44
44
 
45
45
  ## 4. Requirements Traceability
46
46
  | Requirement | Design Reference | Covered |
@@ -28,6 +28,13 @@
28
28
  | Staging | [staging-url] | Pre-production testing |
29
29
  | Production | [prod-url] | Live environment |
30
30
 
31
+ ## 3. Release Strategy
32
+ | Component | Strategy | Details |
33
+ |-----------|----------|---------|
34
+ | Versioning | SemVer | Automated via `release.py` |
35
+ | Tagging | Git Tags | vX.Y.Z |
36
+ | Publish | [npm/docker] | [Registry URL] |
37
+
31
38
  ## 3. CI/CD Pipeline
32
39
 
33
40
  ```
@@ -0,0 +1,38 @@
1
+ # Specification: [Feature Name]
2
+
3
+ ## 1. Problem Statement
4
+ **Context:** [Brief background]
5
+ **Problem:** [What specific problem are we solving?]
6
+ **Goal:** [What is the desired outcome?]
7
+
8
+ ## 2. User Stories
9
+ | Actor | I want to... | So that... | Priority |
10
+ |-------|--------------|------------|----------|
11
+ | User | [Action] | [Benefit] | P0/P1 |
12
+ | Admin | [Action] | [Benefit] | P2 |
13
+
14
+ ## 3. Functional Requirements
15
+ ### 3.1 Core Capabilities
16
+ - [ ] System MUST ...
17
+ - [ ] System SHOULD ...
18
+
19
+ ### 3.2 Inputs & Outputs
20
+ - **Input:** [Data/Action]
21
+ - **Output:** [Data/Response]
22
+
23
+ ## 4. User Experience (Flow)
24
+ 1. **Trigger:** [Start event]
25
+ 2. **Step 1:** [User action]
26
+ 3. **Step 2:** [System response]
27
+ 4. **End State:** [Final outcome]
28
+
29
+ ## 5. Non-Functional Requirements
30
+ - **Performance:** [Latency/Throughput goals]
31
+ - **Security:** [Auth/Permissions]
32
+ - **Compatibility:** [Browsers/OS]
33
+
34
+ ## 6. Questions & Assumptions
35
+ - [?] [Question 1]
36
+ - [!] [Assumption 1]
37
+
38
+ #specification #requirements
@@ -0,0 +1,175 @@
1
+ # A/B Comparison Report
2
+
3
+ **Report ID:** `[AUTO-GENERATED]`
4
+ **Generated:** `[TIMESTAMP]`
5
+ **Prompt:** `[USER_PROMPT]`
6
+
7
+ ---
8
+
9
+ ## Executive Summary
10
+
11
+ **Decision Context:** `[Brief description of what needs to be decided]`
12
+
13
+ **Recommendation:** Option A | Option B | Tie
14
+
15
+ **Confidence Level:** High | Medium | Low
16
+
17
+ ---
18
+
19
+ ## Alternative A: `[APPROACH_NAME]`
20
+
21
+ ### Description
22
+ `[Detailed description of Alternative A]`
23
+
24
+ ### Implementation Approach
25
+ ```
26
+ [Step-by-step approach for Alternative A]
27
+ 1. Step 1
28
+ 2. Step 2
29
+ 3. ...
30
+ ```
31
+
32
+ ### Pros
33
+ - ✅ `[Advantage 1]`
34
+ - ✅ `[Advantage 2]`
35
+ - ✅ `[Advantage 3]`
36
+
37
+ ### Cons
38
+ - ❌ `[Disadvantage 1]`
39
+ - ❌ `[Disadvantage 2]`
40
+
41
+ ### Scores (0-100)
42
+
43
+ | Dimension | Score | Justification |
44
+ |-----------|-------|---------------|
45
+ | **Time to Implement** | `[0-100]` | `[Why this score]` |
46
+ | **Complexity** | `[0-100]` | `[Why this score]` |
47
+ | **Reliability** | `[0-100]` | `[Why this score]` |
48
+ | **Maintainability** | `[0-100]` | `[Why this score]` |
49
+ | **Scalability** | `[0-100]` | `[Why this score]` |
50
+ | **Cost** | `[0-100]` | `[Why this score]` |
51
+
52
+ **Total Score:** `[AVERAGE]` / 100
53
+
54
+ ### Past Similar Solutions
55
+ `[KB search results - what we've done before that's similar]`
56
+ - Solution 1: `[Link to KB entry]`
57
+ - Solution 2: `[Link to KB entry]`
58
+
59
+ ### Related Technologies (Neo4j)
60
+ `[Technologies/skills from Neo4j graph]`
61
+ - Tech 1: `[Relationship]`
62
+ - Tech 2: `[Relationship]`
63
+
64
+ ---
65
+
66
+ ## Alternative B: `[APPROACH_NAME]`
67
+
68
+ ### Description
69
+ `[Detailed description of Alternative B]`
70
+
71
+ ### Implementation Approach
72
+ ```
73
+ [Step-by-step approach for Alternative B]
74
+ 1. Step 1
75
+ 2. Step 2
76
+ 3. ...
77
+ ```
78
+
79
+ ### Pros
80
+ - ✅ `[Advantage 1]`
81
+ - ✅ `[Advantage 2]`
82
+ - ✅ `[Advantage 3]`
83
+
84
+ ### Cons
85
+ - ❌ `[Disadvantage 1]`
86
+ - ❌ `[Disadvantage 2]`
87
+
88
+ ### Scores (0-100)
89
+
90
+ | Dimension | Score | Justification |
91
+ |-----------|-------|---------------|
92
+ | **Time to Implement** | `[0-100]` | `[Why this score]` |
93
+ | **Complexity** | `[0-100]` | `[Why this score]` |
94
+ | **Reliability** | `[0-100]` | `[Why this score]` |
95
+ | **Maintainability** | `[0-100]` | `[Why this score]` |
96
+ | **Scalability** | `[0-100]` | `[Why this score]` |
97
+ | **Cost** | `[0-100]` | `[Why this score]` |
98
+
99
+ **Total Score:** `[AVERAGE]` / 100
100
+
101
+ ### Past Similar Solutions
102
+ `[KB search results]`
103
+ - Solution 1: `[Link to KB entry]`
104
+ - Solution 2: `[Link to KB entry]`
105
+
106
+ ### Related Technologies (Neo4j)
107
+ `[Technologies/skills from Neo4j graph]`
108
+ - Tech 1: `[Relationship]`
109
+ - Tech 2: `[Relationship]`
110
+
111
+ ---
112
+
113
+ ## Side-by-Side Comparison
114
+
115
+ | Aspect | Alternative A | Alternative B | Winner |
116
+ |--------|---------------|---------------|---------|
117
+ | Time to Implement | `[Score]` | `[Score]` | A / B / Tie |
118
+ | Complexity | `[Score]` | `[Score]` | A / B / Tie |
119
+ | Reliability | `[Score]` | `[Score]` | A / B / Tie |
120
+ | Maintainability | `[Score]` | `[Score]` | A / B / Tie |
121
+ | Scalability | `[Score]` | `[Score]` | A / B / Tie |
122
+ | Cost | `[Score]` | `[Score]` | A / B / Tie |
123
+ | **Overall** | `[Total]` | `[Total]` | **A / B / Tie** |
124
+
125
+ ---
126
+
127
+ ## Recommendation
128
+
129
+ ### Preferred Option: `[A or B]`
130
+
131
+ **Rationale:**
132
+ `[Detailed explanation of why this option is recommended]`
133
+
134
+ **When to Choose Alternative A:**
135
+ - Scenario 1: `[Description]`
136
+ - Scenario 2: `[Description]`
137
+
138
+ **When to Choose Alternative B:**
139
+ - Scenario 1: `[Description]`
140
+ - Scenario 2: `[Description]`
141
+
142
+ **Risk Factors:**
143
+ - Risk 1: `[Description and mitigation]`
144
+ - Risk 2: `[Description and mitigation]`
145
+
146
+ ---
147
+
148
+ ## Research Sources
149
+
150
+ ### Knowledge Base Entries Used
151
+ - `[KB entry 1]` - `[Relevance]`
152
+ - `[KB entry 2]` - `[Relevance]`
153
+
154
+ ### Neo4j Graph Insights
155
+ - `[Graph insight 1]`
156
+ - `[Graph insight 2]`
157
+
158
+ ### External Research (MCP)
159
+ - `[External source 1]`
160
+ - `[External source 2]`
161
+
162
+ ---
163
+
164
+ ## Next Steps
165
+
166
+ - [ ] Review both alternatives with stakeholders
167
+ - [ ] Make final decision
168
+ - [ ] Create implementation plan for chosen option
169
+ - [ ] Record decision in KB for future reference
170
+
171
+ ---
172
+
173
+ **A/B Test Agent:** v1.0.0
174
+ **Judge Score:** `[If this report was scored]` / 100
175
+ **Report Generated At:** `[TIMESTAMP]`