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.
- package/.agent/ide-integration/INTEGRATION-SUMMARY.md +309 -0
- package/.agent/ide-integration/KIRO-IDE.md +381 -0
- package/.agent/ide-integration/README.md +256 -209
- package/.agent/knowledge-base/AUTO-LEARNING-GUIDE.md +327 -0
- package/.agent/knowledge-base/HOW-IT-WORKS.md +365 -0
- package/.agent/knowledge-base/INDEX.md +43 -0
- package/.agent/knowledge-base/README.md +47 -7
- package/.agent/knowledge-base/architecture/KB-2026-01-01-003-neo4j-graph-database-skills.md +1146 -0
- package/.agent/knowledge-base/architecture/README.md +98 -0
- package/.agent/knowledge-base/bugs/KB-2026-01-02-yaml-special-character-escaping.md +56 -0
- package/.agent/knowledge-base/bugs/medium/KB-2026-01-01-001-example-auto-learned.md +198 -0
- package/.agent/knowledge-base/features/KB-2026-01-01-001-landing-page-design-trends-2026.md +646 -0
- package/.agent/knowledge-base/features/KB-2026-01-01-004-uiux-design-skills-2026.md +945 -0
- package/.agent/knowledge-base/features/KB-2026-01-01-005-modern-ai-landing-page-ui.md +310 -0
- package/.agent/knowledge-base/features/KB-2026-01-01-006-award-winning-landing-page-patterns.md +324 -0
- package/.agent/knowledge-base/features/KB-2026-01-02-001-cleanup-workflow.md +242 -0
- package/.agent/knowledge-base/features/KB-2026-01-02-002-landing-page-monorepo-architecture.md +148 -0
- package/.agent/knowledge-base/features/KB-2026-01-02-003-premium-glassmorphism-patterns.md +58 -0
- package/.agent/knowledge-base/features/KB-2026-01-04-ai-agent-enforcement.md +46 -0
- package/.agent/knowledge-base/features/README.md +83 -0
- package/.agent/knowledge-base/features/figma-landing-page-workflow.md +311 -0
- package/.agent/knowledge-base/features/figma-mcp-sa-guide.md +673 -0
- package/.agent/knowledge-base/features/figma-mcp-uiux-guide.md +459 -0
- package/.agent/knowledge-base/performance/KB-2026-01-02-lazy-loading-optimization.md +80 -0
- package/.agent/knowledge-base/platform-specific/KB-2026-01-02-windows-console-encoding.md +56 -0
- package/.agent/knowledge-base/role-guides/DEV-KB-Guide.md +527 -0
- package/.agent/knowledge-base/role-guides/DEVOPS-KB-Guide.md +491 -0
- package/.agent/knowledge-base/role-guides/PM-KB-Guide.md +299 -0
- package/.agent/knowledge-base/role-guides/SECA-KB-Guide.md +555 -0
- package/.agent/knowledge-base/role-guides/TESTER-KB-Guide.md +519 -0
- package/.agent/knowledge-base/security/KB-2026-01-02-input-validation-sanitization.md +74 -0
- package/.agent/rules/AUTO-LEARNING.md +418 -0
- package/.agent/rules/ai-enforcement.md +11 -0
- package/.agent/rules/artifacts.md +77 -58
- package/.agent/rules/git-workflow.md +25 -65
- package/.agent/rules/global.md +18 -13
- package/.agent/skills/role-ba.md +76 -0
- package/.agent/skills/role-brain.md +470 -0
- package/.agent/skills/role-dev.md +338 -0
- package/.agent/skills/role-devops.md +122 -0
- package/.agent/skills/role-orchestrator.md +223 -0
- package/.agent/skills/role-pm.md +258 -0
- package/.agent/skills/role-po.md +237 -0
- package/.agent/skills/role-qa.md +81 -0
- package/.agent/skills/role-reporter.md +117 -0
- package/.agent/skills/role-sa.md +277 -0
- package/.agent/skills/role-seca.md +294 -0
- package/.agent/skills/role-stakeholder.md +105 -0
- package/.agent/skills/role-tester.md +294 -0
- package/.agent/skills/role-uiux.md +264 -0
- package/.agent/templates/CHANGELOG-Template.md +83 -0
- package/.agent/templates/Knowledge-Entry-Template.md +3 -0
- package/.agent/workflows/brain.md +84 -53
- package/.agent/workflows/compound.md +51 -0
- package/.agent/workflows/cycle.md +61 -0
- package/.agent/workflows/emergency.md +114 -0
- package/.agent/workflows/explore.md +147 -0
- package/.agent/workflows/housekeeping.md +105 -0
- package/.agent/workflows/metrics.md +179 -0
- package/.agent/workflows/orchestrator.md +68 -0
- package/.agent/workflows/preflight.md +35 -0
- package/.agent/workflows/release.md +153 -0
- package/.agent/workflows/route.md +160 -0
- package/.agent/workflows/sprint.md +125 -0
- package/.agent/workflows/validate.md +146 -0
- package/CHANGELOG.md +349 -6
- package/README.md +171 -86
- package/bin/CROSS-PLATFORM-CLI.md +526 -0
- package/bin/README.md +525 -0
- package/bin/cli.js +65 -90
- package/bin/kb +34 -0
- package/bin/kb.bat +28 -0
- package/bin/kb_cli.py +226 -0
- package/bin/lib/README.md +411 -0
- package/bin/lib/__init__.py +7 -0
- package/bin/lib/__pycache__/kb_add.cpython-313.pyc +0 -0
- package/bin/lib/__pycache__/kb_common.cpython-313.pyc +0 -0
- package/bin/lib/__pycache__/kb_compound.cpython-313.pyc +0 -0
- package/bin/lib/__pycache__/kb_index.cpython-313.pyc +0 -0
- package/bin/lib/__pycache__/kb_list.cpython-313.pyc +0 -0
- package/bin/lib/__pycache__/kb_search.cpython-313.pyc +0 -0
- package/bin/lib/__pycache__/kb_stats.cpython-313.pyc +0 -0
- package/bin/lib/kb_add.py +203 -0
- package/bin/lib/kb_common.py +224 -0
- package/bin/lib/kb_compound.py +250 -0
- package/bin/lib/kb_index.py +193 -0
- package/bin/lib/kb_list.py +144 -0
- package/bin/lib/kb_search.py +121 -0
- package/bin/lib/kb_stats.py +153 -0
- package/docs/AGENT-MANAGEMENT-GUIDE.md +298 -0
- package/docs/ARCHITECTURE-OVERVIEW.md +350 -0
- package/docs/BRAIN-ARCHITECTURE.md +396 -0
- package/docs/COMPOUND-ENGINEERING-SETUP.md +326 -0
- package/docs/KNOWLEDGE-BASE-GUIDE.md +330 -0
- package/docs/KNOWLEDGE-BASE-SIMPLE.md +248 -0
- package/docs/MONOREPO-ARCHITECTURE.md +492 -0
- package/docs/PROJECT-DOCUMENTATION-INDEX.md +540 -0
- package/docs/SDLC-Diagram.md +235 -0
- package/docs/analysis/Workflow-Optimization-Diagram.md +524 -0
- package/docs/analysis/Workflows-Deep-Analysis-2026-01-03.md +604 -0
- package/docs/architecture/{brain.md โ BRAIN.md} +1 -1
- package/docs/global/Master-Documentation.md +307 -0
- package/docs/global/reports/Final-Approval-Report.md +257 -0
- package/docs/guides/AUTO-LEARNING-COMPLETE-GUIDE.md +519 -0
- package/docs/guides/AUTO-LEARNING-SYSTEM.md +322 -0
- package/docs/guides/LEARNING-FLOW.md +0 -0
- package/docs/guides/MCP-QUICK-REFERENCE.md +104 -0
- package/docs/guides/MCP-SETUP.md +139 -0
- package/docs/guides/QUICK-START.md +4 -0
- package/docs/guides/ROLE-COMMUNICATION-SYSTEM.md +71 -0
- package/docs/reports/Metrics-Dashboard-2026-01-02.md +66 -0
- package/docs/reports/Metrics-Dashboard-2026-01-04.md +68 -0
- package/docs/reports/UIUX-Design-Skills-Research-Report-2026.md +91 -0
- package/docs/reports/Validation-Report-2026-01-04.md +23 -0
- package/docs/research-reports/research-20260103-101315.json +95 -0
- package/docs/research-reports/research-20260103-101315.md +78 -0
- package/docs/research-reports/research-20260103-183837.json +95 -0
- package/docs/research-reports/research-20260103-183837.md +78 -0
- package/docs/research-reports/research-20260103-190346.json +100 -0
- package/docs/research-reports/research-20260103-190346.md +83 -0
- package/docs/setup/{github-management.md โ GITHUB-MANAGEMENT.md} +1 -1
- package/docs/setup/RESEARCH-AGENT-SETUP.md +575 -0
- package/docs/sprints/{sprint-github-issues.md โ SPRINT-GITHUB-ISSUES.md} +1 -1
- package/docs/sprints/{sprint-leann-integration.md โ SPRINT-LEANN-INTEGRATION.md} +1 -1
- package/docs/sprints/sprint-1/designs/Backend-Design-Spec-Sprint-1-v1.md +1206 -0
- package/docs/sprints/sprint-1/designs/System-Design-Spec-Sprint-1-v1.md +439 -0
- package/docs/sprints/sprint-1/designs/System-Design-Spec-v1.0.md +425 -0
- package/docs/sprints/sprint-1/designs/UIUX-Design-Spec-Sprint-1-v1.md +55 -0
- package/docs/sprints/sprint-1/designs/UIUX-Design-Spec-v1.0.md +644 -0
- package/docs/sprints/sprint-1/logs/DevOps-Plan-and-Log-Sprint-1-v1.md +253 -0
- package/docs/sprints/sprint-1/logs/Development-Log-Phase1.md +433 -0
- package/docs/sprints/sprint-1/logs/Development-Log-Sprint-1-v1.md +181 -0
- package/docs/sprints/sprint-1/logs/Development-Log-Sprint-1.md +548 -0
- package/docs/sprints/sprint-1/logs/Orchestration-Log-Sprint-1.md +46 -0
- package/docs/sprints/sprint-1/logs/Phase1-Summary.md +84 -0
- package/docs/sprints/sprint-1/plans/Product-Backlog-Sprint-1-v1.md +40 -0
- package/docs/sprints/sprint-1/plans/Product-Backlog-v1.0.md +613 -0
- package/docs/sprints/sprint-1/plans/Project-Plan-Sprint-1-v1.0.md +210 -0
- package/docs/sprints/sprint-1/plans/Project-Plan-Sprint-1-v1.md +377 -0
- package/docs/sprints/sprint-1/reports/Design-Verification-Report-v1.0.md +220 -0
- package/docs/sprints/sprint-1/reports/Phase-Report-Sprint-1-v1.md +238 -0
- package/docs/sprints/sprint-1/reports/Security-Review-Report-v1.0.md +285 -0
- package/docs/sprints/sprint-1/reports/Sprint-Report-Sprint-1.md +74 -0
- package/docs/sprints/sprint-1/reports/Test-Report-v1.0.md +346 -0
- package/docs/sprints/sprint-1/reviews/Design-Verification-Report.md +508 -0
- package/docs/sprints/sprint-1/reviews/Security-Review-Report.md +589 -0
- package/docs/sprints/sprint-1/sprint-current/logs/WORKFLOW-CLEANUP-FINAL.md +121 -0
- package/docs/sprints/sprint-1/sprint-current/logs/WORKFLOW-OPTIMIZATION-COMPLETE.md +224 -0
- package/docs/sprints/sprint-1/sprint-current/logs/Workflow-Optimization-Progress.md +310 -0
- package/docs/sprints/sprint-1/sprint-current/logs/Workflow-Optimization-Session-Summary.md +420 -0
- package/docs/sprints/sprint-1/sprint-current/plans/Workflow-Optimization-Implementation-Plan.md +1124 -0
- package/docs/sprints/sprint-2/SPRINT-SUMMARY.md +150 -0
- package/docs/sprints/sprint-2/designs/UIUX-Design-Spec-Sprint-2-v1.md +352 -0
- package/docs/sprints/sprint-2/logs/Development-Log-Sprint-2-v1.md +293 -0
- package/docs/sprints/sprint-2/plans/Product-Backlog-Sprint-2-v1.md +62 -0
- package/docs/sprints/sprint-2/plans/Project-Plan-Sprint-2-v1.md +228 -0
- package/docs/sprints/sprint-2/reports/Phase-Report-Sprint-2-v1.md +303 -0
- package/docs/sprints/sprint-3/designs/UIUX-Design-Spec-Sprint-3-v1.md +160 -0
- package/docs/sprints/sprint-3/logs/Development-Log-Sprint-3-v1.md +249 -0
- package/docs/sprints/sprint-3/logs/Testing-Report-Sprint-3-v1.md +244 -0
- package/docs/sprints/sprint-3/plans/Product-Backlog-Sprint-3-v1.md +95 -0
- package/docs/sprints/sprint-3/reports/Final-Approval-Report-Sprint-3-v1.md +299 -0
- package/docs/sprints/sprint-3/reports/Sprint-Summary-Sprint-3-v1.md +276 -0
- package/docs/sprints/sprint-3/reviews/Design-Verification-Report-Sprint-3-v1.md +122 -0
- package/docs/sprints/sprint-3/reviews/Security-Review-Report-Sprint-3-v1.md +67 -0
- package/docs/sprints/sprint-5/designs/Backend-Design-Spec-Sprint-5-v1.md +1734 -0
- package/docs/sprints/sprint-5/designs/Design-Verification-Report.md +101 -0
- package/docs/sprints/sprint-5/designs/Security-Review-Report.md +84 -0
- package/docs/sprints/sprint-6/.brain-state.json +29 -0
- package/package.json +92 -16
- package/.agent/ide-integration/aider-commands.md +0 -40
- package/.agent/ide-integration/cline-config.json +0 -108
- package/.agent/ide-integration/cursor-rules.md +0 -63
- package/.agent/ide-integration/github-copilot-instructions.md +0 -75
- package/.agent/ide-integration/vscode-commands.json +0 -190
- package/.agent/ide-integration/windsurf-cascade.md +0 -125
- package/.agent/knowledge-base/index.md +0 -202
- package/.agent/legacy/roles/designer.md +0 -311
- package/.agent/legacy/roles/dev.md +0 -177
- package/.agent/legacy/roles/devops.md +0 -146
- package/.agent/legacy/roles/orchestrator.md +0 -339
- package/.agent/legacy/roles/pm.md +0 -120
- package/.agent/legacy/roles/po.md +0 -89
- package/.agent/legacy/roles/qa.md +0 -108
- package/.agent/legacy/roles/reporter.md +0 -70
- package/.agent/legacy/roles/sa.md +0 -118
- package/.agent/legacy/roles/seca.md +0 -112
- package/.agent/legacy/roles/stakeholder.md +0 -111
- package/.agent/legacy/roles/tester.md +0 -129
- package/.agent/rules/global.md.bak +0 -154
- package/.agent/usage.md +0 -653
- package/.agent/workflows/auto.md +0 -35
- package/.agent/workflows/dev.md +0 -30
- package/.agent/workflows/devops.md +0 -28
- package/.agent/workflows/kb-search.md +0 -22
- package/.agent/workflows/pm.md +0 -42
- package/.agent/workflows/po.md +0 -21
- package/.agent/workflows/qa.md +0 -31
- package/.agent/workflows/reporter.md +0 -21
- package/.agent/workflows/sa.md +0 -51
- package/.agent/workflows/seca.md +0 -21
- package/.agent/workflows/stakeholder.md +0 -26
- package/.agent/workflows/tester.md +0 -21
- package/.agent/workflows/uiux.md +0 -38
- package/.cursorrules +0 -49
- package/.env.template +0 -10
- package/.github/ISSUE_TEMPLATE/bug_report.yml +0 -47
- package/.github/ISSUE_TEMPLATE/config.yml +0 -8
- package/.github/ISSUE_TEMPLATE/feature_request.yml +0 -33
- package/.github/ISSUE_TEMPLATE/security_alert.yml +0 -28
- package/.github/ISSUE_TEMPLATE/task_implementation.yml +0 -37
- package/.github/copilot-instructions.md +0 -60
- package/bin/commands/create.js +0 -96
- package/bin/commands/help.js +0 -69
- package/bin/commands/ide.js +0 -116
- package/bin/commands/init-kb.js +0 -74
- package/bin/commands/install.js +0 -68
- package/bin/commands/list.js +0 -35
- package/bin/graph_brain.py +0 -86
- package/bin/sync_github.py +0 -75
- package/bin/utils/args-parser.js +0 -33
- package/bin/utils/colors.js +0 -21
- package/bin/verify_neo4j.py +0 -25
- /package/.agent/rules/{knowledge-base.md โ KNOWLEDGE-BASE.md} +0 -0
- /package/docs/architecture/{neo4j-learning-queries.md โ NEO4J-LEARNING-QUERIES.md} +0 -0
- /package/docs/reports/{comparison-leann-neo4j.md โ COMPARISON-LEANN-NEO4J.md} +0 -0
- /package/docs/sprints/{sprint-neo4j-brain.md โ SPRINT-NEO4J-BRAIN.md} +0 -0
|
@@ -0,0 +1,439 @@
|
|
|
1
|
+
# System 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
|
+
**System Analyst:** @SA
|
|
8
|
+
**Status:** Ready for Review
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## ๐ Architecture Overview
|
|
13
|
+
|
|
14
|
+
### System Type
|
|
15
|
+
**Static Site Generation (SSG)** - Zero JavaScript by default, progressively enhanced
|
|
16
|
+
|
|
17
|
+
### Technology Stack
|
|
18
|
+
- **Framework:** Astro 4.x
|
|
19
|
+
- **Styling:** Tailwind CSS 3.x
|
|
20
|
+
- **Icons:** astro-icon with Lucide icons
|
|
21
|
+
- **Animations:** View Transitions API + CSS
|
|
22
|
+
- **Build Tool:** Vite (built into Astro)
|
|
23
|
+
- **Deployment:** Vercel (primary) / Netlify (alternative)
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## ๐๏ธ Project Structure
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
landing-page/
|
|
31
|
+
โโโ src/
|
|
32
|
+
โ โโโ components/
|
|
33
|
+
โ โ โโโ Hero.astro
|
|
34
|
+
โ โ โโโ Features.astro
|
|
35
|
+
โ โ โโโ UseCases.astro
|
|
36
|
+
โ โ โโโ QuickStart.astro
|
|
37
|
+
โ โ โโโ FAQ.astro
|
|
38
|
+
โ โ โโโ Footer.astro
|
|
39
|
+
โ โ โโโ ui/
|
|
40
|
+
โ โ โโโ Button.astro
|
|
41
|
+
โ โ โโโ Card.astro
|
|
42
|
+
โ โ โโโ Section.astro
|
|
43
|
+
โ โโโ layouts/
|
|
44
|
+
โ โ โโโ Layout.astro
|
|
45
|
+
โ โโโ pages/
|
|
46
|
+
โ โ โโโ index.astro
|
|
47
|
+
โ โโโ styles/
|
|
48
|
+
โ โ โโโ global.css
|
|
49
|
+
โ โโโ config.ts
|
|
50
|
+
โโโ public/
|
|
51
|
+
โ โโโ favicon.svg
|
|
52
|
+
โ โโโ og-image.png
|
|
53
|
+
โ โโโ robots.txt
|
|
54
|
+
โโโ astro.config.mjs
|
|
55
|
+
โโโ tailwind.config.mjs
|
|
56
|
+
โโโ tsconfig.json
|
|
57
|
+
โโโ package.json
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## ๐ฏ Component Architecture
|
|
63
|
+
|
|
64
|
+
### Page Components
|
|
65
|
+
|
|
66
|
+
#### 1. Layout.astro (Base Layout)
|
|
67
|
+
```typescript
|
|
68
|
+
interface Props {
|
|
69
|
+
title: string;
|
|
70
|
+
description: string;
|
|
71
|
+
ogImage?: string;
|
|
72
|
+
}
|
|
73
|
+
```
|
|
74
|
+
**Responsibilities:**
|
|
75
|
+
- HTML structure
|
|
76
|
+
- Meta tags (SEO)
|
|
77
|
+
- Global styles
|
|
78
|
+
- View Transitions setup
|
|
79
|
+
|
|
80
|
+
#### 2. index.astro (Home Page)
|
|
81
|
+
**Composition:**
|
|
82
|
+
- Hero
|
|
83
|
+
- Features
|
|
84
|
+
- UseCases
|
|
85
|
+
- QuickStart
|
|
86
|
+
- FAQ
|
|
87
|
+
- Footer
|
|
88
|
+
|
|
89
|
+
### Feature Components
|
|
90
|
+
|
|
91
|
+
#### Hero.astro
|
|
92
|
+
**Content:**
|
|
93
|
+
- Main headline: "Transform Your IDE Into a Full SDLC Team"
|
|
94
|
+
- Subheadline: Feature highlights
|
|
95
|
+
- CTA buttons: "Get Started" + "View Docs"
|
|
96
|
+
- Animated terminal/code preview
|
|
97
|
+
|
|
98
|
+
#### Features.astro
|
|
99
|
+
**Grid Layout (3 columns):**
|
|
100
|
+
1. ๐ค 12 AI Roles
|
|
101
|
+
2. โก Auto Workflow
|
|
102
|
+
3. ๐ง Knowledge Base
|
|
103
|
+
4. ๐จ IDE Integration
|
|
104
|
+
5. ๐ 16 Templates
|
|
105
|
+
6. ๐ All Platforms
|
|
106
|
+
|
|
107
|
+
#### UseCases.astro
|
|
108
|
+
**Cards (3 scenarios):**
|
|
109
|
+
1. Solo Developer
|
|
110
|
+
2. Team Project
|
|
111
|
+
3. Existing Project
|
|
112
|
+
|
|
113
|
+
#### QuickStart.astro
|
|
114
|
+
**Steps:**
|
|
115
|
+
1. Install command
|
|
116
|
+
2. Create project
|
|
117
|
+
3. Setup IDE
|
|
118
|
+
4. Start building
|
|
119
|
+
|
|
120
|
+
#### FAQ.astro
|
|
121
|
+
**Accordion:**
|
|
122
|
+
- Common questions
|
|
123
|
+
- Expandable answers
|
|
124
|
+
|
|
125
|
+
#### Footer.astro
|
|
126
|
+
**Sections:**
|
|
127
|
+
- Links (Docs, GitHub, NPM)
|
|
128
|
+
- Social media
|
|
129
|
+
- Copyright
|
|
130
|
+
|
|
131
|
+
---
|
|
132
|
+
|
|
133
|
+
## ๐จ Design System
|
|
134
|
+
|
|
135
|
+
### Color Palette
|
|
136
|
+
```css
|
|
137
|
+
--primary: #3B82F6; /* Blue */
|
|
138
|
+
--secondary: #8B5CF6; /* Purple */
|
|
139
|
+
--accent: #10B981; /* Green */
|
|
140
|
+
--dark: #1F2937; /* Dark gray */
|
|
141
|
+
--light: #F9FAFB; /* Light gray */
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
### Typography
|
|
145
|
+
```css
|
|
146
|
+
--font-sans: 'Inter', system-ui, sans-serif;
|
|
147
|
+
--font-mono: 'JetBrains Mono', monospace;
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
### Spacing Scale
|
|
151
|
+
Tailwind default: 4px base unit
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
## ๐ง Configuration Files
|
|
156
|
+
|
|
157
|
+
### astro.config.mjs
|
|
158
|
+
```javascript
|
|
159
|
+
import { defineConfig } from 'astro/config';
|
|
160
|
+
import tailwind from '@astrojs/tailwind';
|
|
161
|
+
import icon from 'astro-icon';
|
|
162
|
+
|
|
163
|
+
export default defineConfig({
|
|
164
|
+
integrations: [tailwind(), icon()],
|
|
165
|
+
site: 'https://agentic-sdlc.dev',
|
|
166
|
+
output: 'static',
|
|
167
|
+
build: {
|
|
168
|
+
inlineStylesheets: 'auto'
|
|
169
|
+
}
|
|
170
|
+
});
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
### tailwind.config.mjs
|
|
174
|
+
```javascript
|
|
175
|
+
export default {
|
|
176
|
+
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
177
|
+
theme: {
|
|
178
|
+
extend: {
|
|
179
|
+
colors: {
|
|
180
|
+
primary: '#3B82F6',
|
|
181
|
+
secondary: '#8B5CF6',
|
|
182
|
+
accent: '#10B981'
|
|
183
|
+
},
|
|
184
|
+
fontFamily: {
|
|
185
|
+
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
186
|
+
mono: ['JetBrains Mono', 'monospace']
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
};
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
---
|
|
194
|
+
|
|
195
|
+
## ๐ Data Flow
|
|
196
|
+
|
|
197
|
+
### Static Content
|
|
198
|
+
All content is hardcoded in components (no CMS needed for v1)
|
|
199
|
+
|
|
200
|
+
### Future Enhancements
|
|
201
|
+
- GitHub API: Fetch star count
|
|
202
|
+
- NPM API: Fetch download stats
|
|
203
|
+
- Content Collections: Blog posts
|
|
204
|
+
|
|
205
|
+
---
|
|
206
|
+
|
|
207
|
+
## ๐ Build & Deployment
|
|
208
|
+
|
|
209
|
+
### Build Process
|
|
210
|
+
```bash
|
|
211
|
+
npm run build
|
|
212
|
+
# Output: dist/ (static HTML/CSS/JS)
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
### Deployment (Vercel)
|
|
216
|
+
```bash
|
|
217
|
+
vercel --prod
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
**Configuration:**
|
|
221
|
+
- Framework Preset: Astro
|
|
222
|
+
- Build Command: `npm run build`
|
|
223
|
+
- Output Directory: `dist`
|
|
224
|
+
- Node Version: 18.x
|
|
225
|
+
|
|
226
|
+
---
|
|
227
|
+
|
|
228
|
+
## ๐ Security Considerations
|
|
229
|
+
|
|
230
|
+
### Content Security Policy
|
|
231
|
+
```http
|
|
232
|
+
Content-Security-Policy:
|
|
233
|
+
default-src 'self';
|
|
234
|
+
script-src 'self' 'unsafe-inline';
|
|
235
|
+
style-src 'self' 'unsafe-inline';
|
|
236
|
+
img-src 'self' data: https:;
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
### Headers (vercel.json)
|
|
240
|
+
```json
|
|
241
|
+
{
|
|
242
|
+
"headers": [
|
|
243
|
+
{
|
|
244
|
+
"source": "/(.*)",
|
|
245
|
+
"headers": [
|
|
246
|
+
{ "key": "X-Frame-Options", "value": "DENY" },
|
|
247
|
+
{ "key": "X-Content-Type-Options", "value": "nosniff" },
|
|
248
|
+
{ "key": "Referrer-Policy", "value": "strict-origin-when-cross-origin" }
|
|
249
|
+
]
|
|
250
|
+
}
|
|
251
|
+
]
|
|
252
|
+
}
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
---
|
|
256
|
+
|
|
257
|
+
## โก Performance Optimization
|
|
258
|
+
|
|
259
|
+
### Astro Benefits
|
|
260
|
+
- Zero JS by default
|
|
261
|
+
- Partial hydration (islands)
|
|
262
|
+
- Automatic image optimization
|
|
263
|
+
- Built-in code splitting
|
|
264
|
+
|
|
265
|
+
### Targets
|
|
266
|
+
- First Contentful Paint: < 1s
|
|
267
|
+
- Time to Interactive: < 2s
|
|
268
|
+
- Lighthouse Score: > 95
|
|
269
|
+
|
|
270
|
+
---
|
|
271
|
+
|
|
272
|
+
## ๐ฑ Responsive Design
|
|
273
|
+
|
|
274
|
+
### Breakpoints
|
|
275
|
+
```css
|
|
276
|
+
sm: 640px /* Mobile landscape */
|
|
277
|
+
md: 768px /* Tablet */
|
|
278
|
+
lg: 1024px /* Desktop */
|
|
279
|
+
xl: 1280px /* Large desktop */
|
|
280
|
+
```
|
|
281
|
+
|
|
282
|
+
### Mobile-First Approach
|
|
283
|
+
All components designed for mobile, enhanced for desktop
|
|
284
|
+
|
|
285
|
+
---
|
|
286
|
+
|
|
287
|
+
## ๐งช Testing Strategy
|
|
288
|
+
|
|
289
|
+
### Manual Testing
|
|
290
|
+
- Visual regression (screenshots)
|
|
291
|
+
- Cross-browser (Chrome, Firefox, Safari)
|
|
292
|
+
- Device testing (mobile, tablet, desktop)
|
|
293
|
+
|
|
294
|
+
### Automated Testing
|
|
295
|
+
- Lighthouse CI
|
|
296
|
+
- HTML validation
|
|
297
|
+
- Link checking
|
|
298
|
+
|
|
299
|
+
---
|
|
300
|
+
|
|
301
|
+
## ๐ฆ Dependencies
|
|
302
|
+
|
|
303
|
+
### Production
|
|
304
|
+
```json
|
|
305
|
+
{
|
|
306
|
+
"astro": "^4.0.0",
|
|
307
|
+
"@astrojs/tailwind": "^5.0.0",
|
|
308
|
+
"astro-icon": "^1.0.0",
|
|
309
|
+
"tailwindcss": "^3.4.0"
|
|
310
|
+
}
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
### Development
|
|
314
|
+
```json
|
|
315
|
+
{
|
|
316
|
+
"typescript": "^5.3.0",
|
|
317
|
+
"@types/node": "^20.0.0"
|
|
318
|
+
}
|
|
319
|
+
```
|
|
320
|
+
|
|
321
|
+
---
|
|
322
|
+
|
|
323
|
+
## ๐ API Endpoints
|
|
324
|
+
|
|
325
|
+
### None Required (v1)
|
|
326
|
+
Pure static site, no backend needed
|
|
327
|
+
|
|
328
|
+
### Future Considerations
|
|
329
|
+
- Newsletter signup: Serverless function
|
|
330
|
+
- Contact form: Edge function
|
|
331
|
+
- Analytics: Vercel Analytics
|
|
332
|
+
|
|
333
|
+
---
|
|
334
|
+
|
|
335
|
+
## ๐ SEO Strategy
|
|
336
|
+
|
|
337
|
+
### Meta Tags
|
|
338
|
+
```html
|
|
339
|
+
<title>Agentic SDLC - Transform Your IDE Into a Full SDLC Team</title>
|
|
340
|
+
<meta name="description" content="12 AI roles, automated workflows, knowledge management. Build faster with Agentic SDLC." />
|
|
341
|
+
<meta property="og:image" content="/og-image.png" />
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
### Sitemap
|
|
345
|
+
Auto-generated by Astro
|
|
346
|
+
|
|
347
|
+
### robots.txt
|
|
348
|
+
```
|
|
349
|
+
User-agent: *
|
|
350
|
+
Allow: /
|
|
351
|
+
Sitemap: https://agentic-sdlc.dev/sitemap.xml
|
|
352
|
+
```
|
|
353
|
+
|
|
354
|
+
---
|
|
355
|
+
|
|
356
|
+
## ๐ฏ Accessibility
|
|
357
|
+
|
|
358
|
+
### WCAG 2.1 AA Compliance
|
|
359
|
+
- Semantic HTML
|
|
360
|
+
- ARIA labels where needed
|
|
361
|
+
- Keyboard navigation
|
|
362
|
+
- Color contrast ratios > 4.5:1
|
|
363
|
+
- Alt text for images
|
|
364
|
+
|
|
365
|
+
---
|
|
366
|
+
|
|
367
|
+
## ๐ Analytics
|
|
368
|
+
|
|
369
|
+
### Vercel Analytics (Recommended)
|
|
370
|
+
- Page views
|
|
371
|
+
- Performance metrics
|
|
372
|
+
- No cookies required
|
|
373
|
+
|
|
374
|
+
---
|
|
375
|
+
|
|
376
|
+
## ๐ CI/CD Pipeline
|
|
377
|
+
|
|
378
|
+
### GitHub Actions (Optional)
|
|
379
|
+
```yaml
|
|
380
|
+
name: Deploy
|
|
381
|
+
on: [push]
|
|
382
|
+
jobs:
|
|
383
|
+
deploy:
|
|
384
|
+
runs-on: ubuntu-latest
|
|
385
|
+
steps:
|
|
386
|
+
- uses: actions/checkout@v3
|
|
387
|
+
- run: npm ci
|
|
388
|
+
- run: npm run build
|
|
389
|
+
- uses: vercel/action@v1
|
|
390
|
+
```
|
|
391
|
+
|
|
392
|
+
---
|
|
393
|
+
|
|
394
|
+
## ๐ Technical Decisions
|
|
395
|
+
|
|
396
|
+
### Why Astro?
|
|
397
|
+
โ
Zero JS by default (fast)
|
|
398
|
+
โ
Component-based (maintainable)
|
|
399
|
+
โ
Great DX (TypeScript, Vite)
|
|
400
|
+
โ
SEO-friendly (SSG)
|
|
401
|
+
โ
Easy deployment
|
|
402
|
+
|
|
403
|
+
### Why Tailwind?
|
|
404
|
+
โ
Utility-first (fast development)
|
|
405
|
+
โ
Small bundle size (purged)
|
|
406
|
+
โ
Consistent design system
|
|
407
|
+
โ
Responsive utilities
|
|
408
|
+
|
|
409
|
+
---
|
|
410
|
+
|
|
411
|
+
## ๐ง Known Limitations
|
|
412
|
+
|
|
413
|
+
1. No interactive demos (v1) - Static only
|
|
414
|
+
2. No real-time data - Hardcoded content
|
|
415
|
+
3. No user accounts - Landing page only
|
|
416
|
+
|
|
417
|
+
---
|
|
418
|
+
|
|
419
|
+
## ๐ฎ Future Enhancements
|
|
420
|
+
|
|
421
|
+
### Phase 2
|
|
422
|
+
- Interactive code playground
|
|
423
|
+
- Live GitHub stats
|
|
424
|
+
- Blog section (Content Collections)
|
|
425
|
+
|
|
426
|
+
### Phase 3
|
|
427
|
+
- User dashboard
|
|
428
|
+
- Authentication
|
|
429
|
+
- Usage analytics
|
|
430
|
+
|
|
431
|
+
---
|
|
432
|
+
|
|
433
|
+
### Next Step:
|
|
434
|
+
- @UIUX - Create visual design specification
|
|
435
|
+
- @PO - Create product backlog with GitHub issues
|
|
436
|
+
- @QA - Prepare for design verification
|
|
437
|
+
|
|
438
|
+
#designing #sa
|
|
439
|
+
|