agentic-sdlc 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. package/.agent/ide-integration/README.md +298 -0
  2. package/.agent/ide-integration/aider-commands.md +40 -0
  3. package/.agent/ide-integration/cline-config.json +108 -0
  4. package/.agent/ide-integration/cursor-rules.md +63 -0
  5. package/.agent/ide-integration/github-copilot-instructions.md +75 -0
  6. package/.agent/ide-integration/vscode-commands.json +190 -0
  7. package/.agent/ide-integration/windsurf-cascade.md +125 -0
  8. package/.agent/knowledge-base/README.md +202 -0
  9. package/.agent/knowledge-base/architecture/.gitkeep +1 -0
  10. package/.agent/knowledge-base/bugs/.gitkeep +1 -0
  11. package/.agent/knowledge-base/features/.gitkeep +1 -0
  12. package/.agent/knowledge-base/index.md +202 -0
  13. package/.agent/knowledge-base/performance/.gitkeep +1 -0
  14. package/.agent/knowledge-base/platform-specific/.gitkeep +1 -0
  15. package/.agent/knowledge-base/security/.gitkeep +1 -0
  16. package/.agent/legacy/roles/designer.md +311 -0
  17. package/.agent/legacy/roles/dev.md +177 -0
  18. package/.agent/legacy/roles/devops.md +146 -0
  19. package/.agent/legacy/roles/orchestrator.md +339 -0
  20. package/.agent/legacy/roles/pm.md +120 -0
  21. package/.agent/legacy/roles/po.md +89 -0
  22. package/.agent/legacy/roles/qa.md +108 -0
  23. package/.agent/legacy/roles/reporter.md +70 -0
  24. package/.agent/legacy/roles/sa.md +118 -0
  25. package/.agent/legacy/roles/seca.md +112 -0
  26. package/.agent/legacy/roles/stakeholder.md +111 -0
  27. package/.agent/legacy/roles/tester.md +129 -0
  28. package/.agent/rules/artifacts.md +58 -0
  29. package/.agent/rules/git-workflow.md +65 -0
  30. package/.agent/rules/global.md +154 -0
  31. package/.agent/rules/global.md.bak +154 -0
  32. package/.agent/rules/knowledge-base.md +45 -0
  33. package/.agent/templates/Design-Verification-Report-Template.md +67 -0
  34. package/.agent/templates/DevOps-Plan-Template.md +90 -0
  35. package/.agent/templates/Development-Log-Template.md +51 -0
  36. package/.agent/templates/Final-Approval-Report-Template.md +82 -0
  37. package/.agent/templates/Final-Project-Report-Template.md +280 -0
  38. package/.agent/templates/Knowledge-Entry-Template.md +164 -0
  39. package/.agent/templates/Master-Documentation-Template.md +269 -0
  40. package/.agent/templates/Phase-Report-Template.md +70 -0
  41. package/.agent/templates/Product-Backlog-Template.md +84 -0
  42. package/.agent/templates/Project-Plan-Template.md +79 -0
  43. package/.agent/templates/Security-Review-Report-Template.md +80 -0
  44. package/.agent/templates/System-Design-Spec-Template.md +170 -0
  45. package/.agent/templates/Test-Report-Template.md +97 -0
  46. package/.agent/templates/UIUX-Design-Spec-Template.md +280 -0
  47. package/.agent/templates/definition-of-done.md +151 -0
  48. package/.agent/templates/incident-response.md +111 -0
  49. package/.agent/usage.md +653 -0
  50. package/.agent/workflows/auto.md +35 -0
  51. package/.agent/workflows/brain.md +56 -0
  52. package/.agent/workflows/dev.md +30 -0
  53. package/.agent/workflows/devops.md +28 -0
  54. package/.agent/workflows/kb-search.md +22 -0
  55. package/.agent/workflows/pm.md +42 -0
  56. package/.agent/workflows/po.md +21 -0
  57. package/.agent/workflows/qa.md +31 -0
  58. package/.agent/workflows/reporter.md +21 -0
  59. package/.agent/workflows/sa.md +51 -0
  60. package/.agent/workflows/seca.md +21 -0
  61. package/.agent/workflows/stakeholder.md +26 -0
  62. package/.agent/workflows/tester.md +21 -0
  63. package/.agent/workflows/uiux.md +38 -0
  64. package/.cursorrules +49 -0
  65. package/.env.template +10 -0
  66. package/.github/ISSUE_TEMPLATE/bug_report.yml +47 -0
  67. package/.github/ISSUE_TEMPLATE/config.yml +8 -0
  68. package/.github/ISSUE_TEMPLATE/feature_request.yml +33 -0
  69. package/.github/ISSUE_TEMPLATE/security_alert.yml +28 -0
  70. package/.github/ISSUE_TEMPLATE/task_implementation.yml +37 -0
  71. package/.github/copilot-instructions.md +60 -0
  72. package/CHANGELOG.md +13 -0
  73. package/README.md +136 -0
  74. package/bin/cli.js +104 -0
  75. package/bin/commands/create.js +96 -0
  76. package/bin/commands/help.js +69 -0
  77. package/bin/commands/ide.js +116 -0
  78. package/bin/commands/init-kb.js +74 -0
  79. package/bin/commands/install.js +68 -0
  80. package/bin/commands/list.js +35 -0
  81. package/bin/graph_brain.py +86 -0
  82. package/bin/sync_github.py +75 -0
  83. package/bin/utils/args-parser.js +33 -0
  84. package/bin/utils/colors.js +21 -0
  85. package/bin/verify_neo4j.py +25 -0
  86. package/docs/OUTLINE.md +23 -0
  87. package/docs/architecture/brain.md +36 -0
  88. package/docs/architecture/neo4j-learning-queries.md +49 -0
  89. package/docs/guides/CLI-EXAMPLES.md +649 -0
  90. package/docs/guides/INTEGRATION-GUIDE.md +709 -0
  91. package/docs/guides/MCP-GUIDE.md +53 -0
  92. package/docs/guides/QUICK-START.md +104 -0
  93. package/docs/reports/comparison-leann-neo4j.md +49 -0
  94. package/docs/setup/github-management.md +37 -0
  95. package/docs/sprints/sprint-github-issues.md +36 -0
  96. package/docs/sprints/sprint-leann-integration.md +41 -0
  97. package/docs/sprints/sprint-neo4j-brain.md +38 -0
  98. package/package.json +16 -0
@@ -0,0 +1,53 @@
1
+ # 🌐 Distributed Intelligence Network: MCP Integration Guide
2
+
3
+ This project leverages the **Model Context Protocol (MCP)** to provide agents with real-world tools, system access, and external data.
4
+
5
+ ## 🛠️ Core MCP Servers
6
+
7
+ The following servers are integrated into the team roles. Ensure these are configured in your environment for full automation.
8
+
9
+ | MCP Server | Key Tools | Primary Role |
10
+ | :--- | :--- | :--- |
11
+ | **GitHub** | Issue tracking, Milestones, PRs | @PM, @PO, @REPORTER |
12
+ | **Vercel** | Deployment status, Logs | @DEVOPS |
13
+ | **Docker** | Container management | @DEVOPS |
14
+ | **GitIngest** | Codebase snapshots | @ORCHESTRATOR, @REPORTER |
15
+ | **Apidog** | API Testing & Design | @SA, @TESTER |
16
+ | **Brave Search** | External Research | @PM, @PO |
17
+ | **Firecrawl** | Web Scraper / Log research | @SECA, @DEVOPS |
18
+ | **Playwright** | E2E / Browser Testing | @QA, @TESTER |
19
+ | **Context7** | Architecture Analysis | @SA, @DEV |
20
+ | **Supabase / PG** | Database Operations | @SA, @DEV |
21
+ | **Sequential Thinking** | Logic & Reasoning | @ORCHESTRATOR, @DEV |
22
+ | **DesktopCommander** | OS Management | @ORCHESTRATOR, @DEVOPS |
23
+
24
+ ---
25
+
26
+ ## 🚀 Advanced MCP Suggestions (Future-Proofing)
27
+
28
+ Beyond the requested list, the following MCPs are highly recommended for advanced project scaling:
29
+
30
+ ### 1. Productivity & Handoffs
31
+ - **Slack/Discord MCP:** Push real-time role handoff notifications (e.g., `@QA: Design is ready for review`).
32
+ - **Linear MCP:** If GitHub Issues become too complex, Linear offers a high-performance alternative for engineering tasks.
33
+ - **Sentry MCP:** Automatically pull crash reports into @DEV's context for instant bug analysis.
34
+
35
+ ### 2. Knowledge & AI Enhancement
36
+ - **Exa / Perplexity MCP:** For "AI-Search" that provides factual, cited answers faster than a standard search engine.
37
+ - **Zotero / Mendeley MCP:** If the project requires heavy academic or technical research documentation.
38
+ - **Obsidian / Logseq MCP:** Personal knowledge management sync for stakeholders.
39
+
40
+ ### 3. Data & Cloud
41
+ - **Snowflake / Databricks MCP:** For heavy data engineering projects.
42
+ - **AWS / GCP / Azure MCPs:** To manage infrastructure directly from the chat.
43
+
44
+ ---
45
+
46
+ ## 📋 Best Practices for Agents
47
+
48
+ 1. **Facts First:** Before starting a task, use `Brave Search` or `GitIngest` to verify the current state.
49
+ 2. **Atomic Integration:** When mentioning an MCP tool, provide the context (e.g., *"According to Playwright logs, the login button is obscured..."*).
50
+ 3. **Loop Verification:** Always use `Apidog` or `Playwright` to verify a fix before tagging the next role.
51
+
52
+ ---
53
+ *Created by Antigravity - 2026-01-01*
@@ -0,0 +1,104 @@
1
+ # Quick Start Guide
2
+
3
+ Get started with `agentic-sdlc` in 5 minutes.
4
+
5
+ ---
6
+
7
+ ## 🚀 Installation
8
+
9
+ ```bash
10
+ npm install -g agentic-sdlc
11
+ ```
12
+
13
+ ---
14
+
15
+ ## ⚡ 3 Steps to Start
16
+
17
+ ### Step 1: Create Project (30 seconds)
18
+
19
+ ```bash
20
+ agentic-sdlc create my-project
21
+ cd my-project
22
+ ```
23
+
24
+ ### Step 2: Setup IDE (15 seconds)
25
+
26
+ ```bash
27
+ agentic-sdlc ide cursor
28
+ ```
29
+
30
+ ### Step 3: Start Building (Instant)
31
+
32
+ Open your IDE and type:
33
+ ```
34
+ /pm Build a todo app with authentication
35
+ ```
36
+
37
+ **That's it!** 🎉
38
+
39
+ ---
40
+
41
+ ## 🎯 What You Get
42
+
43
+ After setup, you have:
44
+
45
+ ✅ **12 AI Roles** ready to use:
46
+ - `/pm` - Project Manager
47
+ - `/sa` - System Analyst
48
+ - `/uiux` - UI/UX Designer
49
+ - `/dev` - Developer
50
+ - `/tester` - Tester
51
+ - And 7 more...
52
+
53
+ ✅ **16 Templates** for documentation
54
+
55
+ ✅ **Knowledge Base** for learning
56
+
57
+ ✅ **IDE Integration** with slash commands
58
+
59
+ ---
60
+
61
+ ## 💡 Try These Commands
62
+
63
+ ```bash
64
+ # Full automation (fastest)
65
+ /auto Create a mobile fitness app
66
+
67
+ # Manual control (learn the flow)
68
+ /pm Build a blog platform
69
+
70
+ # Specific tasks
71
+ /dev Implement OAuth2 authentication
72
+ /uiux Design mobile dashboard
73
+ /devops Setup CI/CD pipeline
74
+
75
+ # Search knowledge
76
+ /kb-search React hooks error
77
+ ```
78
+
79
+ ---
80
+
81
+ ## 📚 Learn More
82
+
83
+ - **Full Examples:** See `CLI-EXAMPLES.md`
84
+ - **Usage Guide:** `.agent/usage.md`
85
+ - **All Commands:** `agentic-sdlc --help`
86
+
87
+ ---
88
+
89
+ ## 🆘 Need Help?
90
+
91
+ ```bash
92
+ # Show all commands
93
+ agentic-sdlc --help
94
+
95
+ # List available resources
96
+ agentic-sdlc list
97
+
98
+ # Check version
99
+ agentic-sdlc --version
100
+ ```
101
+
102
+ ---
103
+
104
+ **Ready to build? Let's go! 🚀**
@@ -0,0 +1,49 @@
1
+ # Comparative Analysis: LEANN vs. Neo4j (AI Brain Architecture)
2
+ **Author:** @SA (System Analyst) | **Project:** Template Instructions | **Date:** 2026-01-01
3
+
4
+ ## 📊 Summary Overview
5
+ While both technologies serve as an AI "memory," they operate on fundamentally different principles. **LEANN** is optimized for high-performance semantic search (Vector RAG), while **Neo4j** is built for complex relationship discovery (Graph RAG).
6
+
7
+ | Feature | **LEANN** (Vector Memory) | **Neo4j** (Graph Brain) |
8
+ |:---|:---|:---|
9
+ | **Primary Goal** | Finding *similar* text/code. | Finding *connections* between entities. |
10
+ | **Logic** | Semantic Similarity (Cosine Similarity). | Pathfinding & Relational Logic (Cypher). |
11
+ | **Data Structure** | Flattened Embedding Vectors. | Nodes (Entities) and Edges (Relationships). |
12
+ | **Best For** | "Find a code snippet like this." | "Why did changing $X$ cause a bug in $Y$?" |
13
+ | **Storage** | Ultra-lightweight (97% savings). | Moderate (requires structured DB). |
14
+ | **Performance** | Extremely fast retrieval. | Fast for deep path traversal. |
15
+ | **Platform** | Local (Python/CLI/WSL2). | Server/Docker based. |
16
+
17
+ ---
18
+
19
+ ## 🔍 Deep Dive Comparison
20
+
21
+ ### 1. LEANN: The "Librarian"
22
+ LEANN acts like a highly efficient librarian. It indexes the "content" of your files using AST-aware chunking.
23
+ * **Strengths:** It is the best at answering "Where is the logic for X?" It excels at retrieving large amounts of context for an AI prompt with minimal resource overhead.
24
+ * **Weaknesses:** It has no concept of "logic flow" or "historical cause-and-effect." It treats every chunk of code as an isolated island.
25
+
26
+ ### 2. Neo4j: The "Detective"
27
+ Neo4j acts like a detective with a "evidence board" (red strings connecting photos).
28
+ * **Strengths:** It can map the entire project's lineage. It understands that `Function A` belongs to `File B`, was written by `Role:Dev` during `Sprint 2`, and fixed `Issue #42`. This is the foundation of **Self-Learning AI**, as it allows the AI to traverse paths of success and failure.
29
+ * **Weaknesses:** It is not a search engine. Asking Neo4j "find code that looks like this" is inefficient without a supporting vector index (like LEANN).
30
+
31
+ ---
32
+
33
+ ## 💡 The "Hybrid" Recommendation
34
+ For a truly "Self-Improving" project, you should not choose one over the other. Instead, use them in **Tandem**:
35
+
36
+ 1. **LEANN** handles the **Retrieval** (finding the raw code/text).
37
+ 2. **Neo4j** handles the **Reasoning** (explaining the relationships between those snippets).
38
+
39
+ ### Suggested Architecture
40
+ * **Step 1:** LEANN finds 3 relevant code snippets.
41
+ * **Step 2:** The AI queries Neo4j: *"What is the history of these snippets? What bugs are they linked to?"*
42
+ * **Step 3:** The AI combines the code + history to provide a perfect, "learned" solution.
43
+
44
+ ---
45
+ ### Next Steps
46
+ 1. **Approve** the Neo4j Sprint Plan to begin the Docker setup.
47
+ 2. We will implement a bridge script that uses LEANN's output to "populate" the Neo4j graph.
48
+
49
+ #analysis #leann #neo4j #architecture #ai-memory
@@ -0,0 +1,37 @@
1
+ # GitHub Labels for AI SDLC Management
2
+
3
+ To effectively manage this project using the AI roles, use the following labels:
4
+
5
+ ## 🏷️ Type Labels
6
+ - `type:bug`: Something is broken.
7
+ - `type:feature`: Request for new functionality.
8
+ - `type:task`: Technical implementation work.
9
+ - `type:security`: Vulnerability report.
10
+ - `type:docs`: Documentation updates.
11
+
12
+ ## 👤 Role Labels
13
+ - `role:pm`: Project Management.
14
+ - `role:po`: Product Owner.
15
+ - `role:sa`: System Analyst.
16
+ - `role:uiux`: UI/UX Designer.
17
+ - `role:dev`: Developer.
18
+ - `role:qa`: Quality Assurance.
19
+ - `role:tester`: Testing.
20
+ - `role:devops`: Operations / CI/CD.
21
+ - `role:seca`: Security Analyst.
22
+
23
+ ## 🚦 Priority Labels
24
+ - `priority:p0`: Critical / Blocker.
25
+ - `priority:p1`: High Priority.
26
+ - `priority:p2`: Medium Priority.
27
+ - `priority:p3`: Low Priority.
28
+
29
+ ## 🔄 Status Labels
30
+ - `status:triage`: New issue needs review.
31
+ - `status:backlog`: Approved but not started.
32
+ - `status:in-progress`: Currently being worked on.
33
+ - `status:in-review`: Waiting for @QA or @Stakeholder.
34
+ - `status:done`: Completed.
35
+
36
+ ---
37
+ *Generated for the template-instructions manager.*
@@ -0,0 +1,36 @@
1
+ # Implementation Plan: GitHub Issue Management Configuration
2
+
3
+ This plan outlines the setup of GitHub Issue templates and organization to align with the AI-driven SDLC roles in the `template-instructions` project.
4
+
5
+ ## 🎯 Objectives
6
+ - Standardize issue reporting for different SDLC roles.
7
+ - Enable seamless hand-off between AI agents using issue numbers.
8
+ - Provide a structured backlog for the `@PM` and `@PO` to manage.
9
+
10
+ ## 🛠️ Proposed Changes
11
+
12
+ ### 1. GitHub Issue Templates
13
+ Create `.github/ISSUE_TEMPLATE/` folder with the following:
14
+ - `bug_report.yml`: For `@Tester` and `@QA` to report issues.
15
+ - `feature_request.yml`: For `@PO` and `@Stakeholder` to propose ideas.
16
+ - `task_implementation.yml`: For `@PM` to assign work to `@Dev`.
17
+ - `security_alert.yml`: For `@SECA` to report vulnerabilities.
18
+ - `config.yml`: Global configuration for templates.
19
+
20
+ ### 2. Labeling System
21
+ Define a set of labels that match the project's specialized roles:
22
+ - `role:pm`, `role:dev`, `role:qa`, `role:sa`, etc.
23
+ - `type:bug`, `type:feature`, `type:task`, `type:security`.
24
+ - `priority:p0`, `priority:p1`, `priority:p2`.
25
+
26
+ ### 3. Role Integration
27
+ Update `@Reporter` and `@PM` workflow instructions to mention creating/updating GitHub issues as part of their status reports.
28
+
29
+ ## 📅 Step-by-Step Execution
30
+
31
+ 1. Create the `.github/ISSUE_TEMPLATE` directory.
32
+ 2. Generate the YAML-based issue templates (more modern than MD).
33
+ 3. Update the Project Management documentation to include "GitHub Issues" as the source of truth for the backlog.
34
+
35
+ ---
36
+ **Status:** ⏳ Pending approval from USER.
@@ -0,0 +1,41 @@
1
+ # Implementation Plan: LEANN AI Brain Integration
2
+
3
+ This plan outlines the steps to integrate the **LEANN** (Lean and Efficient AI Near-memory) framework into the `template-instructions` project to automate knowledge management and provide agents with deep project context.
4
+
5
+ ## 🎯 Objectives
6
+ - Replace manual Knowledge Base indexing with automated LEANN indexing.
7
+ - Enable deep, AST-aware code search for AI roles.
8
+ - Integrate LEANN via MCP for real-time memory access in the IDE.
9
+
10
+ ## 🛠️ Proposed Changes
11
+
12
+ ### 1. New Workflow: `leann-brain.md`
13
+ Create a new workflow in `.agent/workflows/` to handle installation, indexing, and querying.
14
+
15
+ ### 2. Update `kb-search.md`
16
+ Modified to prefer LEANN search over manual file grepping when available.
17
+
18
+ ### 3. Documentation
19
+ Update `README.md` and create `docs/brain.md` to explain how to use the new "Project Brain".
20
+
21
+ ### 4. Role Updates
22
+ Update the AI role instructions (PM, Dev, SA) to include the `/brain` command as their primary context source.
23
+
24
+ ## 📅 Step-by-Step Execution
25
+
26
+ ### Phase 1: Setup
27
+ 1. **Command:** `pip install leann-core leann-backend-hnsw`
28
+ - *Note: Suggest using `uv` if available for speed.*
29
+ 2. **Command:** `leann index --path .`
30
+ - Performs initial AST-aware indexing of the workspace.
31
+
32
+ ### Phase 2: Workflow Creation
33
+ 1. Create `.agent/workflows/leann-brain.md`.
34
+ 2. Update `.agent/workflows/kb-search.md`.
35
+
36
+ ### Phase 3: Integration
37
+ 1. Configure MCP server for the IDE.
38
+ 2. Update global rules to encourage using `/brain` for context.
39
+
40
+ ---
41
+ **Status:** ⏳ Pending approval from USER.
@@ -0,0 +1,38 @@
1
+ # Project Plan: Neo4j AI Self-Learning Brain
2
+ **Sprint:** 1 | **Version:** 1.0 | **Status:** ⏳ Strategy Phase
3
+
4
+ ## 🎯 Vision
5
+ Transform the static project knowledge into a **Dynamic Graph Brain** using Neo4j. This will allow the AI agents to not only "search" for text but to "understand" relationships between concepts, code modules, and past bugs to automatically improve their coding skills.
6
+
7
+ ## 🛠️ Tech Stack
8
+ - **Graph Database:** Neo4j AuraDB (Cloud-based / Managed Service)
9
+ - **Integration Layer:** Python + LangChain (Graph-QA)
10
+ - **Knowledge Source:** Local workspace + Git history + LEANN Index
11
+ - **Brain Logic:** Cypher Query Language (CQL) for relationship discovery
12
+
13
+ ## 🚀 Key Features
14
+ 1. **Relationship Mapping:** Link `Issue #123` -> `Modified Function X` -> `Introduced Bug Y`.
15
+ 2. **Skill Progression Graph:** Track which AI roles are most effective in specific modules.
16
+ 3. **Automated "Self-Improvement" Loop:**
17
+ - AI analyzes failing tests in Neo4j.
18
+ - Finds the "Reasoning Path" from previous similar fixes.
19
+ - Suggests optimized implementation strategies.
20
+
21
+ ## 📅 Roadmap (Must-Have)
22
+ - [ ] **Phase 1: Cloud Provisioning** (Create Free Instance on Neo4j Aura)
23
+ - [ ] **Phase 2: Data Modeling** (Define Nodes: `Code`, `Role`, `Issue`, `Concept`)
24
+ - [ ] **Phase 3: Secure Connection** (Configure `.env` with Aura credentials)
25
+ - [ ] **Phase 4: Ingestion Pipeline** (Export LEANN and Git data to Aura)
26
+ - [ ] **Phase 5: Brain Query Interface** (Add `/graph-query` command)
27
+
28
+ ## ⚠️ Risks
29
+ - **Complexity:** Graph modeling requires careful schema design.
30
+ - **Resource Usage:** Neo4j requires more RAM than simple vector search.
31
+
32
+ ---
33
+ ### Next Step:
34
+ - **USER:** Please create a free instance at [Neo4j Aura](https://neo4j.com/cloud/aura/) and provide the **URI**, **Username**, and **Password**.
35
+ - **@SA:** Standing by to design the Neo4j Schema for Cloud ingestion.
36
+ - **@DevOps:** Standing by to setup the Python connection client.
37
+
38
+ #planning #self-learning #neo4j #ai-brain
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "agentic-sdlc",
3
+ "version": "1.0.0",
4
+ "description": "Simulating a complete Software Development Lifecycle (SDLC) with specialized AI Agents.",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "agentic-sdlc": "./bin/cli.js"
8
+ },
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ },
12
+ "dependencies": {
13
+ "fs-extra": "^11.2.0"
14
+ },
15
+ "type": "module"
16
+ }