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,425 @@
1
+ # System Design Specification - Version 1.0
2
+
3
+ ## Document Info
4
+ | Field | Value |
5
+ |-------|----------|
6
+ | Version | 1.0 |
7
+ | Date | 2026-01-01 |
8
+ | Author | @SA |
9
+ | Project Type | Web (Static Site - Landing Page) |
10
+ | Status | Draft → Auto-Review |
11
+ | Sprint | Sprint 1 |
12
+
13
+ ---
14
+
15
+ ## 1. Architecture Overview
16
+
17
+ ```
18
+ ┌──────────────────────────────────────────────────────────────────┐
19
+ │ ASTRO STATIC SITE ARCHITECTURE │
20
+ └──────────────────────────────────────────────────────────────────┘
21
+
22
+ ┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐
23
+ │ Build Time │────▶│ Static HTML │────▶│ CDN (Vercel) │
24
+ │ (Astro SSG) │ │ + Assets │ │ Edge Network │
25
+ └─────────────────┘ └──────────────────┘ └─────────────────┘
26
+ │ │
27
+ │ ▼
28
+ ▼ ┌─────────────────┐
29
+ ┌─────────────────┐ │ End Users │
30
+ │ Components: │ │ (Browsers) │
31
+ │ - Hero │ └─────────────────┘
32
+ │ - Features │
33
+ │ - Demo │
34
+ │ - CTA │
35
+ └─────────────────┘
36
+
37
+ ISLAND ARCHITECTURE (Astro):
38
+ ┌────────────────────────────────────────────────────────────┐
39
+ │ Static HTML (Default - Zero JS) │
40
+ │ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │
41
+ │ │ Island 1 │ │ Island 2 │ │ Island 3 │ │
42
+ │ │ (Terminal │ │ (Role │ │ (Code │ │
43
+ │ │ Demo) │ │ Explorer) │ │ Tabs) │ │
44
+ │ │ [Hydrated] │ │ [Hydrated] │ │ [Hydrated] │ │
45
+ │ └──────────────┘ └──────────────┘ └──────────────┘ │
46
+ └────────────────────────────────────────────────────────────┘
47
+ ```
48
+
49
+ **Architecture Pattern:** Jamstack (JavaScript, APIs, Markup)
50
+ - **Build Time:** Astro compiles all pages to static HTML
51
+ - **Runtime:** Zero JavaScript by default, selective hydration for interactive components
52
+ - **Deployment:** Static files served from Vercel Edge Network (CDN)
53
+ - **No Backend:** Pure static site, no server-side logic
54
+
55
+ ---
56
+
57
+ ## 2. Technology Stack
58
+
59
+ | Layer | Technology | Justification |
60
+ |-------|------------|---------------|
61
+ | **Framework** | Astro 4.x | Best-in-class SSG for SEO, zero JS by default, island architecture |
62
+ | **Build Tool** | Vite (built-in) | Fast HMR, optimized builds, modern ESM support |
63
+ | **Styling** | Vanilla CSS + CSS Modules | Scoped styles, no runtime overhead, maximum control |
64
+ | **Animations** | View Transitions API + CSS | Native browser animations, smooth transitions, no library needed |
65
+ | **Interactive Islands** | Vanilla JS (minimal) | Only for terminal demo, role explorer, code tabs |
66
+ | **Syntax Highlighting** | Shiki (Astro built-in) | Server-side highlighting, zero runtime JS, 100+ themes |
67
+ | **Icons** | Lucide Icons (SVG) | Tree-shakeable, lightweight, consistent design |
68
+ | **SEO** | @astrojs/seo | Automatic meta tags, Open Graph, Twitter Cards, JSON-LD |
69
+ | **Sitemap** | @astrojs/sitemap | Auto-generated XML sitemap |
70
+ | **Image Optimization** | Astro Image | WebP/AVIF conversion, lazy loading, responsive images |
71
+ | **Deployment** | Vercel | Edge network, automatic HTTPS, perfect Lighthouse scores |
72
+ | **Analytics** | Vercel Analytics | Privacy-friendly, Core Web Vitals tracking |
73
+
74
+ ---
75
+
76
+ ## 3. Component Architecture
77
+
78
+ ### 3.1 Page Structure
79
+ ```
80
+ src/
81
+ ├── pages/
82
+ │ └── index.astro # Main landing page (single page)
83
+ ├── components/
84
+ │ ├── layout/
85
+ │ │ ├── Header.astro # Navigation, logo
86
+ │ │ ├── Footer.astro # Links, social, license
87
+ │ │ └── SEO.astro # Meta tags, OG, schema
88
+ │ ├── sections/
89
+ │ │ ├── Hero.astro # Hero section with CTA
90
+ │ │ ├── Features.astro # 12 roles showcase
91
+ │ │ ├── HowItWorks.astro # SDLC workflow diagram
92
+ │ │ ├── TechStack.astro # Supported IDEs/platforms
93
+ │ │ ├── QuickStart.astro # Installation commands
94
+ │ │ ├── LiveDemo.astro # Terminal simulation (island)
95
+ │ │ ├── Stats.astro # Metrics (12 roles, 16 templates)
96
+ │ │ └── CTA.astro # Final call-to-action
97
+ │ ├── interactive/
98
+ │ │ ├── TerminalDemo.astro # Interactive terminal (client:load)
99
+ │ │ ├── RoleExplorer.astro # Role cards (client:visible)
100
+ │ │ └── CodeTabs.astro # Code examples (client:visible)
101
+ │ └── ui/
102
+ │ ├── Button.astro # Reusable button
103
+ │ ├── Card.astro # Feature card
104
+ │ ├── Badge.astro # Role badge
105
+ │ └── CodeBlock.astro # Syntax highlighted code
106
+ ├── styles/
107
+ │ ├── global.css # CSS variables, resets, utilities
108
+ │ ├── animations.css # Keyframes, transitions
109
+ │ └── themes.css # Dark mode support
110
+ └── assets/
111
+ ├── images/ # Generated images (hero, OG)
112
+ └── icons/ # SVG icons
113
+ ```
114
+
115
+ ### 3.2 Component Hydration Strategy
116
+ | Component | Hydration | Rationale |
117
+ |-----------|-----------|-----------|
118
+ | Header, Footer | None (static) | No interactivity needed |
119
+ | Hero, Features, Stats | None (static) | Pure content, CSS animations |
120
+ | TerminalDemo | `client:load` | Interactive from start, critical UX |
121
+ | RoleExplorer | `client:visible` | Hydrate when scrolled into view |
122
+ | CodeTabs | `client:visible` | Hydrate when scrolled into view |
123
+
124
+ **Hydration Directives:**
125
+ - `client:load` - Hydrate immediately on page load
126
+ - `client:visible` - Hydrate when component enters viewport
127
+ - `client:idle` - Hydrate when browser is idle
128
+ - Default (no directive) - Never hydrate, pure HTML
129
+
130
+ ---
131
+
132
+ ## 4. Data Model
133
+
134
+ ### 4.1 Static Data (No Database)
135
+ All content is defined in Astro components or TypeScript constants:
136
+
137
+ ```typescript
138
+ // src/data/roles.ts
139
+ export const roles = [
140
+ {
141
+ id: 'pm',
142
+ name: 'Project Manager',
143
+ icon: 'briefcase',
144
+ description: 'Leads project from start to finish',
145
+ command: '/pm',
146
+ color: '#8B5CF6' // purple
147
+ },
148
+ {
149
+ id: 'sa',
150
+ name: 'System Analyst',
151
+ icon: 'cpu',
152
+ description: 'Designs system architecture',
153
+ command: '/sa',
154
+ color: '#3B82F6' // blue
155
+ },
156
+ // ... 10 more roles
157
+ ];
158
+
159
+ // src/data/features.ts
160
+ export const features = [
161
+ {
162
+ title: '12 AI Roles',
163
+ description: 'Complete SDLC team simulation',
164
+ icon: 'users',
165
+ stats: '12 specialized agents'
166
+ },
167
+ {
168
+ title: 'Slash Commands',
169
+ description: 'Instant role activation',
170
+ icon: 'terminal',
171
+ stats: '10+ commands'
172
+ },
173
+ // ... more features
174
+ ];
175
+
176
+ // src/data/techStack.ts
177
+ export const supportedIDEs = [
178
+ { name: 'Cursor', logo: '/icons/cursor.svg', url: 'https://cursor.sh' },
179
+ { name: 'GitHub Copilot', logo: '/icons/copilot.svg', url: '...' },
180
+ // ... more IDEs
181
+ ];
182
+ ```
183
+
184
+ ### 4.2 SEO Metadata
185
+ ```typescript
186
+ // src/data/seo.ts
187
+ export const seoConfig = {
188
+ title: 'Agentic SDLC - AI-Powered Software Development Lifecycle',
189
+ description: 'Transform your IDE into a full SDLC team with 12 specialized AI roles, automated workflows, and knowledge management. Build faster, smarter.',
190
+ keywords: ['SDLC', 'AI agents', 'automation', 'Cursor', 'GitHub Copilot', 'workflow'],
191
+ ogImage: '/og-image.png',
192
+ twitterCard: 'summary_large_image',
193
+ canonicalUrl: 'https://agentic-sdlc.vercel.app',
194
+ author: 'truongnat',
195
+ schema: {
196
+ '@context': 'https://schema.org',
197
+ '@type': 'SoftwareApplication',
198
+ name: 'Agentic SDLC',
199
+ applicationCategory: 'DeveloperApplication',
200
+ operatingSystem: 'Windows, macOS, Linux',
201
+ // ... more schema
202
+ }
203
+ };
204
+ ```
205
+
206
+ ---
207
+
208
+ ## 5. Routing & Navigation
209
+
210
+ ### 5.1 Single Page Application (SPA)
211
+ - **Single Route:** `/` (index.astro)
212
+ - **Navigation:** Smooth scroll to sections with anchor links
213
+ - **Sections:**
214
+ - `#hero`
215
+ - `#features`
216
+ - `#how-it-works`
217
+ - `#tech-stack`
218
+ - `#quick-start`
219
+ - `#demo`
220
+ - `#get-started`
221
+
222
+ ### 5.2 Navigation Implementation
223
+ ```astro
224
+ <!-- Header.astro -->
225
+ <nav>
226
+ <a href="#features">Features</a>
227
+ <a href="#how-it-works">How It Works</a>
228
+ <a href="#quick-start">Quick Start</a>
229
+ <a href="#demo">Demo</a>
230
+ </nav>
231
+
232
+ <script>
233
+ // Smooth scroll behavior (native CSS)
234
+ // html { scroll-behavior: smooth; }
235
+ </script>
236
+ ```
237
+
238
+ ---
239
+
240
+ ## 6. Performance Optimization
241
+
242
+ ### 6.1 Build-Time Optimizations
243
+ | Optimization | Implementation | Impact |
244
+ |--------------|----------------|--------|
245
+ | **HTML Pre-rendering** | Astro SSG | 100% crawlable, instant FCP |
246
+ | **CSS Inlining** | Critical CSS inline | Eliminate render-blocking |
247
+ | **Image Optimization** | Astro Image (WebP/AVIF) | 60-80% size reduction |
248
+ | **Code Splitting** | Per-island bundles | Only load what's needed |
249
+ | **Minification** | Vite production build | Smaller bundle sizes |
250
+ | **Tree Shaking** | ES modules | Remove unused code |
251
+
252
+ ### 6.2 Runtime Optimizations
253
+ | Optimization | Implementation | Impact |
254
+ |--------------|----------------|--------|
255
+ | **Lazy Loading** | `loading="lazy"` on images | Faster initial load |
256
+ | **Intersection Observer** | `client:visible` islands | Defer non-critical JS |
257
+ | **CSS Animations** | GPU-accelerated transforms | 60fps animations |
258
+ | **Font Loading** | `font-display: swap` | Prevent FOIT |
259
+ | **Resource Hints** | `<link rel="preconnect">` | Faster external resources |
260
+
261
+ ### 6.3 Performance Targets
262
+ ```
263
+ Lighthouse Scores (Target: 100/100/100/100)
264
+ ├── Performance: 100
265
+ │ ├── FCP: < 0.8s
266
+ │ ├── LCP: < 1.2s
267
+ │ ├── TBT: < 100ms
268
+ │ └── CLS: < 0.1
269
+ ├── Accessibility: 100
270
+ │ ├── ARIA labels
271
+ │ ├── Keyboard navigation
272
+ │ └── Color contrast > 4.5:1
273
+ ├── Best Practices: 100
274
+ │ ├── HTTPS
275
+ │ ├── No console errors
276
+ │ └── Modern image formats
277
+ └── SEO: 100
278
+ ├── Meta tags
279
+ ├── Semantic HTML
280
+ └── Mobile-friendly
281
+ ```
282
+
283
+ ---
284
+
285
+ ## 7. SEO Implementation
286
+
287
+ ### 7.1 On-Page SEO
288
+ ```astro
289
+ <!-- SEO.astro Component -->
290
+ <head>
291
+ <!-- Primary Meta Tags -->
292
+ <title>{title}</title>
293
+ <meta name="title" content={title} />
294
+ <meta name="description" content={description} />
295
+ <meta name="keywords" content={keywords.join(', ')} />
296
+
297
+ <!-- Open Graph / Facebook -->
298
+ <meta property="og:type" content="website" />
299
+ <meta property="og:url" content={canonicalUrl} />
300
+ <meta property="og:title" content={title} />
301
+ <meta property="og:description" content={description} />
302
+ <meta property="og:image" content={ogImage} />
303
+
304
+ <!-- Twitter -->
305
+ <meta property="twitter:card" content="summary_large_image" />
306
+ <meta property="twitter:url" content={canonicalUrl} />
307
+ <meta property="twitter:title" content={title} />
308
+ <meta property="twitter:description" content={description} />
309
+ <meta property="twitter:image" content={ogImage} />
310
+
311
+ <!-- Canonical -->
312
+ <link rel="canonical" href={canonicalUrl} />
313
+
314
+ <!-- JSON-LD Structured Data -->
315
+ <script type="application/ld+json" set:html={JSON.stringify(schema)} />
316
+ </head>
317
+ ```
318
+
319
+ ### 7.2 Technical SEO
320
+ - **Sitemap:** Auto-generated at `/sitemap.xml`
321
+ - **Robots.txt:** Allow all crawlers
322
+ - **Semantic HTML:** `<header>`, `<nav>`, `<main>`, `<section>`, `<article>`, `<footer>`
323
+ - **Heading Hierarchy:** Single `<h1>`, logical `<h2>`-`<h6>`
324
+ - **Alt Text:** All images have descriptive alt attributes
325
+ - **Mobile-First:** Responsive design, viewport meta tag
326
+
327
+ ---
328
+
329
+ ## 8. Accessibility (WCAG 2.1 AA)
330
+
331
+ | Requirement | Implementation |
332
+ |-------------|----------------|
333
+ | **Keyboard Navigation** | All interactive elements focusable, visible focus states |
334
+ | **Screen Readers** | ARIA labels, semantic HTML, skip links |
335
+ | **Color Contrast** | Minimum 4.5:1 for text, 3:1 for UI components |
336
+ | **Focus Management** | Logical tab order, focus trapping in modals |
337
+ | **Alternative Text** | Descriptive alt text for all images |
338
+ | **Responsive Text** | Readable at 200% zoom |
339
+
340
+ ---
341
+
342
+ ## 9. Interactive Components (Islands)
343
+
344
+ ### 9.1 Terminal Demo Component
345
+ ```typescript
346
+ // TerminalDemo.astro (client:load)
347
+ interface Command {
348
+ input: string;
349
+ output: string;
350
+ delay: number;
351
+ }
352
+
353
+ const demoCommands: Command[] = [
354
+ { input: '$ npm install -g agentic-sdlc', output: '✓ Installed successfully', delay: 1000 },
355
+ { input: '$ agentic-sdlc create my-app', output: '✓ Project created', delay: 1500 },
356
+ { input: '$ cd my-app && /pm Build a todo app', output: '🤖 PM: Creating project plan...', delay: 2000 },
357
+ ];
358
+
359
+ // Auto-play animation on mount
360
+ ```
361
+
362
+ ### 9.2 Role Explorer Component
363
+ ```typescript
364
+ // RoleExplorer.astro (client:visible)
365
+ // Interactive cards that expand on click to show role details
366
+ // Smooth animations, accessible keyboard navigation
367
+ ```
368
+
369
+ ---
370
+
371
+ ## 10. Deployment Architecture
372
+
373
+ ```
374
+ ┌─────────────────┐
375
+ │ GitHub Repo │
376
+ │ (main branch) │
377
+ └────────┬────────┘
378
+
379
+ │ git push
380
+
381
+ ┌─────────────────┐
382
+ │ Vercel Build │
383
+ │ (Astro build) │
384
+ └────────┬────────┘
385
+
386
+ │ Deploy
387
+
388
+ ┌─────────────────────────────────────┐
389
+ │ Vercel Edge Network (CDN) │
390
+ │ ┌─────────┐ ┌─────────┐ ┌──────┐│
391
+ │ │ US-East │ │ EU-West │ │ Asia ││
392
+ │ └─────────┘ └─────────┘ └──────┘│
393
+ └─────────────────────────────────────┘
394
+
395
+
396
+ ┌─────────────────┐
397
+ │ End Users │
398
+ │ (< 100ms RTT) │
399
+ └─────────────────┘
400
+ ```
401
+
402
+ **Deployment Flow:**
403
+ 1. Push to `main` branch
404
+ 2. Vercel auto-builds with `astro build`
405
+ 3. Static files deployed to Edge Network
406
+ 4. Automatic HTTPS, caching, compression
407
+
408
+ ---
409
+
410
+ ## 11. Open Questions
411
+
412
+ - [x] @UIUX: Color palette and typography confirmed?
413
+ - [x] @PO: All must-have features prioritized in backlog?
414
+ - [ ] @DEVOPS: Vercel project created and configured?
415
+ - [ ] @DEV: Any concerns about Astro island hydration?
416
+
417
+ ---
418
+
419
+ ### Next Step:
420
+ - **@QA** - Review design for testability and accessibility ✅ AUTO-TRIGGERED
421
+ - **@SECA** - Security review of architecture and dependencies ✅ AUTO-TRIGGERED
422
+ - **@UIUX** - Create UI/UX Design Specification (in parallel) 🔄 IN PROGRESS
423
+ - **@PO** - Create Product Backlog (in parallel) 🔄 IN PROGRESS
424
+
425
+ #designing #sprint-1 #sa
@@ -0,0 +1,55 @@
1
+ # UI/UX Design Specification - Sprint 1 - v1
2
+
3
+ **Project Name:** Agentic SDLC Landing Page
4
+ **Sprint:** 1
5
+ **Version:** 1
6
+ **Date:** 2026-01-01
7
+ **UI/UX Designer:** @UIUX
8
+ **Status:** Ready for Review
9
+
10
+ ---
11
+
12
+ ## 🎨 Visual Design
13
+
14
+ ### Hero Section
15
+ **Layout:** Full viewport height, centered content
16
+ - Gradient background: Blue to Purple
17
+ - Headline: 72px bold, white
18
+ - Subheadline: 24px, light gray
19
+ - CTA buttons: Primary (blue) + Secondary (outline)
20
+ - Animated code snippet on right side
21
+
22
+ ### Features Grid
23
+ **Layout:** 3 columns on desktop, 1 on mobile
24
+ - Icon + Title + Description cards
25
+ - Hover effect: Lift + shadow
26
+ - Icons: Lucide, 48px, primary color
27
+
28
+ ### Use Cases
29
+ **Layout:** 3 cards, horizontal on desktop
30
+ - Code snippet preview
31
+ - Title + Description
32
+ - "Learn More" link
33
+
34
+ ### Quick Start
35
+ **Layout:** Centered, step-by-step
36
+ - Numbered steps (1-4)
37
+ - Code blocks with copy button
38
+ - Terminal-style design
39
+
40
+ ---
41
+
42
+ ## 🎯 User Flow
43
+
44
+ ```
45
+ Landing → Hero CTA → Quick Start → Features → Use Cases → Footer Links
46
+ ```
47
+
48
+ ---
49
+
50
+ ### Next Step:
51
+ - @PO - Create product backlog
52
+ - @QA + @SECA - Review designs
53
+
54
+ #uiux-design
55
+