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
package/README.md
CHANGED
|
@@ -1,136 +1,221 @@
|
|
|
1
1
|
# Agentic SDLC
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> Transform your IDE into a complete Software Development Lifecycle team with AI-powered agents, automated workflows, and intelligent knowledge management.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## 🎯 What is Agentic SDLC?
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
**Agentic SDLC** is an AI-powered development framework that simulates a complete software development team within your IDE. It provides:
|
|
8
8
|
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
- 📚 **16 Templates** - Plans, designs, reports, documentation
|
|
15
|
-
- 🌐 **All Platforms** - Web, Mobile, Desktop, CLI, API, Embedded
|
|
9
|
+
- **14 Specialized AI Roles** - PM, BA, SA, UI/UX, QA, Security, Dev, DevOps, Tester, Reporter, and more
|
|
10
|
+
- **12 Automated Workflows** - From planning to deployment with `/slash` commands
|
|
11
|
+
- **Intelligent Brain System** - 3-Layer architecture with state management and self-learning
|
|
12
|
+
- **Cross-IDE Compatibility** - Works with Cursor, Windsurf, Cline, Aider, Gemini, and any AI-powered IDE
|
|
13
|
+
- **Monorepo Architecture** - Shared brain system across multiple projects
|
|
16
14
|
|
|
17
|
-
##
|
|
15
|
+
## 🧠 The Brain System
|
|
16
|
+
|
|
17
|
+
At the core of Agentic SDLC is the **Brain** - an intelligent knowledge management system that:
|
|
18
|
+
|
|
19
|
+
- **Learns from every task** - Automatically captures patterns from bugs, features, and solutions
|
|
20
|
+
- **Provides recommendations** - Suggests approaches based on past successes
|
|
21
|
+
- **Builds knowledge graphs** - Maps relationships between skills, technologies, and solutions
|
|
22
|
+
- **Enables compound intelligence** - Each project's knowledge benefits all others
|
|
23
|
+
|
|
24
|
+
→ See **[GEMINI.md](GEMINI.md)** for complete Brain documentation
|
|
25
|
+
|
|
26
|
+
## ✨ Quick Start
|
|
27
|
+
|
|
28
|
+
### Installation
|
|
18
29
|
|
|
19
30
|
```bash
|
|
20
|
-
# Install
|
|
31
|
+
# Install globally
|
|
21
32
|
npm install -g agentic-sdlc
|
|
22
33
|
|
|
23
|
-
#
|
|
34
|
+
# Or with bun
|
|
35
|
+
bun install -g agentic-sdlc
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### Create New Project
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
# Create project with brain system
|
|
24
42
|
agentic-sdlc create my-project
|
|
25
43
|
cd my-project
|
|
26
44
|
|
|
27
|
-
# Setup IDE
|
|
28
|
-
agentic-sdlc ide cursor
|
|
45
|
+
# Setup your IDE
|
|
46
|
+
agentic-sdlc ide cursor # or windsurf, cline, etc.
|
|
29
47
|
|
|
30
|
-
# Start building
|
|
48
|
+
# Start building
|
|
31
49
|
/pm Build a todo app with authentication
|
|
32
50
|
```
|
|
33
51
|
|
|
34
|
-
|
|
52
|
+
### Add to Existing Project
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
# Install brain system in current directory
|
|
56
|
+
agentic-sdlc install
|
|
57
|
+
|
|
58
|
+
# Setup IDE integration
|
|
59
|
+
agentic-sdlc ide cursor
|
|
60
|
+
|
|
61
|
+
# Initialize knowledge base
|
|
62
|
+
agentic-sdlc init-kb
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## 🚀 Core Features
|
|
66
|
+
|
|
67
|
+
### 1. AI Role System (14 Roles)
|
|
68
|
+
|
|
69
|
+
Specialized AI agents for every SDLC phase:
|
|
70
|
+
|
|
71
|
+
```
|
|
72
|
+
Planning → @PM, @BA, @PO
|
|
73
|
+
Design → @SA, @UIUX
|
|
74
|
+
Review → @QA, @SECA
|
|
75
|
+
Development → @DEV, @DEVOPS
|
|
76
|
+
Testing → @TESTER
|
|
77
|
+
Delivery → @REPORTER, @STAKEHOLDER
|
|
78
|
+
Meta → @BRAIN, @ORCHESTRATOR
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
### 2. Slash Commands (12 Workflows)
|
|
82
|
+
|
|
83
|
+
Execute complete workflows with simple commands:
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
/brain # Brain system management (sync, stats)
|
|
87
|
+
/cycle # Complete task lifecycle
|
|
88
|
+
/explore # Deep investigation
|
|
89
|
+
/orchestrator # Full SDLC automation
|
|
90
|
+
/sprint # Sprint management
|
|
91
|
+
/validate # System validation
|
|
92
|
+
/metrics # View metrics dashboard
|
|
93
|
+
/release # Release management
|
|
94
|
+
/emergency # Critical incident response
|
|
95
|
+
/route # Intelligent workflow routing
|
|
96
|
+
/compound # Knowledge capture
|
|
97
|
+
/housekeeping # Cleanup & maintenance
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
### 3. Monorepo Architecture
|
|
101
|
+
|
|
102
|
+
```
|
|
103
|
+
agentic-sdlc/ # 🧠 Brain (Root)
|
|
104
|
+
├── .agent/ # AI workflows, skills, KB
|
|
105
|
+
├── tools/ # Neo4j, research, utilities
|
|
106
|
+
├── docs/ # Documentation
|
|
107
|
+
└── projects/ # Your projects
|
|
108
|
+
├── project-1/
|
|
109
|
+
├── project-2/
|
|
110
|
+
└── [add-yours]/
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
**Benefits:**
|
|
114
|
+
- ✅ Shared brain across all projects
|
|
115
|
+
- ✅ Compound learning from every solution
|
|
116
|
+
- ✅ Consistent workflows and quality
|
|
117
|
+
- ✅ Centralized knowledge management
|
|
118
|
+
|
|
119
|
+
### 4. Knowledge Management
|
|
120
|
+
|
|
121
|
+
**Automated Learning:**
|
|
122
|
+
- Records error patterns and solutions
|
|
123
|
+
- Captures successful implementation approaches
|
|
124
|
+
- Builds skill and technology graphs
|
|
125
|
+
- Provides context-aware recommendations
|
|
126
|
+
|
|
127
|
+
**Three-Layer System:**
|
|
128
|
+
1. **LEANN** - Vector-based semantic search
|
|
129
|
+
2. **Neo4j** - Knowledge graph with relationships
|
|
130
|
+
3. **File-based KB** - Categorized markdown entries
|
|
35
131
|
|
|
36
132
|
## 📖 Documentation
|
|
37
133
|
|
|
38
|
-
|
|
39
|
-
- **
|
|
40
|
-
- **
|
|
41
|
-
- **
|
|
42
|
-
|
|
134
|
+
### Getting Started
|
|
135
|
+
- **[GEMINI.md](GEMINI.md)** - Complete brain system guide (IDE-agnostic)
|
|
136
|
+
- **[Quick Start](docs/guides/QUICK-START.md)** - 5-minute setup guide
|
|
137
|
+
- **[CLI Examples](docs/guides/CLI-EXAMPLES.md)** - Command usage examples
|
|
138
|
+
|
|
139
|
+
### Architecture
|
|
140
|
+
- **[Monorepo Architecture](docs/MONOREPO-ARCHITECTURE.md)** - System design
|
|
141
|
+
- **[Project Structure](PROJECT-STRUCTURE.md)** - Directory organization
|
|
142
|
+
- **[Documentation Index](docs/PROJECT-DOCUMENTATION-INDEX.md)** - All docs
|
|
143
|
+
|
|
144
|
+
### Tools & Setup
|
|
145
|
+
- **[Neo4j Tools](tools/neo4j/README.md)** - Knowledge graph system
|
|
146
|
+
- **[Research Agent](tools/research/README.md)** - Automated research
|
|
147
|
+
- **[MCP Setup](docs/guides/MCP-SETUP.md)** - Model Context Protocol
|
|
43
148
|
|
|
44
149
|
## 🎯 Use Cases
|
|
45
150
|
|
|
46
151
|
### Solo Developer
|
|
47
152
|
```bash
|
|
48
|
-
/auto Create a SaaS platform
|
|
49
|
-
#
|
|
153
|
+
/auto Create a SaaS platform with authentication and billing
|
|
154
|
+
# Complete automation from planning to deployment
|
|
50
155
|
```
|
|
51
156
|
|
|
52
|
-
### Team
|
|
157
|
+
### Team Development
|
|
53
158
|
```bash
|
|
159
|
+
# Each team member uses the same brain
|
|
54
160
|
agentic-sdlc ide all
|
|
55
|
-
|
|
56
|
-
|
|
161
|
+
git pull # Share knowledge base
|
|
162
|
+
/pm Start Sprint 3
|
|
57
163
|
```
|
|
58
164
|
|
|
59
|
-
### Existing Project
|
|
165
|
+
### Existing Large Project
|
|
60
166
|
```bash
|
|
61
167
|
agentic-sdlc install
|
|
62
|
-
|
|
63
|
-
|
|
168
|
+
/brain # Index and analyze codebase
|
|
169
|
+
/pm Migrate authentication to OAuth2
|
|
64
170
|
```
|
|
65
171
|
|
|
66
|
-
## 🔧
|
|
172
|
+
## 🔧 Available Commands
|
|
67
173
|
|
|
68
174
|
```bash
|
|
69
|
-
|
|
70
|
-
agentic-sdlc create <name>
|
|
71
|
-
agentic-sdlc
|
|
72
|
-
agentic-sdlc init-kb # Initialize knowledge base
|
|
73
|
-
agentic-sdlc list # List templates & roles
|
|
74
|
-
agentic-sdlc --help # Show help
|
|
75
|
-
```
|
|
175
|
+
# Project Management
|
|
176
|
+
agentic-sdlc create <name> # Create new project
|
|
177
|
+
agentic-sdlc install # Add to existing project
|
|
76
178
|
|
|
77
|
-
|
|
179
|
+
# IDE Integration
|
|
180
|
+
agentic-sdlc ide cursor # Setup Cursor IDE
|
|
181
|
+
agentic-sdlc ide all # Setup all supported IDEs
|
|
78
182
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
/pm # Project Manager
|
|
83
|
-
/auto # Full automation
|
|
84
|
-
/sa # System Analyst
|
|
85
|
-
/uiux # UI/UX Designer
|
|
86
|
-
/dev # Developer
|
|
87
|
-
/devops # DevOps Engineer
|
|
88
|
-
/tester # Tester
|
|
89
|
-
/kb-search # Search knowledge base
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
## 📊 Project Structure
|
|
183
|
+
# Knowledge Base
|
|
184
|
+
agentic-sdlc init-kb # Initialize KB
|
|
185
|
+
agentic-sdlc list # List roles & workflows
|
|
93
186
|
|
|
187
|
+
# Brain System (see GEMINI.md)
|
|
188
|
+
python tools/neo4j/brain_parallel.py --sync # Sync brain
|
|
189
|
+
python tools/neo4j/brain_parallel.py --recommend # Get recommendations
|
|
94
190
|
```
|
|
95
|
-
my-project/
|
|
96
|
-
├── .agent/
|
|
97
|
-
│ ├── roles/ # 12 AI roles
|
|
98
|
-
│ ├── templates/ # 16 templates
|
|
99
|
-
│ ├── knowledge-base/ # Learning system
|
|
100
|
-
│ └── ide-integration/ # IDE configs
|
|
101
|
-
├── docs/sprints/ # Sprint documentation
|
|
102
|
-
├── .cursorrules # Cursor config
|
|
103
|
-
└── .github/copilot-instructions.md
|
|
104
|
-
```
|
|
105
|
-
|
|
106
|
-
## 🌟 Examples
|
|
107
|
-
|
|
108
|
-
See [CLI-EXAMPLES.md](docs/guides/CLI-EXAMPLES.md) for:
|
|
109
|
-
- Real-world workflows
|
|
110
|
-
- Team collaboration
|
|
111
|
-
- Automation scripts
|
|
112
|
-
- Troubleshooting
|
|
113
|
-
- Pro tips
|
|
114
191
|
|
|
115
|
-
##
|
|
192
|
+
## 🌟 Why Agentic SDLC?
|
|
116
193
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
-
|
|
121
|
-
|
|
122
|
-
|
|
194
|
+
| Traditional Development | With Agentic SDLC |
|
|
195
|
+
|------------------------|-------------------|
|
|
196
|
+
| Manual planning | Automated with @PM |
|
|
197
|
+
| Ad-hoc architecture | Structured with @SA, @UIUX |
|
|
198
|
+
| Inconsistent code quality | Enforced by @QA, @SECA |
|
|
199
|
+
| Lost knowledge | Compound learning brain |
|
|
200
|
+
| Repetitive tasks | Automated with @AUTO |
|
|
201
|
+
| Solo problem-solving | 13+ AI experts available |
|
|
123
202
|
|
|
124
|
-
##
|
|
203
|
+
## 🔗 Links
|
|
125
204
|
|
|
126
|
-
|
|
205
|
+
- **Repository:** https://github.com/truongnat/agentic-sdlc
|
|
206
|
+
- **NPM Package:** https://www.npmjs.com/package/agentic-sdlc
|
|
207
|
+
- **Issues:** https://github.com/truongnat/agentic-sdlc/issues
|
|
208
|
+
- **Documentation:** [docs/](docs/)
|
|
127
209
|
|
|
128
210
|
## 📄 License
|
|
129
211
|
|
|
130
|
-
MIT
|
|
212
|
+
MIT License - See [LICENSE](LICENSE) for details
|
|
131
213
|
|
|
132
|
-
|
|
214
|
+
---
|
|
133
215
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
216
|
+
**Next Steps:**
|
|
217
|
+
1. Read [GEMINI.md](GEMINI.md) to understand the brain system
|
|
218
|
+
2. Follow [Quick Start](docs/guides/QUICK-START.md) to get started
|
|
219
|
+
3. Explore [workflows](.agent/workflows/) to see available automations
|
|
220
|
+
|
|
221
|
+
**Questions?** Check the [documentation](docs/) or [open an issue](https://github.com/truongnat/agentic-sdlc/issues).
|