agentic-sdlc 1.0.0 → 1.5.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 (227) hide show
  1. package/.agent/ide-integration/INTEGRATION-SUMMARY.md +309 -0
  2. package/.agent/ide-integration/KIRO-IDE.md +381 -0
  3. package/.agent/ide-integration/README.md +256 -209
  4. package/.agent/knowledge-base/AUTO-LEARNING-GUIDE.md +327 -0
  5. package/.agent/knowledge-base/HOW-IT-WORKS.md +365 -0
  6. package/.agent/knowledge-base/INDEX.md +43 -0
  7. package/.agent/knowledge-base/README.md +47 -7
  8. package/.agent/knowledge-base/architecture/KB-2026-01-01-003-neo4j-graph-database-skills.md +1146 -0
  9. package/.agent/knowledge-base/architecture/README.md +98 -0
  10. package/.agent/knowledge-base/bugs/KB-2026-01-02-yaml-special-character-escaping.md +56 -0
  11. package/.agent/knowledge-base/bugs/medium/KB-2026-01-01-001-example-auto-learned.md +198 -0
  12. package/.agent/knowledge-base/features/KB-2026-01-01-001-landing-page-design-trends-2026.md +646 -0
  13. package/.agent/knowledge-base/features/KB-2026-01-01-004-uiux-design-skills-2026.md +945 -0
  14. package/.agent/knowledge-base/features/KB-2026-01-01-005-modern-ai-landing-page-ui.md +310 -0
  15. package/.agent/knowledge-base/features/KB-2026-01-01-006-award-winning-landing-page-patterns.md +324 -0
  16. package/.agent/knowledge-base/features/KB-2026-01-02-001-cleanup-workflow.md +242 -0
  17. package/.agent/knowledge-base/features/KB-2026-01-02-002-landing-page-monorepo-architecture.md +148 -0
  18. package/.agent/knowledge-base/features/KB-2026-01-02-003-premium-glassmorphism-patterns.md +58 -0
  19. package/.agent/knowledge-base/features/KB-2026-01-04-ai-agent-enforcement.md +46 -0
  20. package/.agent/knowledge-base/features/README.md +83 -0
  21. package/.agent/knowledge-base/features/figma-landing-page-workflow.md +311 -0
  22. package/.agent/knowledge-base/features/figma-mcp-sa-guide.md +673 -0
  23. package/.agent/knowledge-base/features/figma-mcp-uiux-guide.md +459 -0
  24. package/.agent/knowledge-base/performance/KB-2026-01-02-lazy-loading-optimization.md +80 -0
  25. package/.agent/knowledge-base/platform-specific/KB-2026-01-02-windows-console-encoding.md +56 -0
  26. package/.agent/knowledge-base/role-guides/DEV-KB-Guide.md +527 -0
  27. package/.agent/knowledge-base/role-guides/DEVOPS-KB-Guide.md +491 -0
  28. package/.agent/knowledge-base/role-guides/PM-KB-Guide.md +299 -0
  29. package/.agent/knowledge-base/role-guides/SECA-KB-Guide.md +555 -0
  30. package/.agent/knowledge-base/role-guides/TESTER-KB-Guide.md +519 -0
  31. package/.agent/knowledge-base/security/KB-2026-01-02-input-validation-sanitization.md +74 -0
  32. package/.agent/rules/AUTO-LEARNING.md +418 -0
  33. package/.agent/rules/ai-enforcement.md +11 -0
  34. package/.agent/rules/artifacts.md +77 -58
  35. package/.agent/rules/git-workflow.md +25 -65
  36. package/.agent/rules/global.md +18 -13
  37. package/.agent/skills/role-ba.md +76 -0
  38. package/.agent/skills/role-brain.md +470 -0
  39. package/.agent/skills/role-dev.md +338 -0
  40. package/.agent/skills/role-devops.md +122 -0
  41. package/.agent/skills/role-orchestrator.md +223 -0
  42. package/.agent/skills/role-pm.md +258 -0
  43. package/.agent/skills/role-po.md +237 -0
  44. package/.agent/skills/role-qa.md +81 -0
  45. package/.agent/skills/role-reporter.md +117 -0
  46. package/.agent/skills/role-sa.md +277 -0
  47. package/.agent/skills/role-seca.md +294 -0
  48. package/.agent/skills/role-stakeholder.md +105 -0
  49. package/.agent/skills/role-tester.md +294 -0
  50. package/.agent/skills/role-uiux.md +264 -0
  51. package/.agent/templates/CHANGELOG-Template.md +83 -0
  52. package/.agent/templates/Knowledge-Entry-Template.md +3 -0
  53. package/.agent/workflows/brain.md +84 -53
  54. package/.agent/workflows/compound.md +51 -0
  55. package/.agent/workflows/cycle.md +61 -0
  56. package/.agent/workflows/emergency.md +114 -0
  57. package/.agent/workflows/explore.md +147 -0
  58. package/.agent/workflows/housekeeping.md +105 -0
  59. package/.agent/workflows/metrics.md +179 -0
  60. package/.agent/workflows/orchestrator.md +68 -0
  61. package/.agent/workflows/preflight.md +35 -0
  62. package/.agent/workflows/release.md +153 -0
  63. package/.agent/workflows/route.md +160 -0
  64. package/.agent/workflows/sprint.md +125 -0
  65. package/.agent/workflows/validate.md +146 -0
  66. package/CHANGELOG.md +349 -6
  67. package/README.md +171 -86
  68. package/bin/CROSS-PLATFORM-CLI.md +526 -0
  69. package/bin/README.md +525 -0
  70. package/bin/cli.js +65 -90
  71. package/bin/kb +34 -0
  72. package/bin/kb.bat +28 -0
  73. package/bin/kb_cli.py +226 -0
  74. package/bin/lib/README.md +411 -0
  75. package/bin/lib/__init__.py +7 -0
  76. package/bin/lib/__pycache__/kb_add.cpython-313.pyc +0 -0
  77. package/bin/lib/__pycache__/kb_common.cpython-313.pyc +0 -0
  78. package/bin/lib/__pycache__/kb_compound.cpython-313.pyc +0 -0
  79. package/bin/lib/__pycache__/kb_index.cpython-313.pyc +0 -0
  80. package/bin/lib/__pycache__/kb_list.cpython-313.pyc +0 -0
  81. package/bin/lib/__pycache__/kb_search.cpython-313.pyc +0 -0
  82. package/bin/lib/__pycache__/kb_stats.cpython-313.pyc +0 -0
  83. package/bin/lib/kb_add.py +203 -0
  84. package/bin/lib/kb_common.py +224 -0
  85. package/bin/lib/kb_compound.py +250 -0
  86. package/bin/lib/kb_index.py +193 -0
  87. package/bin/lib/kb_list.py +144 -0
  88. package/bin/lib/kb_search.py +121 -0
  89. package/bin/lib/kb_stats.py +153 -0
  90. package/docs/AGENT-MANAGEMENT-GUIDE.md +298 -0
  91. package/docs/ARCHITECTURE-OVERVIEW.md +350 -0
  92. package/docs/BRAIN-ARCHITECTURE.md +396 -0
  93. package/docs/COMPOUND-ENGINEERING-SETUP.md +326 -0
  94. package/docs/KNOWLEDGE-BASE-GUIDE.md +330 -0
  95. package/docs/KNOWLEDGE-BASE-SIMPLE.md +248 -0
  96. package/docs/MONOREPO-ARCHITECTURE.md +492 -0
  97. package/docs/PROJECT-DOCUMENTATION-INDEX.md +540 -0
  98. package/docs/SDLC-Diagram.md +235 -0
  99. package/docs/analysis/Workflow-Optimization-Diagram.md +524 -0
  100. package/docs/analysis/Workflows-Deep-Analysis-2026-01-03.md +604 -0
  101. package/docs/architecture/{brain.md → BRAIN.md} +1 -1
  102. package/docs/global/Master-Documentation.md +307 -0
  103. package/docs/global/reports/Final-Approval-Report.md +257 -0
  104. package/docs/guides/AUTO-LEARNING-COMPLETE-GUIDE.md +519 -0
  105. package/docs/guides/AUTO-LEARNING-SYSTEM.md +322 -0
  106. package/docs/guides/LEARNING-FLOW.md +0 -0
  107. package/docs/guides/MCP-QUICK-REFERENCE.md +104 -0
  108. package/docs/guides/MCP-SETUP.md +139 -0
  109. package/docs/guides/QUICK-START.md +4 -0
  110. package/docs/guides/ROLE-COMMUNICATION-SYSTEM.md +71 -0
  111. package/docs/reports/Metrics-Dashboard-2026-01-02.md +66 -0
  112. package/docs/reports/Metrics-Dashboard-2026-01-04.md +68 -0
  113. package/docs/reports/UIUX-Design-Skills-Research-Report-2026.md +91 -0
  114. package/docs/reports/Validation-Report-2026-01-04.md +23 -0
  115. package/docs/research-reports/research-20260103-101315.json +95 -0
  116. package/docs/research-reports/research-20260103-101315.md +78 -0
  117. package/docs/research-reports/research-20260103-183837.json +95 -0
  118. package/docs/research-reports/research-20260103-183837.md +78 -0
  119. package/docs/research-reports/research-20260103-190346.json +100 -0
  120. package/docs/research-reports/research-20260103-190346.md +83 -0
  121. package/docs/setup/{github-management.md → GITHUB-MANAGEMENT.md} +1 -1
  122. package/docs/setup/RESEARCH-AGENT-SETUP.md +575 -0
  123. package/docs/sprints/{sprint-github-issues.md → SPRINT-GITHUB-ISSUES.md} +1 -1
  124. package/docs/sprints/{sprint-leann-integration.md → SPRINT-LEANN-INTEGRATION.md} +1 -1
  125. package/docs/sprints/sprint-1/designs/Backend-Design-Spec-Sprint-1-v1.md +1206 -0
  126. package/docs/sprints/sprint-1/designs/System-Design-Spec-Sprint-1-v1.md +439 -0
  127. package/docs/sprints/sprint-1/designs/System-Design-Spec-v1.0.md +425 -0
  128. package/docs/sprints/sprint-1/designs/UIUX-Design-Spec-Sprint-1-v1.md +55 -0
  129. package/docs/sprints/sprint-1/designs/UIUX-Design-Spec-v1.0.md +644 -0
  130. package/docs/sprints/sprint-1/logs/DevOps-Plan-and-Log-Sprint-1-v1.md +253 -0
  131. package/docs/sprints/sprint-1/logs/Development-Log-Phase1.md +433 -0
  132. package/docs/sprints/sprint-1/logs/Development-Log-Sprint-1-v1.md +181 -0
  133. package/docs/sprints/sprint-1/logs/Development-Log-Sprint-1.md +548 -0
  134. package/docs/sprints/sprint-1/logs/Orchestration-Log-Sprint-1.md +46 -0
  135. package/docs/sprints/sprint-1/logs/Phase1-Summary.md +84 -0
  136. package/docs/sprints/sprint-1/plans/Product-Backlog-Sprint-1-v1.md +40 -0
  137. package/docs/sprints/sprint-1/plans/Product-Backlog-v1.0.md +613 -0
  138. package/docs/sprints/sprint-1/plans/Project-Plan-Sprint-1-v1.0.md +210 -0
  139. package/docs/sprints/sprint-1/plans/Project-Plan-Sprint-1-v1.md +377 -0
  140. package/docs/sprints/sprint-1/reports/Design-Verification-Report-v1.0.md +220 -0
  141. package/docs/sprints/sprint-1/reports/Phase-Report-Sprint-1-v1.md +238 -0
  142. package/docs/sprints/sprint-1/reports/Security-Review-Report-v1.0.md +285 -0
  143. package/docs/sprints/sprint-1/reports/Sprint-Report-Sprint-1.md +74 -0
  144. package/docs/sprints/sprint-1/reports/Test-Report-v1.0.md +346 -0
  145. package/docs/sprints/sprint-1/reviews/Design-Verification-Report.md +508 -0
  146. package/docs/sprints/sprint-1/reviews/Security-Review-Report.md +589 -0
  147. package/docs/sprints/sprint-1/sprint-current/logs/WORKFLOW-CLEANUP-FINAL.md +121 -0
  148. package/docs/sprints/sprint-1/sprint-current/logs/WORKFLOW-OPTIMIZATION-COMPLETE.md +224 -0
  149. package/docs/sprints/sprint-1/sprint-current/logs/Workflow-Optimization-Progress.md +310 -0
  150. package/docs/sprints/sprint-1/sprint-current/logs/Workflow-Optimization-Session-Summary.md +420 -0
  151. package/docs/sprints/sprint-1/sprint-current/plans/Workflow-Optimization-Implementation-Plan.md +1124 -0
  152. package/docs/sprints/sprint-2/SPRINT-SUMMARY.md +150 -0
  153. package/docs/sprints/sprint-2/designs/UIUX-Design-Spec-Sprint-2-v1.md +352 -0
  154. package/docs/sprints/sprint-2/logs/Development-Log-Sprint-2-v1.md +293 -0
  155. package/docs/sprints/sprint-2/plans/Product-Backlog-Sprint-2-v1.md +62 -0
  156. package/docs/sprints/sprint-2/plans/Project-Plan-Sprint-2-v1.md +228 -0
  157. package/docs/sprints/sprint-2/reports/Phase-Report-Sprint-2-v1.md +303 -0
  158. package/docs/sprints/sprint-3/designs/UIUX-Design-Spec-Sprint-3-v1.md +160 -0
  159. package/docs/sprints/sprint-3/logs/Development-Log-Sprint-3-v1.md +249 -0
  160. package/docs/sprints/sprint-3/logs/Testing-Report-Sprint-3-v1.md +244 -0
  161. package/docs/sprints/sprint-3/plans/Product-Backlog-Sprint-3-v1.md +95 -0
  162. package/docs/sprints/sprint-3/reports/Final-Approval-Report-Sprint-3-v1.md +299 -0
  163. package/docs/sprints/sprint-3/reports/Sprint-Summary-Sprint-3-v1.md +276 -0
  164. package/docs/sprints/sprint-3/reviews/Design-Verification-Report-Sprint-3-v1.md +122 -0
  165. package/docs/sprints/sprint-3/reviews/Security-Review-Report-Sprint-3-v1.md +67 -0
  166. package/docs/sprints/sprint-5/designs/Backend-Design-Spec-Sprint-5-v1.md +1734 -0
  167. package/docs/sprints/sprint-5/designs/Design-Verification-Report.md +101 -0
  168. package/docs/sprints/sprint-5/designs/Security-Review-Report.md +84 -0
  169. package/docs/sprints/sprint-6/.brain-state.json +29 -0
  170. package/package.json +92 -16
  171. package/.agent/ide-integration/aider-commands.md +0 -40
  172. package/.agent/ide-integration/cline-config.json +0 -108
  173. package/.agent/ide-integration/cursor-rules.md +0 -63
  174. package/.agent/ide-integration/github-copilot-instructions.md +0 -75
  175. package/.agent/ide-integration/vscode-commands.json +0 -190
  176. package/.agent/ide-integration/windsurf-cascade.md +0 -125
  177. package/.agent/knowledge-base/index.md +0 -202
  178. package/.agent/legacy/roles/designer.md +0 -311
  179. package/.agent/legacy/roles/dev.md +0 -177
  180. package/.agent/legacy/roles/devops.md +0 -146
  181. package/.agent/legacy/roles/orchestrator.md +0 -339
  182. package/.agent/legacy/roles/pm.md +0 -120
  183. package/.agent/legacy/roles/po.md +0 -89
  184. package/.agent/legacy/roles/qa.md +0 -108
  185. package/.agent/legacy/roles/reporter.md +0 -70
  186. package/.agent/legacy/roles/sa.md +0 -118
  187. package/.agent/legacy/roles/seca.md +0 -112
  188. package/.agent/legacy/roles/stakeholder.md +0 -111
  189. package/.agent/legacy/roles/tester.md +0 -129
  190. package/.agent/rules/global.md.bak +0 -154
  191. package/.agent/usage.md +0 -653
  192. package/.agent/workflows/auto.md +0 -35
  193. package/.agent/workflows/dev.md +0 -30
  194. package/.agent/workflows/devops.md +0 -28
  195. package/.agent/workflows/kb-search.md +0 -22
  196. package/.agent/workflows/pm.md +0 -42
  197. package/.agent/workflows/po.md +0 -21
  198. package/.agent/workflows/qa.md +0 -31
  199. package/.agent/workflows/reporter.md +0 -21
  200. package/.agent/workflows/sa.md +0 -51
  201. package/.agent/workflows/seca.md +0 -21
  202. package/.agent/workflows/stakeholder.md +0 -26
  203. package/.agent/workflows/tester.md +0 -21
  204. package/.agent/workflows/uiux.md +0 -38
  205. package/.cursorrules +0 -49
  206. package/.env.template +0 -10
  207. package/.github/ISSUE_TEMPLATE/bug_report.yml +0 -47
  208. package/.github/ISSUE_TEMPLATE/config.yml +0 -8
  209. package/.github/ISSUE_TEMPLATE/feature_request.yml +0 -33
  210. package/.github/ISSUE_TEMPLATE/security_alert.yml +0 -28
  211. package/.github/ISSUE_TEMPLATE/task_implementation.yml +0 -37
  212. package/.github/copilot-instructions.md +0 -60
  213. package/bin/commands/create.js +0 -96
  214. package/bin/commands/help.js +0 -69
  215. package/bin/commands/ide.js +0 -116
  216. package/bin/commands/init-kb.js +0 -74
  217. package/bin/commands/install.js +0 -68
  218. package/bin/commands/list.js +0 -35
  219. package/bin/graph_brain.py +0 -86
  220. package/bin/sync_github.py +0 -75
  221. package/bin/utils/args-parser.js +0 -33
  222. package/bin/utils/colors.js +0 -21
  223. package/bin/verify_neo4j.py +0 -25
  224. /package/.agent/rules/{knowledge-base.md → KNOWLEDGE-BASE.md} +0 -0
  225. /package/docs/architecture/{neo4j-learning-queries.md → NEO4J-LEARNING-QUERIES.md} +0 -0
  226. /package/docs/reports/{comparison-leann-neo4j.md → COMPARISON-LEANN-NEO4J.md} +0 -0
  227. /package/docs/sprints/{sprint-neo4j-brain.md → SPRINT-NEO4J-BRAIN.md} +0 -0
@@ -0,0 +1,101 @@
1
+ # Design Verification Report - Sprint 5
2
+ ## Premium Landing Page
3
+
4
+ **Version:** 1.0
5
+ **Date:** 2026-01-02
6
+ **Reviewer:** @QA
7
+ **Status:** ✅ Approved (with notes)
8
+
9
+ ---
10
+
11
+ ## 1. Review Summary
12
+
13
+ The design specifications (UI/UX and Backend) for the Agentic SDLC Landing Page have been reviewed for testability, completeness, consistency, and alignment with project goals.
14
+
15
+ | Artifact | Status | Comments |
16
+ |----------|--------|----------|
17
+ | `UIUX-Design-Spec-Sprint-5-v1.md` | ✅ Pass | Comprehensive design system and accessibility defined. |
18
+ | `Backend-Design-Spec-Sprint-5-v1.md` | ✅ Pass | Robust architecture with clear performance targets. |
19
+
20
+ ---
21
+
22
+ ## 2. Detailed Findings
23
+
24
+ ### 2.1 UI/UX Specification Review
25
+
26
+ **Strengths:**
27
+ - **Accessibility:** WCAG 2.1 AA compliance is baked into the requirements (colors, focus states, checking).
28
+ - **Responsive Strategy:** Clear mobile-first approach with specific breakpoints defined.
29
+ - **Micro-interactions:** Detailed specifications for hover, lift, and scroll effects will make validatng the "premium" feel objective.
30
+ - **Dark Mode:** specific implementation details for shadows and images prevent ambiguity.
31
+
32
+ **Notes for Implementation:**
33
+ - Ensure the "GradientText" component degrades gracefully in browsers with reduced motion or older rendering engines.
34
+ - **Test Case Add:** Verify the "Glassmorphism" effect doesn't cause performance drops on low-end mobile devices (FPS monitoring required).
35
+
36
+ ### 2.2 Backend Specification Review
37
+
38
+ **Strengths:**
39
+ - **Performance:** Explicit targets (LCP < 2.5s) allow for automated gating in CI.
40
+ - **SEO:** Structured data and metadata strategies are well-defined.
41
+ - **Architecture:** Separation of interactive (Client) vs. static (Server) components is optimal for Next.js 14.
42
+
43
+ **Notes for Implementation:**
44
+ - **Rate Limiting:** The `10 requests per 10 seconds` limit is good, but ensure it returns a friendly structured error message that the UI can handle gracefully.
45
+ - **Feature Flags:** Consider adding basic feature flags for the "Newsletter" and "Contact" forms so they can be disabled instantly if spam attacks occur.
46
+
47
+ ---
48
+
49
+ ## 3. Test Strategy & Plan
50
+
51
+ ### 3.1 Automated Testing Scope
52
+
53
+ | Layer | Tool | Coverage Target | Focus |
54
+ |-------|------|-----------------|-------|
55
+ | **Unit** | Vitest | 90% | Logic in utility functions, form validation, hooks. |
56
+ | **Component** | Vitest + RTL | 80% | Interactive states (hover, focus, disabled, loading). |
57
+ | **E2E** | Playwright | Critical Paths | Happy path: Page Load -> Scroll -> CTA Click -> Navigation. |
58
+ | **Visual** | Percy/Happo | Key Sections | Regression testing for layout shifts across viewports. |
59
+ | **A11y** | axe-core | 100% | Automated accessibility scans in CI. |
60
+
61
+ ### 3.2 Manual Testing Checklist
62
+
63
+ 1. **Cross-Browser Verification:**
64
+ - [ ] Chrome (Latest)
65
+ - [ ] Firefox (Latest)
66
+ - [ ] Safari (macOS & iOS)
67
+ - [ ] Edge
68
+
69
+ 2. **Responsive Checks:**
70
+ - [ ] Mobile Portrait (375px)
71
+ - [ ] Tablet Portrait (768px)
72
+ - [ ] Desktop Standard (1280px)
73
+ - [ ] Ultra-wide (1920px+)
74
+
75
+ 3. **User Experience:**
76
+ - [ ] "Premium" feel verification (smoothness of animations).
77
+ - [ ] No layout shifts (CLS) during image loading.
78
+ - [ ] Dark mode toggle preserves state on reload.
79
+
80
+ ---
81
+
82
+ ## 4. Risk Assessment
83
+
84
+ - **Risk:** High dependency on client-side animations might impact Core Web Vitals (INP/FID).
85
+ - **Mitigation:** Strict bundle size monitoring and use of `will-change` CSS properties sparingly.
86
+ - **Risk:** Third-party font loading (Google Fonts) causing layout shifts.
87
+ - **Mitigation:** Backend spec correctly identifies using `next/font` for self-hosting.
88
+
89
+ ---
90
+
91
+ ## 5. Approval Decision
92
+
93
+ **Decision:** ✅ **APPROVED**
94
+
95
+ The designs are sufficiently detailed to proceed to development. The QA team is ready to support the Sprint 5 implementation.
96
+
97
+ ### Next Step:
98
+ - @SECA - Please perform final security sign-off.
99
+ - @DEV - Ready for implementation.
100
+
101
+ #qa #verification #test-plan #sprint-5
@@ -0,0 +1,84 @@
1
+ # Security Review Report - Sprint 5
2
+ ## Landing Page Architecture
3
+
4
+ **Version:** 1.0
5
+ **Date:** 2026-01-02
6
+ **Reviewer:** @SECA
7
+ **Status:** ✅ Approved (Secure)
8
+
9
+ ---
10
+
11
+ ## 1. Executive Summary
12
+
13
+ A security assessment of the Sprint 5 Landing Page architecture has been performed. The design significantly reduces attack surface by utilizing a predominantly static generation strategy (SSG) with minimal dynamic API endpoints.
14
+
15
+ | Category | Status | Rating |
16
+ |----------|--------|--------|
17
+ | **Architecture** | ✅ Secure | Low Risk |
18
+ | **Data Privacy** | ✅ Secure | Low Risk |
19
+ | **API Security** | ✅ Secure | Low Risk |
20
+ | **Dependencies** | ⚠️ Warning | Low Risk |
21
+
22
+ ---
23
+
24
+ ## 2. Threat Analysis & Mitigations
25
+
26
+ ### 2.1 Attack Vector: DDoS / Abuse of API Routes
27
+ **Threat:** Malicious actors could target the `POST /api/newsletter` or `POST /api/contact` endpoints to flood the system or exhaust email quotas.
28
+ **Design Mitigation:**
29
+ - **Rate Limiting:** Backend spec implements `Upstash Redis` sliding window (10 req/10s). **Verified Adequate.**
30
+ - **Mitigation Status:** ✅ **Resolved**
31
+
32
+ ### 2.2 Attack Vector: Cross-Site Scripting (XSS)
33
+ **Threat:** Injection of malicious scripts via contact forms or compromised CDN assets.
34
+ **Design Mitigation:**
35
+ - **CSP:** Strict Content Security Policy defined in headers (script-src 'self' ...).
36
+ - **Sanitization:** Use of `DOMPurify` for input sanitization.
37
+ - **Framework:** React auto-escaping enabled by default.
38
+ - **Mitigation Status:** ✅ **Resolved**
39
+
40
+ ### 2.3 Attack Vector: Supply Chain Attacks
41
+ **Threat:** Compromised third-party packages (shadcn deps, framer-motion, etc.).
42
+ **Design Mitigation:**
43
+ - **Vulnerability Scanning:** CI pipeline includes `npm audit`.
44
+ - **Mitigation Status:** ⚠️ **Monitor** - CI pipeline must be strictly enforced.
45
+
46
+ ---
47
+
48
+ ## 3. Compliance Review
49
+
50
+ ### 3.1 GDPR / Privacy
51
+ - **Cookies:** Spec mentions a "Cookie Policy" link in footer.
52
+ - **Consent:** If analytics (GA4) are used, a **Cookie Consent Banner** MUST be implemented. The current design includes analytics but does not explicitly detail the consent banner component.
53
+ - **Action Item:** @DEV must implement a Cookie Consent banner component (`CookieConsent.tsx`) to trigger GA initialization only **after** user acceptance.
54
+
55
+ ### 3.2 Security Headers
56
+ The proposed headers in `Backend-Design-Spec` are best-in-class:
57
+ ```json
58
+ "X-Content-Type-Options": "nosniff",
59
+ "X-Frame-Options": "DENY",
60
+ "Referrer-Policy": "origin-when-cross-origin",
61
+ "Permissions-Policy": "camera=(), microphone=(), geolocation=()"
62
+ ```
63
+ **Verdict:** Excellent configuration.
64
+
65
+ ---
66
+
67
+ ## 4. Final Recommendations
68
+
69
+ 1. **Cookie Consent:** Add a mandatory requirement for a GDPR-compliant cookie banner if Google Analytics is active.
70
+ 2. **API Validation:** Ensure the `emailSchema` validation in `lib/validation.ts` is strict (e.g., no temporary/disposable email providers if possible).
71
+ 3. **Honeypot:** Suggest adding a hidden "honeypot" field to the forms to passively block simple bots without friction.
72
+
73
+ ---
74
+
75
+ ## 5. Approval Decision
76
+
77
+ **Decision:** ✅ **APPROVED**
78
+
79
+ The security posture of the proposed design is strong. The risks are low due to the static nature of the site.
80
+
81
+ ### Next Step:
82
+ - @DEV - Proceed with implementation (Note the Cookie Banner requirement).
83
+
84
+ #security #review #sprint-5 #GDPR
@@ -0,0 +1,29 @@
1
+ {
2
+ "sprint": "sprint-6",
3
+ "currentState": "PLANNING",
4
+ "previousState": "IDLE",
5
+ "stateHistory": [
6
+ {
7
+ "state": "IDLE",
8
+ "timestamp": "2026-01-04T08:15:56.402416",
9
+ "reason": "Initial state"
10
+ },
11
+ {
12
+ "state": "PLANNING",
13
+ "from": "IDLE",
14
+ "timestamp": "2026-01-04T08:16:12.210909",
15
+ "reason": "Testing workflow",
16
+ "forced": false
17
+ }
18
+ ],
19
+ "approvalGates": {
20
+ "planApproved": false,
21
+ "designApproved": false,
22
+ "securityApproved": false,
23
+ "finalApproved": false
24
+ },
25
+ "artifacts": {},
26
+ "roleStatus": {},
27
+ "createdAt": "2026-01-04T08:15:56.402451",
28
+ "lastUpdated": "2026-01-04T08:16:12.210868"
29
+ }
package/package.json CHANGED
@@ -1,16 +1,92 @@
1
- {
2
- "name": "agentic-sdlc",
3
- "version": "1.0.0",
4
- "description": "Simulating a complete Software Development Lifecycle (SDLC) with specialized AI Agents.",
5
- "main": "index.js",
6
- "bin": {
7
- "agentic-sdlc": "./bin/cli.js"
8
- },
9
- "scripts": {
10
- "test": "echo \"Error: no test specified\" && exit 1"
11
- },
12
- "dependencies": {
13
- "fs-extra": "^11.2.0"
14
- },
15
- "type": "module"
16
- }
1
+ {
2
+ "name": "agentic-sdlc",
3
+ "version": "1.5.0",
4
+ "description": "Simulating a complete Software Development Lifecycle (SDLC) with specialized AI Agents.",
5
+ "type": "module",
6
+ "private": false,
7
+ "packageManager": "bun@1.2.2",
8
+ "workspaces": [
9
+ "projects/todo-app/frontend",
10
+ "projects/todo-app/backend",
11
+ "projects/landing-page"
12
+ ],
13
+ "bin": {
14
+ "agentic-sdlc": "./bin/cli.js"
15
+ },
16
+ "scripts": {
17
+ "test": "pytest tests/ -v",
18
+ "test:cov": "pytest tests/ -v --cov=tools --cov-report=html",
19
+ "workflow:cycle": "python tools/workflows/cycle.py",
20
+ "workflow:housekeeping": "python tools/workflows/housekeeping.py",
21
+ "kb:search": "python tools/kb/search.py",
22
+ "kb:stats": "python tools/kb/stats.py",
23
+ "kb:update": "python tools/kb/update-index.py",
24
+ "health": "python tools/validation/health-check.py",
25
+ "agent": "python tools/run.py",
26
+ "agent:list": "python tools/agent/manage.py list",
27
+ "agent:create": "python tools/agent/manage.py create",
28
+ "agent:validate": "python tools/agent/manage.py validate",
29
+ "agent:info": "python tools/agent/manage.py info",
30
+ "setup": "python tools/setup/init.py",
31
+ "release:preview": "python tools/release/release.py preview",
32
+ "release:changelog": "python tools/release/release.py changelog",
33
+ "release:version": "python tools/release/release.py version --auto",
34
+ "release": "python tools/release/release.py release",
35
+ "dev:todo:fe": "turbo run dev --filter=todo-app-frontend",
36
+ "dev:todo:be": "turbo run dev --filter=todo-app-backend",
37
+ "dev:todo": "turbo run dev --filter=todo-app-*",
38
+ "dev:all": "turbo run dev",
39
+ "build:todo:fe": "turbo run build --filter=todo-app-frontend",
40
+ "build:todo:be": "turbo run build --filter=todo-app-backend",
41
+ "build:todo": "turbo run build --filter=todo-app-*",
42
+ "build:all": "turbo run build",
43
+ "test:todo:fe": "turbo run test --filter=todo-app-frontend",
44
+ "test:todo:be": "turbo run test --filter=todo-app-backend",
45
+ "test:todo": "turbo run test --filter=todo-app-*",
46
+ "test:projects": "turbo run test",
47
+ "lint": "turbo run lint",
48
+ "typecheck": "turbo run typecheck",
49
+ "clean": "turbo run clean",
50
+ "clean:all": "turbo run clean && rimraf node_modules/.cache .turbo",
51
+ "preview:todo:fe": "turbo run preview --filter=todo-app-frontend"
52
+ },
53
+ "keywords": [
54
+ "sdlc",
55
+ "ai",
56
+ "agent",
57
+ "automation",
58
+ "workflow",
59
+ "cursor",
60
+ "copilot",
61
+ "development",
62
+ "project-management"
63
+ ],
64
+ "author": "truongnat",
65
+ "license": "MIT",
66
+ "repository": {
67
+ "type": "git",
68
+ "url": "git+https://github.com/truongnat/agentic-sdlc.git"
69
+ },
70
+ "bugs": {
71
+ "url": "https://github.com/truongnat/agentic-sdlc/issues"
72
+ },
73
+ "homepage": "https://github.com/truongnat/agentic-sdlc#readme",
74
+ "engines": {
75
+ "node": ">=16.0.0"
76
+ },
77
+ "files": [
78
+ "bin/",
79
+ ".agent/",
80
+ "docs/",
81
+ "README.md",
82
+ "CHANGELOG.md",
83
+ "package.json"
84
+ ],
85
+ "dependencies": {
86
+ "fs-extra": "^11.2.0"
87
+ },
88
+ "devDependencies": {
89
+ "rimraf": "^6.1.2",
90
+ "turbo": "^2.7.2"
91
+ }
92
+ }
@@ -1,40 +0,0 @@
1
- # Aider CLI - TeamLifecycle Integration
2
-
3
- ## Configuration for Aider
4
-
5
- Add this to your `.aider.conf.yml` file:
6
-
7
- ```yaml
8
- # TeamLifecycle SDLC Roles
9
-
10
- # Custom commands for Aider
11
- commands:
12
- pm: "@PM - {message}"
13
- orchestrator: "@ORCHESTRATOR - {message}"
14
- po: "@PO - {message}"
15
- sa: "@SA - {message}"
16
- uiux: "@UIUX - {message}"
17
- qa: "@QA - {message}"
18
- seca: "@SECA - {message}"
19
- dev: "@DEV - {message}"
20
- devops: "@DEVOPS - {message}"
21
- tester: "@TESTER - {message}"
22
- reporter: "@REPORTER - {message}"
23
- stakeholder: "@STAKEHOLDER - {message}"
24
- auto: "@PM - {message} --mode=full-auto"
25
- semi-auto: "@PM - {message} --mode=semi-auto"
26
-
27
- # Context files to always include
28
- read:
29
- - .agent/rules/global.md
30
- - .agent/usage.md
31
- ```
32
-
33
- ## Usage
34
-
35
- ```bash
36
- aider
37
- > /pm Build a CLI tool for file conversion
38
- > /dev Implement JSON to YAML converter
39
- > /kb-search command parsing
40
- ```
@@ -1,108 +0,0 @@
1
- {
2
- "name": "TeamLifecycle SDLC",
3
- "version": "1.0.0",
4
- "description": "Structured SDLC workflow with specialized roles",
5
- "slashCommands": [
6
- {
7
- "name": "pm",
8
- "description": "Project Manager - Planning and scope management",
9
- "systemPrompt": "You are the Project Manager (@PM). Load instructions from .agent/workflows/pm.md and follow the TeamLifecycle workflow.",
10
- "userMessageTemplate": "@PM - {{input}}"
11
- },
12
- {
13
- "name": "orchestrator",
14
- "description": "Orchestrator - Workflow automation",
15
- "systemPrompt": "You are the Orchestrator (@ORCHESTRATOR). Load instructions from .agent/workflows/orchestrator.md and automate the workflow.",
16
- "userMessageTemplate": "@ORCHESTRATOR - {{input}}"
17
- },
18
- {
19
- "name": "po",
20
- "description": "Product Owner - Backlog and prioritization",
21
- "systemPrompt": "You are the Product Owner (@PO). Load instructions from .agent/workflows/po.md.",
22
- "userMessageTemplate": "@PO - {{input}}"
23
- },
24
- {
25
- "name": "sa",
26
- "description": "System Analyst - Architecture and API design",
27
- "systemPrompt": "You are the System Analyst (@SA). Load instructions from .agent/workflows/sa.md.",
28
- "userMessageTemplate": "@SA - {{input}}"
29
- },
30
- {
31
- "name": "uiux",
32
- "description": "UI/UX Designer - Interface and user experience",
33
- "systemPrompt": "You are the UI/UX Designer (@UIUX). Load instructions from .agent/workflows/designer.md.",
34
- "userMessageTemplate": "@UIUX - {{input}}"
35
- },
36
- {
37
- "name": "qa",
38
- "description": "QA Analyst - Design review and quality assurance",
39
- "systemPrompt": "You are the QA Analyst (@QA). Load instructions from .agent/workflows/qa.md.",
40
- "userMessageTemplate": "@QA - {{input}}"
41
- },
42
- {
43
- "name": "seca",
44
- "description": "Security Analyst - Security assessment",
45
- "systemPrompt": "You are the Security Analyst (@SECA). Load instructions from .agent/workflows/seca.md.",
46
- "userMessageTemplate": "@SECA - {{input}}"
47
- },
48
- {
49
- "name": "dev",
50
- "description": "Developer - Code implementation",
51
- "systemPrompt": "You are the Developer (@DEV). Load instructions from .agent/workflows/dev.md.",
52
- "userMessageTemplate": "@DEV - {{input}}"
53
- },
54
- {
55
- "name": "devops",
56
- "description": "DevOps Engineer - CI/CD and deployment",
57
- "systemPrompt": "You are the DevOps Engineer (@DEVOPS). Load instructions from .agent/workflows/devops.md.",
58
- "userMessageTemplate": "@DEVOPS - {{input}}"
59
- },
60
- {
61
- "name": "tester",
62
- "description": "Tester - Functional testing and bug detection",
63
- "systemPrompt": "You are the Tester (@TESTER). Load instructions from .agent/workflows/tester.md.",
64
- "userMessageTemplate": "@TESTER - {{input}}"
65
- },
66
- {
67
- "name": "reporter",
68
- "description": "Reporter - Documentation and progress reports",
69
- "systemPrompt": "You are the Reporter (@REPORTER). Load instructions from .agent/workflows/reporter.md.",
70
- "userMessageTemplate": "@REPORTER - {{input}}"
71
- },
72
- {
73
- "name": "stakeholder",
74
- "description": "Stakeholder - Final approval",
75
- "systemPrompt": "You are the Stakeholder (@STAKEHOLDER). Load instructions from .agent/workflows/stakeholder.md.",
76
- "userMessageTemplate": "@STAKEHOLDER - {{input}}"
77
- },
78
- {
79
- "name": "auto",
80
- "description": "Start project with full automation",
81
- "systemPrompt": "You are the Project Manager (@PM) with full automation enabled. Load instructions from .agent/workflows/pm.md and .agent/workflows/orchestrator.md.",
82
- "userMessageTemplate": "@PM - {{input}} --mode=full-auto"
83
- },
84
- {
85
- "name": "semi-auto",
86
- "description": "Start project with semi-automation",
87
- "systemPrompt": "You are the Project Manager (@PM) with semi-automation enabled. Load instructions from .agent/workflows/pm.md and .agent/workflows/orchestrator.md.",
88
- "userMessageTemplate": "@PM - {{input}} --mode=semi-auto"
89
- },
90
- {
91
- "name": "kb-search",
92
- "description": "Search knowledge base",
93
- "systemPrompt": "Search the knowledge base at .agent/knowledge-base/ for relevant entries. Check index.md first, then search by category, technology, and keywords.",
94
- "userMessageTemplate": "Search knowledge base for: {{input}}"
95
- },
96
- {
97
- "name": "kb-add",
98
- "description": "Add entry to knowledge base",
99
- "systemPrompt": "Create a new knowledge base entry using the template at .agent/templates/Knowledge-Entry-Template.md. Save to appropriate category folder and update index.md.",
100
- "userMessageTemplate": "Create knowledge base entry for: {{input}}"
101
- }
102
- ],
103
- "contextFiles": [
104
- ".agent/rules/global.md",
105
- ".agent/usage.md"
106
- ],
107
- "customInstructions": "This project uses TeamLifecycle SDLC workflow. All role definitions are in .agent/workflows/. Follow global rules from .agent/rules/global.md. Create artifacts in docs/sprints/sprint-[N]/ structure. Use templates from .agent/templates/. Search knowledge base before starting complex work."
108
- }
@@ -1,63 +0,0 @@
1
- # Cursor IDE - TeamLifecycle Integration
2
-
3
- ## Custom Instructions for Cursor
4
-
5
- Add this to your `.cursorrules` file in the project root:
6
-
7
- ```markdown
8
- # TeamLifecycle SDLC Roles
9
-
10
- You have access to specialized SDLC roles. When user types a slash command, interpret it as the corresponding role tag:
11
-
12
- ## Role Commands
13
-
14
- - `/pm` → @PM - Project Manager (planning, scope management)
15
- - `/orchestrator` → @ORCHESTRATOR - Workflow automation
16
- - `/po` → @PO - Product Owner (backlog, prioritization)
17
- - `/sa` → @SA - System Analyst (architecture, API design)
18
- - `/uiux` → @UIUX - UI/UX Designer (interface, user experience)
19
- - `/qa` → @QA - Quality Assurance (design review, testing strategy)
20
- - `/seca` → @SECA - Security Analyst (security assessment)
21
- - `/dev` → @DEV - Developer (implementation)
22
- - `/devops` → @DEVOPS - DevOps Engineer (CI/CD, deployment)
23
- - `/tester` → @TESTER - Tester (functional testing, bug detection)
24
- - `/reporter` → @REPORTER - Reporter (documentation, progress reports)
25
- - `/stakeholder` → @STAKEHOLDER - Stakeholder (final approval)
26
-
27
- ## Quick Start Commands
28
-
29
- - `/auto [requirements]` → Start project with full automation (@PM --mode=full-auto)
30
- - `/semi-auto [requirements]` → Start project with semi-automation (@PM --mode=semi-auto)
31
-
32
- ## Knowledge Base Commands
33
-
34
- - `/kb-search [query]` → Search knowledge base for solutions
35
- - `/kb-add [topic]` → Add entry to knowledge base
36
-
37
- ## Usage Examples
38
-
39
- ```
40
- /pm Build a todo app with authentication and real-time sync
41
- /auto Create a mobile fitness tracking app for iOS and Android
42
- /dev Implement OAuth2 authentication flow
43
- /kb-search React hydration error
44
- ```
45
-
46
- ## Instructions Location
47
-
48
- All role definitions and templates are in `.agent/`:
49
- - Roles: `.agent/workflows/`
50
- - Templates: `.agent/templates/`
51
- - Knowledge Base: `.agent/knowledge-base/`
52
- - Global Rules: `.agent/rules/global.md`
53
- - Usage Guide: `.agent/usage.md`
54
-
55
- When a slash command is used, load the corresponding role file and execute according to TeamLifecycle workflow.
56
- ```
57
-
58
- ## Installation
59
-
60
- 1. Create `.cursorrules` file in your project root
61
- 2. Copy the content above into the file
62
- 3. Restart Cursor IDE
63
- 4. Type `/` in chat to see available commands
@@ -1,75 +0,0 @@
1
- # GitHub Copilot Chat - TeamLifecycle Integration
2
-
3
- ## Custom Instructions for GitHub Copilot
4
-
5
- Add this to your `.github/copilot-instructions.md` file:
6
-
7
- ```markdown
8
- # TeamLifecycle SDLC System
9
-
10
- This project uses a structured SDLC workflow with specialized roles. All instructions are in `.agent/`.
11
-
12
- ## Slash Commands (Role Shortcuts)
13
-
14
- When user types these commands, interpret as role tags:
15
-
16
- ### Core Roles
17
- - `/pm` → @PM (Project Manager)
18
- - `/orchestrator` → @ORCHESTRATOR (Workflow Automation)
19
- - `/po` → @PO (Product Owner)
20
- - `/sa` → @SA (System Analyst)
21
- - `/uiux` → @UIUX (UI/UX Designer)
22
- - `/qa` → @QA (Quality Assurance)
23
- - `/seca` → @SECA (Security Analyst)
24
- - `/dev` → @DEV (Developer)
25
- - `/devops` → @DEVOPS (DevOps Engineer)
26
- - `/tester` → @TESTER (Tester)
27
- - `/reporter` → @REPORTER (Reporter)
28
- - `/stakeholder` → @STAKEHOLDER (Stakeholder)
29
-
30
- ### Quick Actions
31
- - `/auto [requirements]` → @PM [requirements] --mode=full-auto
32
- - `/semi-auto [requirements]` → @PM [requirements] --mode=semi-auto
33
- - `/kb-search [query]` → Search `.agent/knowledge-base/`
34
- - `/kb-add [topic]` → Create knowledge base entry
35
-
36
- ## Role Behavior
37
-
38
- Each role has specific responsibilities defined in `.agent/workflows/[role].md`:
39
-
40
- 1. **Load role file** when command is used
41
- 2. **Follow role rules** strictly
42
- 3. **Create artifacts** in `docs/sprints/sprint-[N]/[category]/`
43
- 4. **Tag next roles** using @tags
44
- 5. **Use templates** from `.agent/templates/`
45
-
46
- ## Workflow
47
-
48
- ```
49
- Planning → Design → Verification → Development → Testing → Reporting → Approval
50
- ```
51
-
52
- ## Key Files
53
-
54
- - Global Rules: `.agent/rules/global.md`
55
- - Usage Guide: `.agent/usage.md`
56
- - Roles: `.agent/workflows/*.md`
57
- - Templates: `.agent/templates/*.md`
58
- - Knowledge Base: `.agent/knowledge-base/`
59
-
60
- ## Examples
61
-
62
- ```
63
- /pm Build a REST API for task management
64
- /auto Create a mobile app for expense tracking
65
- /dev Implement JWT authentication
66
- /kb-search OAuth token refresh
67
- ```
68
- ```
69
-
70
- ## Installation
71
-
72
- 1. Create `.github/copilot-instructions.md` in your project
73
- 2. Copy the content above
74
- 3. Copilot will automatically load these instructions
75
- 4. Use `/` commands in Copilot Chat