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,644 @@
|
|
|
1
|
+
# UI/UX Design Specification - Version 1.0
|
|
2
|
+
|
|
3
|
+
## Document Info
|
|
4
|
+
| Field | Value |
|
|
5
|
+
|-------|----------|
|
|
6
|
+
| Version | 1.0 |
|
|
7
|
+
| Date | 2026-01-01 |
|
|
8
|
+
| Author | @UIUX |
|
|
9
|
+
| Platform | Web (Desktop + Mobile Responsive) |
|
|
10
|
+
| Status | Draft → Auto-Review |
|
|
11
|
+
| Sprint | Sprint 1 |
|
|
12
|
+
| Design Style | Premium, Modern, Glassmorphism, Dark Mode |
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## 1. Design Overview
|
|
17
|
+
|
|
18
|
+
**Target Users:** Developers, Tech Leads, Solo Developers, Development Teams
|
|
19
|
+
**Platform:** Web (Responsive - Mobile First)
|
|
20
|
+
**Design Goals:**
|
|
21
|
+
- 🎨 **WOW Factor:** Stunning first impression with premium aesthetics
|
|
22
|
+
- 🚀 **Conversion:** Clear CTAs, easy installation path
|
|
23
|
+
- 📱 **Responsive:** Flawless experience on all devices
|
|
24
|
+
- ♿ **Accessible:** WCAG 2.1 AA compliant
|
|
25
|
+
- ⚡ **Performance:** Smooth 60fps animations, fast load times
|
|
26
|
+
|
|
27
|
+
**Design Philosophy:**
|
|
28
|
+
> "Premium, not MVP. Dynamic, not static. Accessible, not exclusive."
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## 2. User Personas
|
|
33
|
+
|
|
34
|
+
### Persona 1: Solo Developer (Primary)
|
|
35
|
+
| Attribute | Details |
|
|
36
|
+
|-----------|---------|
|
|
37
|
+
| **Role** | Full-stack Developer, Indie Hacker |
|
|
38
|
+
| **Age Range** | 25-35 |
|
|
39
|
+
| **Goals** | Build projects faster, automate repetitive tasks, improve code quality |
|
|
40
|
+
| **Pain Points** | Wearing too many hats, context switching, forgetting best practices |
|
|
41
|
+
| **Tech Savviness** | High (uses Cursor, GitHub Copilot, modern tools) |
|
|
42
|
+
| **Platform Usage** | Desktop (primary), Mobile (docs) |
|
|
43
|
+
|
|
44
|
+
### Persona 2: Tech Lead (Secondary)
|
|
45
|
+
| Attribute | Details |
|
|
46
|
+
|-----------|---------|
|
|
47
|
+
| **Role** | Engineering Manager, Team Lead |
|
|
48
|
+
| **Age Range** | 30-45 |
|
|
49
|
+
| **Goals** | Standardize team workflows, ensure quality, reduce onboarding time |
|
|
50
|
+
| **Pain Points** | Inconsistent processes, knowledge silos, manual reviews |
|
|
51
|
+
| **Tech Savviness** | High |
|
|
52
|
+
| **Platform Usage** | Desktop |
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## 3. User Flows
|
|
57
|
+
|
|
58
|
+
### Flow 1: First-Time Visitor → Installation
|
|
59
|
+
```
|
|
60
|
+
┌──────────────┐ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐
|
|
61
|
+
│ Land on Hero │───▶│ Scroll to │───▶│ See Demo │───▶│ Click "Get │
|
|
62
|
+
│ (Impressed) │ │ Features │ │ (Convinced) │ │ Started" CTA │
|
|
63
|
+
└──────────────┘ └──────────────┘ └──────────────┘ └──────┬───────┘
|
|
64
|
+
│
|
|
65
|
+
▼
|
|
66
|
+
┌──────────────┐ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐
|
|
67
|
+
│ Success! │◀───│ Follow │◀───│ Copy Install │◀───│ Jump to │
|
|
68
|
+
│ (Using it) │ │ Instructions │ │ Command │ │ Quick Start │
|
|
69
|
+
└──────────────┘ └──────────────┘ └──────────────┘ └──────────────┘
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
### Flow 2: Returning Visitor → Documentation
|
|
73
|
+
```
|
|
74
|
+
┌──────────────┐ ┌──────────────┐ ┌──────────────┐
|
|
75
|
+
│ Direct Link │───▶│ Quick Scan │───▶│ Find Info │
|
|
76
|
+
│ from GitHub │ │ Sections │ │ (Docs Link) │
|
|
77
|
+
└──────────────┘ └──────────────┘ └──────────────┘
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## 4. Screen/Interface Specifications
|
|
83
|
+
|
|
84
|
+
### 4.1 Hero Section (Above the Fold)
|
|
85
|
+
|
|
86
|
+
**Layout:**
|
|
87
|
+
```
|
|
88
|
+
┌────────────────────────────────────────────────────────────────┐
|
|
89
|
+
│ [Gradient Background] │
|
|
90
|
+
│ │
|
|
91
|
+
│ ┌─────────────────────┐ │
|
|
92
|
+
│ │ Agentic SDLC │ (Logo + Title) │
|
|
93
|
+
│ └─────────────────────┘ │
|
|
94
|
+
│ │
|
|
95
|
+
│ Transform Your IDE Into a Full │
|
|
96
|
+
│ SDLC Team with AI │
|
|
97
|
+
│ │
|
|
98
|
+
│ 12 Specialized Roles • Automated Workflows • │
|
|
99
|
+
│ Knowledge Management │
|
|
100
|
+
│ │
|
|
101
|
+
│ ┌──────────────┐ ┌──────────────┐ │
|
|
102
|
+
│ │ Get Started │ │ View Demo │ │
|
|
103
|
+
│ │ (Primary) │ │ (Secondary) │ │
|
|
104
|
+
│ └──────────────┘ └──────────────┘ │
|
|
105
|
+
│ │
|
|
106
|
+
│ $ npm install -g agentic-sdlc │
|
|
107
|
+
│ [Copy button with animation] │
|
|
108
|
+
│ │
|
|
109
|
+
└────────────────────────────────────────────────────────────────┘
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
**Specifications:**
|
|
113
|
+
| Element | Specification |
|
|
114
|
+
|---------|---------------|
|
|
115
|
+
| **Container** | Max-width: 1200px, Padding: 80px 24px, Min-height: 100vh |
|
|
116
|
+
| **Title (H1)** | Font: Space Grotesk 700, Size: 64px (mobile: 40px), Color: White |
|
|
117
|
+
| **Subtitle** | Font: Inter 400, Size: 24px (mobile: 18px), Color: rgba(255,255,255,0.9) |
|
|
118
|
+
| **Background** | Gradient: Purple (#8B5CF6) → Blue (#3B82F6) → Pink (#EC4899), Animated mesh |
|
|
119
|
+
| **CTA Buttons** | Height: 56px, Padding: 16px 32px, Border-radius: 12px |
|
|
120
|
+
| **Code Block** | Font: Fira Code, Size: 16px, Background: rgba(0,0,0,0.3), Glassmorphism |
|
|
121
|
+
|
|
122
|
+
**States:**
|
|
123
|
+
- **CTA Primary (Get Started):**
|
|
124
|
+
- Default: Solid white bg, purple text, shadow
|
|
125
|
+
- Hover: Scale 1.05, glow effect
|
|
126
|
+
- Active: Scale 0.98
|
|
127
|
+
- **CTA Secondary (View Demo):**
|
|
128
|
+
- Default: Glass border, white text
|
|
129
|
+
- Hover: Glass fill, glow
|
|
130
|
+
- **Copy Button:**
|
|
131
|
+
- Default: Icon only, subtle
|
|
132
|
+
- Hover: Tooltip "Copy"
|
|
133
|
+
- Clicked: Checkmark, "Copied!"
|
|
134
|
+
|
|
135
|
+
**Animations:**
|
|
136
|
+
- Hero title: Fade up + blur (500ms, ease-out)
|
|
137
|
+
- Subtitle: Fade up + blur (600ms, ease-out, delay 100ms)
|
|
138
|
+
- CTAs: Fade up + blur (700ms, ease-out, delay 200ms)
|
|
139
|
+
- Background: Slow gradient animation (10s loop)
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
### 4.2 Features Section
|
|
144
|
+
|
|
145
|
+
**Layout:**
|
|
146
|
+
```
|
|
147
|
+
┌────────────────────────────────────────────────────────────────┐
|
|
148
|
+
│ Why Agentic SDLC? │
|
|
149
|
+
│ │
|
|
150
|
+
│ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ │
|
|
151
|
+
│ │ [Icon] │ │ [Icon] │ │ [Icon] │ │ [Icon] │ │
|
|
152
|
+
│ │ 12 Roles │ │ Slash │ │ Auto │ │ Knowledge│ │
|
|
153
|
+
│ │ │ │ Commands │ │ Workflow │ │ Base │ │
|
|
154
|
+
│ │ [Desc] │ │ [Desc] │ │ [Desc] │ │ [Desc] │ │
|
|
155
|
+
│ └──────────┘ └──────────┘ └──────────┘ └──────────┘ │
|
|
156
|
+
│ │
|
|
157
|
+
│ [4 more cards in second row] │
|
|
158
|
+
│ │
|
|
159
|
+
└────────────────────────────────────────────────────────────────┘
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
**Feature Card Specifications:**
|
|
163
|
+
| Element | Specification |
|
|
164
|
+
|---------|---------------|
|
|
165
|
+
| **Card** | Width: 280px, Padding: 32px, Border-radius: 16px |
|
|
166
|
+
| **Background** | Glassmorphism: rgba(255,255,255,0.05), backdrop-blur(10px) |
|
|
167
|
+
| **Border** | 1px solid rgba(255,255,255,0.1), gradient on hover |
|
|
168
|
+
| **Icon** | Size: 48px, Color: Gradient (purple → blue) |
|
|
169
|
+
| **Title** | Font: Space Grotesk 600, Size: 20px, Color: White |
|
|
170
|
+
| **Description** | Font: Inter 400, Size: 14px, Color: rgba(255,255,255,0.7) |
|
|
171
|
+
| **Shadow** | 0 8px 32px rgba(0,0,0,0.2), glow on hover |
|
|
172
|
+
|
|
173
|
+
**States:**
|
|
174
|
+
- Default: Subtle glass effect
|
|
175
|
+
- Hover: Border gradient animation, lift (translateY: -8px), glow
|
|
176
|
+
- Focus: Visible focus ring
|
|
177
|
+
|
|
178
|
+
**Grid:**
|
|
179
|
+
- Desktop: 4 columns
|
|
180
|
+
- Tablet: 2 columns
|
|
181
|
+
- Mobile: 1 column
|
|
182
|
+
|
|
183
|
+
---
|
|
184
|
+
|
|
185
|
+
### 4.3 How It Works Section
|
|
186
|
+
|
|
187
|
+
**Layout:**
|
|
188
|
+
```
|
|
189
|
+
┌────────────────────────────────────────────────────────────────┐
|
|
190
|
+
│ How It Works │
|
|
191
|
+
│ │
|
|
192
|
+
│ ┌────────────────────────────────────────────────────────┐ │
|
|
193
|
+
│ │ │ │
|
|
194
|
+
│ │ [SDLC Workflow Diagram - Animated] │ │
|
|
195
|
+
│ │ │ │
|
|
196
|
+
│ │ Planning → Design → Dev → Test → Deploy │ │
|
|
197
|
+
│ │ ↓ ↓ ↓ ↓ ↓ │ │
|
|
198
|
+
│ │ @PM @SA @DEV @TESTER @DEVOPS │ │
|
|
199
|
+
│ │ │ │
|
|
200
|
+
│ └────────────────────────────────────────────────────────┘ │
|
|
201
|
+
│ │
|
|
202
|
+
│ ┌──────────────────────────────────────────────────────────┐ │
|
|
203
|
+
│ │ Step 1: Install │ │
|
|
204
|
+
│ │ Step 2: Initialize │ │
|
|
205
|
+
│ │ Step 3: Use Slash Commands │ │
|
|
206
|
+
│ └──────────────────────────────────────────────────────────┘ │
|
|
207
|
+
└────────────────────────────────────────────────────────────────┘
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
**Workflow Diagram:**
|
|
211
|
+
- Animated flow with glowing connections
|
|
212
|
+
- Each phase highlights on scroll
|
|
213
|
+
- Role icons appear with stagger animation
|
|
214
|
+
|
|
215
|
+
---
|
|
216
|
+
|
|
217
|
+
### 4.4 Live Demo Section (Interactive Island)
|
|
218
|
+
|
|
219
|
+
**Layout:**
|
|
220
|
+
```
|
|
221
|
+
┌────────────────────────────────────────────────────────────────┐
|
|
222
|
+
│ See It In Action │
|
|
223
|
+
│ │
|
|
224
|
+
│ ┌────────────────────────────────────────────────────────┐ │
|
|
225
|
+
│ │ $ npm install -g agentic-sdlc │ │
|
|
226
|
+
│ │ ✓ Installed successfully │ │
|
|
227
|
+
│ │ │ │
|
|
228
|
+
│ │ $ agentic-sdlc create my-app │ │
|
|
229
|
+
│ │ ✓ Project created │ │
|
|
230
|
+
│ │ │ │
|
|
231
|
+
│ │ $ cd my-app && /pm Build a todo app │ │
|
|
232
|
+
│ │ 🤖 PM: Creating project plan... │ │
|
|
233
|
+
│ │ ✓ Plan created: docs/sprints/sprint-1/plans/... │ │
|
|
234
|
+
│ │ [Typing animation continues...] │ │
|
|
235
|
+
│ └────────────────────────────────────────────────────────┘ │
|
|
236
|
+
│ │
|
|
237
|
+
└────────────────────────────────────────────────────────────────┘
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
**Terminal Specifications:**
|
|
241
|
+
| Element | Specification |
|
|
242
|
+
|---------|---------------|
|
|
243
|
+
| **Container** | Background: #1E1E1E (VS Code dark), Border-radius: 12px |
|
|
244
|
+
| **Font** | Fira Code, Size: 14px, Line-height: 1.6 |
|
|
245
|
+
| **Colors** | Prompt: #4EC9B0, Success: #4EC9B0, Error: #F48771, Command: #DCDCAA |
|
|
246
|
+
| **Cursor** | Blinking white block, 500ms interval |
|
|
247
|
+
| **Animation** | Typing effect: 50ms per character, realistic pauses |
|
|
248
|
+
|
|
249
|
+
---
|
|
250
|
+
|
|
251
|
+
### 4.5 Quick Start Section
|
|
252
|
+
|
|
253
|
+
**Layout:**
|
|
254
|
+
```
|
|
255
|
+
┌────────────────────────────────────────────────────────────────┐
|
|
256
|
+
│ Quick Start │
|
|
257
|
+
│ │
|
|
258
|
+
│ ┌──────────────────────────────────────────────────────────┐ │
|
|
259
|
+
│ │ # Install │ │
|
|
260
|
+
│ │ npm install -g agentic-sdlc [Copy] │ │
|
|
261
|
+
│ └──────────────────────────────────────────────────────────┘ │
|
|
262
|
+
│ │
|
|
263
|
+
│ ┌──────────────────────────────────────────────────────────┐ │
|
|
264
|
+
│ │ # Create project │ │
|
|
265
|
+
│ │ agentic-sdlc create my-project [Copy] │ │
|
|
266
|
+
│ └──────────────────────────────────────────────────────────┘ │
|
|
267
|
+
│ │
|
|
268
|
+
│ ┌──────────────────────────────────────────────────────────┐ │
|
|
269
|
+
│ │ # Setup IDE │ │
|
|
270
|
+
│ │ agentic-sdlc ide cursor [Copy] │ │
|
|
271
|
+
│ └──────────────────────────────────────────────────────────┘ │
|
|
272
|
+
│ │
|
|
273
|
+
└────────────────────────────────────────────────────────────────┘
|
|
274
|
+
```
|
|
275
|
+
|
|
276
|
+
**Code Block Specifications:**
|
|
277
|
+
- Syntax highlighting with Shiki (server-side)
|
|
278
|
+
- Copy button on hover
|
|
279
|
+
- Success feedback on copy
|
|
280
|
+
|
|
281
|
+
---
|
|
282
|
+
|
|
283
|
+
### 4.6 Tech Stack Section
|
|
284
|
+
|
|
285
|
+
**Layout:**
|
|
286
|
+
```
|
|
287
|
+
┌────────────────────────────────────────────────────────────────┐
|
|
288
|
+
│ Supported IDEs & Platforms │
|
|
289
|
+
│ │
|
|
290
|
+
│ ┌────────┐ ┌────────┐ ┌────────┐ ┌────────┐ ┌────────┐ │
|
|
291
|
+
│ │[Cursor]│ │[Copilot│ │[Windsurf│ │[Cline] │ │[Aider] │ │
|
|
292
|
+
│ │ Logo │ │ Logo] │ │ Logo] │ │ Logo] │ │ Logo] │ │
|
|
293
|
+
│ └────────┘ └────────┘ └────────┘ └────────┘ └────────┘ │
|
|
294
|
+
│ │
|
|
295
|
+
│ ┌────────┐ ┌────────┐ ┌────────┐ ┌────────┐ │
|
|
296
|
+
│ │ Web │ │ Mobile │ │Desktop │ │ CLI │ │
|
|
297
|
+
│ └────────┘ └────────┘ └────────┘ └────────┘ │
|
|
298
|
+
│ │
|
|
299
|
+
└────────────────────────────────────────────────────────────────┘
|
|
300
|
+
```
|
|
301
|
+
|
|
302
|
+
**Logo Card:**
|
|
303
|
+
- Grayscale by default
|
|
304
|
+
- Color + glow on hover
|
|
305
|
+
- Smooth transition
|
|
306
|
+
|
|
307
|
+
---
|
|
308
|
+
|
|
309
|
+
### 4.7 Stats Section
|
|
310
|
+
|
|
311
|
+
**Layout:**
|
|
312
|
+
```
|
|
313
|
+
┌────────────────────────────────────────────────────────────────┐
|
|
314
|
+
│ │
|
|
315
|
+
│ ┌──────────┐ ┌──────────┐ ┌──────────┐ │
|
|
316
|
+
│ │ 12 │ │ 16 │ │ 5+ │ │
|
|
317
|
+
│ │ Roles │ │Templates │ │ IDEs │ │
|
|
318
|
+
│ └──────────┘ └──────────┘ └──────────┘ │
|
|
319
|
+
│ │
|
|
320
|
+
└────────────────────────────────────────────────────────────────┘
|
|
321
|
+
```
|
|
322
|
+
|
|
323
|
+
**Number Animation:**
|
|
324
|
+
- Count up animation on scroll into view
|
|
325
|
+
- Large numbers: Space Grotesk 700, 72px
|
|
326
|
+
- Labels: Inter 400, 16px
|
|
327
|
+
|
|
328
|
+
---
|
|
329
|
+
|
|
330
|
+
### 4.8 Footer
|
|
331
|
+
|
|
332
|
+
**Layout:**
|
|
333
|
+
```
|
|
334
|
+
┌────────────────────────────────────────────────────────────────┐
|
|
335
|
+
│ Agentic SDLC │
|
|
336
|
+
│ Simulating a complete SDLC with AI Agents │
|
|
337
|
+
│ │
|
|
338
|
+
│ [GitHub] [NPM] [Docs] [License] │
|
|
339
|
+
│ │
|
|
340
|
+
│ © 2026 truongnat • MIT License │
|
|
341
|
+
└────────────────────────────────────────────────────────────────┘
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
---
|
|
345
|
+
|
|
346
|
+
## 5. Design System
|
|
347
|
+
|
|
348
|
+
### 5.1 Color Palette
|
|
349
|
+
|
|
350
|
+
| Token | Hex | Usage | Contrast |
|
|
351
|
+
|-------|-----|-------|----------|
|
|
352
|
+
| `--color-primary` | #8B5CF6 | Primary purple, CTAs | - |
|
|
353
|
+
| `--color-secondary` | #3B82F6 | Secondary blue, accents | - |
|
|
354
|
+
| `--color-accent` | #EC4899 | Pink accent, highlights | - |
|
|
355
|
+
| `--color-success` | #10B981 | Success states, checkmarks | WCAG AA ✓ |
|
|
356
|
+
| `--color-warning` | #F59E0B | Warnings | WCAG AA ✓ |
|
|
357
|
+
| `--color-error` | #EF4444 | Errors | WCAG AA ✓ |
|
|
358
|
+
| `--color-bg-dark` | #0F172A | Background (dark mode) | - |
|
|
359
|
+
| `--color-bg-darker` | #020617 | Deeper background | - |
|
|
360
|
+
| `--color-text-primary` | #FFFFFF | Primary text (on dark) | WCAG AAA ✓ |
|
|
361
|
+
| `--color-text-secondary` | rgba(255,255,255,0.7) | Secondary text | WCAG AA ✓ |
|
|
362
|
+
| `--color-text-tertiary` | rgba(255,255,255,0.5) | Tertiary text | - |
|
|
363
|
+
| `--color-glass` | rgba(255,255,255,0.05) | Glassmorphism bg | - |
|
|
364
|
+
| `--color-glass-border` | rgba(255,255,255,0.1) | Glass borders | - |
|
|
365
|
+
|
|
366
|
+
**Gradients:**
|
|
367
|
+
```css
|
|
368
|
+
--gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 50%, #EC4899 100%);
|
|
369
|
+
--gradient-hero: radial-gradient(ellipse at top, #8B5CF6, transparent),
|
|
370
|
+
radial-gradient(ellipse at bottom, #3B82F6, transparent);
|
|
371
|
+
--gradient-card-border: linear-gradient(135deg, #8B5CF6, #3B82F6);
|
|
372
|
+
```
|
|
373
|
+
|
|
374
|
+
### 5.2 Typography
|
|
375
|
+
|
|
376
|
+
| Token | Font | Size (Desktop) | Size (Mobile) | Weight | Line Height | Usage |
|
|
377
|
+
|-------|------|----------------|---------------|--------|-------------|-------|
|
|
378
|
+
| `--font-display` | Space Grotesk | 64px | 40px | 700 | 1.1 | Hero title |
|
|
379
|
+
| `--font-h1` | Space Grotesk | 48px | 32px | 700 | 1.2 | Section titles |
|
|
380
|
+
| `--font-h2` | Space Grotesk | 32px | 24px | 600 | 1.3 | Subsections |
|
|
381
|
+
| `--font-h3` | Space Grotesk | 24px | 20px | 600 | 1.4 | Card titles |
|
|
382
|
+
| `--font-body-lg` | Inter | 20px | 18px | 400 | 1.6 | Hero subtitle |
|
|
383
|
+
| `--font-body` | Inter | 16px | 16px | 400 | 1.6 | Body text |
|
|
384
|
+
| `--font-body-sm` | Inter | 14px | 14px | 400 | 1.5 | Captions |
|
|
385
|
+
| `--font-mono` | Fira Code | 14px | 13px | 400 | 1.6 | Code, terminal |
|
|
386
|
+
|
|
387
|
+
**Font Loading:**
|
|
388
|
+
```html
|
|
389
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
390
|
+
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600;700&family=Inter:wght@400;500;600&family=Fira+Code:wght@400;500&display=swap" rel="stylesheet">
|
|
391
|
+
```
|
|
392
|
+
|
|
393
|
+
### 5.3 Spacing System (8px base)
|
|
394
|
+
|
|
395
|
+
| Token | Value | Usage |
|
|
396
|
+
|-------|-------|-------|
|
|
397
|
+
| `--space-1` | 4px | Tight spacing, icon gaps |
|
|
398
|
+
| `--space-2` | 8px | Small gaps |
|
|
399
|
+
| `--space-3` | 12px | Component padding (small) |
|
|
400
|
+
| `--space-4` | 16px | Component padding (medium) |
|
|
401
|
+
| `--space-6` | 24px | Component padding (large) |
|
|
402
|
+
| `--space-8` | 32px | Section gaps (small) |
|
|
403
|
+
| `--space-12` | 48px | Section gaps (medium) |
|
|
404
|
+
| `--space-16` | 64px | Section gaps (large) |
|
|
405
|
+
| `--space-20` | 80px | Section padding (vertical) |
|
|
406
|
+
| `--space-24` | 96px | Large section padding |
|
|
407
|
+
|
|
408
|
+
### 5.4 Border Radius
|
|
409
|
+
|
|
410
|
+
| Token | Value | Usage |
|
|
411
|
+
|-------|-------|-------|
|
|
412
|
+
| `--radius-sm` | 8px | Small elements, badges |
|
|
413
|
+
| `--radius-md` | 12px | Buttons, inputs, cards |
|
|
414
|
+
| `--radius-lg` | 16px | Large cards, modals |
|
|
415
|
+
| `--radius-xl` | 24px | Hero sections |
|
|
416
|
+
| `--radius-full` | 9999px | Pills, avatars |
|
|
417
|
+
|
|
418
|
+
### 5.5 Shadows & Effects
|
|
419
|
+
|
|
420
|
+
```css
|
|
421
|
+
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
422
|
+
--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
|
|
423
|
+
--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
|
|
424
|
+
--shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.3);
|
|
425
|
+
|
|
426
|
+
--glow-primary: 0 0 20px rgba(139, 92, 246, 0.5);
|
|
427
|
+
--glow-secondary: 0 0 20px rgba(59, 130, 246, 0.5);
|
|
428
|
+
--glow-accent: 0 0 20px rgba(236, 72, 153, 0.5);
|
|
429
|
+
|
|
430
|
+
--blur-sm: blur(4px);
|
|
431
|
+
--blur-md: blur(8px);
|
|
432
|
+
--blur-lg: blur(16px);
|
|
433
|
+
```
|
|
434
|
+
|
|
435
|
+
### 5.6 Component Library
|
|
436
|
+
|
|
437
|
+
| Component | Variants | File |
|
|
438
|
+
|-----------|----------|------|
|
|
439
|
+
| **Button** | Primary, Secondary, Ghost, Icon | `Button.astro` |
|
|
440
|
+
| **Card** | Feature, Glass, Elevated | `Card.astro` |
|
|
441
|
+
| **Badge** | Role, Status | `Badge.astro` |
|
|
442
|
+
| **CodeBlock** | Inline, Block | `CodeBlock.astro` |
|
|
443
|
+
| **Icon** | Lucide set | `Icon.astro` |
|
|
444
|
+
| **Input** | Text, Search | `Input.astro` |
|
|
445
|
+
|
|
446
|
+
**Button Specifications:**
|
|
447
|
+
```css
|
|
448
|
+
/* Primary Button */
|
|
449
|
+
.btn-primary {
|
|
450
|
+
background: white;
|
|
451
|
+
color: var(--color-primary);
|
|
452
|
+
padding: 16px 32px;
|
|
453
|
+
border-radius: var(--radius-md);
|
|
454
|
+
font-weight: 600;
|
|
455
|
+
box-shadow: var(--shadow-lg);
|
|
456
|
+
transition: all 200ms ease;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.btn-primary:hover {
|
|
460
|
+
transform: scale(1.05);
|
|
461
|
+
box-shadow: var(--shadow-xl), var(--glow-primary);
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
/* Secondary Button (Glass) */
|
|
465
|
+
.btn-secondary {
|
|
466
|
+
background: var(--color-glass);
|
|
467
|
+
backdrop-filter: var(--blur-md);
|
|
468
|
+
border: 1px solid var(--color-glass-border);
|
|
469
|
+
color: white;
|
|
470
|
+
/* ... same padding, radius */
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.btn-secondary:hover {
|
|
474
|
+
background: rgba(255, 255, 255, 0.1);
|
|
475
|
+
border-image: var(--gradient-card-border) 1;
|
|
476
|
+
box-shadow: var(--glow-secondary);
|
|
477
|
+
}
|
|
478
|
+
```
|
|
479
|
+
|
|
480
|
+
---
|
|
481
|
+
|
|
482
|
+
## 6. Responsive/Adaptive Design
|
|
483
|
+
|
|
484
|
+
### 6.1 Breakpoints
|
|
485
|
+
|
|
486
|
+
| Breakpoint | Width | Layout Changes |
|
|
487
|
+
|------------|-------|----------------|
|
|
488
|
+
| **Mobile** | < 640px | Single column, stacked nav, larger touch targets |
|
|
489
|
+
| **Tablet** | 640px - 1024px | 2 columns for features, side-by-side CTAs |
|
|
490
|
+
| **Desktop** | > 1024px | 4 columns for features, full layout |
|
|
491
|
+
| **Wide** | > 1440px | Max-width container, centered |
|
|
492
|
+
|
|
493
|
+
### 6.2 Mobile Optimizations
|
|
494
|
+
- Touch targets: Minimum 44x44px
|
|
495
|
+
- Font sizes: Slightly smaller but still readable
|
|
496
|
+
- Spacing: Reduced vertical padding
|
|
497
|
+
- Navigation: Sticky header with hamburger menu (if needed)
|
|
498
|
+
- Hero: Full viewport height on mobile
|
|
499
|
+
- Cards: Full width with proper spacing
|
|
500
|
+
|
|
501
|
+
---
|
|
502
|
+
|
|
503
|
+
## 7. Interactions & Animations
|
|
504
|
+
|
|
505
|
+
### 7.1 Page Load Animations
|
|
506
|
+
```javascript
|
|
507
|
+
// Stagger animation for hero elements
|
|
508
|
+
Hero Title: fade-up + blur-out, 500ms, delay 0ms
|
|
509
|
+
Hero Subtitle: fade-up + blur-out, 600ms, delay 100ms
|
|
510
|
+
Hero CTAs: fade-up + blur-out, 700ms, delay 200ms
|
|
511
|
+
Hero Code: fade-up + blur-out, 800ms, delay 300ms
|
|
512
|
+
```
|
|
513
|
+
|
|
514
|
+
### 7.2 Scroll Animations
|
|
515
|
+
| Element | Animation | Trigger |
|
|
516
|
+
|---------|-----------|---------|
|
|
517
|
+
| Section titles | Fade up + blur | Intersection Observer (threshold: 0.2) |
|
|
518
|
+
| Feature cards | Stagger fade up | Intersection Observer (stagger: 100ms) |
|
|
519
|
+
| Stats numbers | Count up | Intersection Observer (once) |
|
|
520
|
+
| Workflow diagram | Progressive reveal | Scroll position |
|
|
521
|
+
|
|
522
|
+
### 7.3 Micro-interactions
|
|
523
|
+
| Interaction | Animation | Duration |
|
|
524
|
+
|-------------|-----------|----------|
|
|
525
|
+
| Button hover | Scale 1.05 + glow | 200ms |
|
|
526
|
+
| Button press | Scale 0.98 | 100ms |
|
|
527
|
+
| Card hover | Lift (translateY: -8px) + glow | 300ms |
|
|
528
|
+
| Copy button | Icon change + tooltip | 150ms |
|
|
529
|
+
| Link hover | Underline slide | 200ms |
|
|
530
|
+
|
|
531
|
+
### 7.4 View Transitions API
|
|
532
|
+
```css
|
|
533
|
+
@view-transition {
|
|
534
|
+
navigation: auto;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
::view-transition-old(root),
|
|
538
|
+
::view-transition-new(root) {
|
|
539
|
+
animation-duration: 300ms;
|
|
540
|
+
animation-timing-function: ease-in-out;
|
|
541
|
+
}
|
|
542
|
+
```
|
|
543
|
+
|
|
544
|
+
### 7.5 Animation Principles
|
|
545
|
+
- **Respect user preferences:**
|
|
546
|
+
```css
|
|
547
|
+
@media (prefers-reduced-motion: reduce) {
|
|
548
|
+
* {
|
|
549
|
+
animation-duration: 0.01ms !important;
|
|
550
|
+
transition-duration: 0.01ms !important;
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
```
|
|
554
|
+
- **60fps target:** Use `transform` and `opacity` only
|
|
555
|
+
- **Easing:** `cubic-bezier(0.4, 0, 0.2, 1)` for smooth feel
|
|
556
|
+
- **Stagger delays:** 50-100ms for sequential elements
|
|
557
|
+
|
|
558
|
+
---
|
|
559
|
+
|
|
560
|
+
## 8. Accessibility Checklist
|
|
561
|
+
|
|
562
|
+
### Visual Accessibility
|
|
563
|
+
- [x] Color contrast ≥ 4.5:1 for text (WCAG AA)
|
|
564
|
+
- [x] Color contrast ≥ 3:1 for UI components
|
|
565
|
+
- [x] Text resizable up to 200% without loss of content
|
|
566
|
+
- [x] No information conveyed by color alone
|
|
567
|
+
- [x] Focus indicators visible (2px solid ring, offset 2px)
|
|
568
|
+
|
|
569
|
+
### Keyboard & Navigation
|
|
570
|
+
- [x] All interactive elements keyboard accessible
|
|
571
|
+
- [x] Logical tab order (top to bottom, left to right)
|
|
572
|
+
- [x] Skip to main content link
|
|
573
|
+
- [x] Escape key closes modals/overlays
|
|
574
|
+
- [x] Arrow keys for terminal demo navigation
|
|
575
|
+
|
|
576
|
+
### Screen Reader Support
|
|
577
|
+
- [x] All images have descriptive alt text
|
|
578
|
+
- [x] ARIA labels for icon-only buttons
|
|
579
|
+
- [x] Semantic HTML (`<header>`, `<nav>`, `<main>`, `<section>`, `<footer>`)
|
|
580
|
+
- [x] Heading hierarchy (single `<h1>`, logical `<h2>`-`<h6>`)
|
|
581
|
+
- [x] Live regions for dynamic content (terminal demo)
|
|
582
|
+
|
|
583
|
+
### Forms & Inputs
|
|
584
|
+
- [x] Labels properly associated with inputs
|
|
585
|
+
- [x] Error messages announced to screen readers
|
|
586
|
+
- [x] Required fields indicated
|
|
587
|
+
|
|
588
|
+
---
|
|
589
|
+
|
|
590
|
+
## 9. Platform Guidelines Compliance
|
|
591
|
+
|
|
592
|
+
### Web Best Practices
|
|
593
|
+
- [x] Progressive enhancement (works without JS for static content)
|
|
594
|
+
- [x] Cross-browser compatibility (Chrome, Firefox, Safari, Edge)
|
|
595
|
+
- [x] Responsive design (mobile-first)
|
|
596
|
+
- [x] SEO optimized (semantic HTML, meta tags)
|
|
597
|
+
- [x] Performance optimized (lazy loading, code splitting)
|
|
598
|
+
|
|
599
|
+
---
|
|
600
|
+
|
|
601
|
+
## 10. Assets & Resources
|
|
602
|
+
|
|
603
|
+
### Required Assets
|
|
604
|
+
| Asset | Format | Size | Notes |
|
|
605
|
+
|-------|--------|------|-------|
|
|
606
|
+
| **Logo** | SVG | Scalable | Light version (white) |
|
|
607
|
+
| **Favicon** | ICO + SVG | 16x16, 32x32, 192x192 | Multiple sizes |
|
|
608
|
+
| **OG Image** | PNG | 1200x630 | For social sharing |
|
|
609
|
+
| **Hero Background** | WebP + fallback | 1920x1080 | Gradient mesh |
|
|
610
|
+
| **Role Icons** | SVG (Lucide) | 24x24 | Consistent set |
|
|
611
|
+
| **IDE Logos** | SVG | Various | Official logos |
|
|
612
|
+
|
|
613
|
+
### Design Files
|
|
614
|
+
- **Wireframes:** Created in this spec (ASCII art)
|
|
615
|
+
- **Component Library:** Defined in Design System section
|
|
616
|
+
- **Style Guide:** This document serves as style guide
|
|
617
|
+
|
|
618
|
+
---
|
|
619
|
+
|
|
620
|
+
## 11. Open Questions
|
|
621
|
+
|
|
622
|
+
- [x] @SA: Component architecture supports island hydration? ✅ YES
|
|
623
|
+
- [x] @PO: All must-have features covered in design? ✅ YES
|
|
624
|
+
- [ ] @DEV: Any concerns about View Transitions API browser support?
|
|
625
|
+
- [ ] @QA: Additional accessibility requirements?
|
|
626
|
+
|
|
627
|
+
---
|
|
628
|
+
|
|
629
|
+
## 12. Conclusion & Next Step
|
|
630
|
+
|
|
631
|
+
Design specification complete with:
|
|
632
|
+
✅ Premium glassmorphism aesthetic
|
|
633
|
+
✅ Responsive mobile-first design
|
|
634
|
+
✅ WCAG 2.1 AA accessibility
|
|
635
|
+
✅ Performance-optimized animations
|
|
636
|
+
✅ Complete design system
|
|
637
|
+
|
|
638
|
+
### Next Step:
|
|
639
|
+
- **@QA** - Review for usability and testability ✅ AUTO-TRIGGERED
|
|
640
|
+
- **@SECA** - Security review of user flows ✅ AUTO-TRIGGERED
|
|
641
|
+
- **@PO** - Validate against acceptance criteria 🔄 IN PROGRESS
|
|
642
|
+
- **@SA** - Confirm system design alignment ✅ COMPLETE
|
|
643
|
+
|
|
644
|
+
#uiux-design #designing #sprint-1
|