agentic-sdlc 1.0.0 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (227) hide show
  1. package/.agent/ide-integration/INTEGRATION-SUMMARY.md +309 -0
  2. package/.agent/ide-integration/KIRO-IDE.md +381 -0
  3. package/.agent/ide-integration/README.md +256 -209
  4. package/.agent/knowledge-base/AUTO-LEARNING-GUIDE.md +327 -0
  5. package/.agent/knowledge-base/HOW-IT-WORKS.md +365 -0
  6. package/.agent/knowledge-base/INDEX.md +43 -0
  7. package/.agent/knowledge-base/README.md +47 -7
  8. package/.agent/knowledge-base/architecture/KB-2026-01-01-003-neo4j-graph-database-skills.md +1146 -0
  9. package/.agent/knowledge-base/architecture/README.md +98 -0
  10. package/.agent/knowledge-base/bugs/KB-2026-01-02-yaml-special-character-escaping.md +56 -0
  11. package/.agent/knowledge-base/bugs/medium/KB-2026-01-01-001-example-auto-learned.md +198 -0
  12. package/.agent/knowledge-base/features/KB-2026-01-01-001-landing-page-design-trends-2026.md +646 -0
  13. package/.agent/knowledge-base/features/KB-2026-01-01-004-uiux-design-skills-2026.md +945 -0
  14. package/.agent/knowledge-base/features/KB-2026-01-01-005-modern-ai-landing-page-ui.md +310 -0
  15. package/.agent/knowledge-base/features/KB-2026-01-01-006-award-winning-landing-page-patterns.md +324 -0
  16. package/.agent/knowledge-base/features/KB-2026-01-02-001-cleanup-workflow.md +242 -0
  17. package/.agent/knowledge-base/features/KB-2026-01-02-002-landing-page-monorepo-architecture.md +148 -0
  18. package/.agent/knowledge-base/features/KB-2026-01-02-003-premium-glassmorphism-patterns.md +58 -0
  19. package/.agent/knowledge-base/features/KB-2026-01-04-ai-agent-enforcement.md +46 -0
  20. package/.agent/knowledge-base/features/README.md +83 -0
  21. package/.agent/knowledge-base/features/figma-landing-page-workflow.md +311 -0
  22. package/.agent/knowledge-base/features/figma-mcp-sa-guide.md +673 -0
  23. package/.agent/knowledge-base/features/figma-mcp-uiux-guide.md +459 -0
  24. package/.agent/knowledge-base/performance/KB-2026-01-02-lazy-loading-optimization.md +80 -0
  25. package/.agent/knowledge-base/platform-specific/KB-2026-01-02-windows-console-encoding.md +56 -0
  26. package/.agent/knowledge-base/role-guides/DEV-KB-Guide.md +527 -0
  27. package/.agent/knowledge-base/role-guides/DEVOPS-KB-Guide.md +491 -0
  28. package/.agent/knowledge-base/role-guides/PM-KB-Guide.md +299 -0
  29. package/.agent/knowledge-base/role-guides/SECA-KB-Guide.md +555 -0
  30. package/.agent/knowledge-base/role-guides/TESTER-KB-Guide.md +519 -0
  31. package/.agent/knowledge-base/security/KB-2026-01-02-input-validation-sanitization.md +74 -0
  32. package/.agent/rules/AUTO-LEARNING.md +418 -0
  33. package/.agent/rules/ai-enforcement.md +11 -0
  34. package/.agent/rules/artifacts.md +77 -58
  35. package/.agent/rules/git-workflow.md +25 -65
  36. package/.agent/rules/global.md +18 -13
  37. package/.agent/skills/role-ba.md +76 -0
  38. package/.agent/skills/role-brain.md +470 -0
  39. package/.agent/skills/role-dev.md +338 -0
  40. package/.agent/skills/role-devops.md +122 -0
  41. package/.agent/skills/role-orchestrator.md +223 -0
  42. package/.agent/skills/role-pm.md +258 -0
  43. package/.agent/skills/role-po.md +237 -0
  44. package/.agent/skills/role-qa.md +81 -0
  45. package/.agent/skills/role-reporter.md +117 -0
  46. package/.agent/skills/role-sa.md +277 -0
  47. package/.agent/skills/role-seca.md +294 -0
  48. package/.agent/skills/role-stakeholder.md +105 -0
  49. package/.agent/skills/role-tester.md +294 -0
  50. package/.agent/skills/role-uiux.md +264 -0
  51. package/.agent/templates/CHANGELOG-Template.md +83 -0
  52. package/.agent/templates/Knowledge-Entry-Template.md +3 -0
  53. package/.agent/workflows/brain.md +84 -53
  54. package/.agent/workflows/compound.md +51 -0
  55. package/.agent/workflows/cycle.md +61 -0
  56. package/.agent/workflows/emergency.md +114 -0
  57. package/.agent/workflows/explore.md +147 -0
  58. package/.agent/workflows/housekeeping.md +105 -0
  59. package/.agent/workflows/metrics.md +179 -0
  60. package/.agent/workflows/orchestrator.md +68 -0
  61. package/.agent/workflows/preflight.md +35 -0
  62. package/.agent/workflows/release.md +153 -0
  63. package/.agent/workflows/route.md +160 -0
  64. package/.agent/workflows/sprint.md +125 -0
  65. package/.agent/workflows/validate.md +146 -0
  66. package/CHANGELOG.md +349 -6
  67. package/README.md +171 -86
  68. package/bin/CROSS-PLATFORM-CLI.md +526 -0
  69. package/bin/README.md +525 -0
  70. package/bin/cli.js +65 -90
  71. package/bin/kb +34 -0
  72. package/bin/kb.bat +28 -0
  73. package/bin/kb_cli.py +226 -0
  74. package/bin/lib/README.md +411 -0
  75. package/bin/lib/__init__.py +7 -0
  76. package/bin/lib/__pycache__/kb_add.cpython-313.pyc +0 -0
  77. package/bin/lib/__pycache__/kb_common.cpython-313.pyc +0 -0
  78. package/bin/lib/__pycache__/kb_compound.cpython-313.pyc +0 -0
  79. package/bin/lib/__pycache__/kb_index.cpython-313.pyc +0 -0
  80. package/bin/lib/__pycache__/kb_list.cpython-313.pyc +0 -0
  81. package/bin/lib/__pycache__/kb_search.cpython-313.pyc +0 -0
  82. package/bin/lib/__pycache__/kb_stats.cpython-313.pyc +0 -0
  83. package/bin/lib/kb_add.py +203 -0
  84. package/bin/lib/kb_common.py +224 -0
  85. package/bin/lib/kb_compound.py +250 -0
  86. package/bin/lib/kb_index.py +193 -0
  87. package/bin/lib/kb_list.py +144 -0
  88. package/bin/lib/kb_search.py +121 -0
  89. package/bin/lib/kb_stats.py +153 -0
  90. package/docs/AGENT-MANAGEMENT-GUIDE.md +298 -0
  91. package/docs/ARCHITECTURE-OVERVIEW.md +350 -0
  92. package/docs/BRAIN-ARCHITECTURE.md +396 -0
  93. package/docs/COMPOUND-ENGINEERING-SETUP.md +326 -0
  94. package/docs/KNOWLEDGE-BASE-GUIDE.md +330 -0
  95. package/docs/KNOWLEDGE-BASE-SIMPLE.md +248 -0
  96. package/docs/MONOREPO-ARCHITECTURE.md +492 -0
  97. package/docs/PROJECT-DOCUMENTATION-INDEX.md +540 -0
  98. package/docs/SDLC-Diagram.md +235 -0
  99. package/docs/analysis/Workflow-Optimization-Diagram.md +524 -0
  100. package/docs/analysis/Workflows-Deep-Analysis-2026-01-03.md +604 -0
  101. package/docs/architecture/{brain.md → BRAIN.md} +1 -1
  102. package/docs/global/Master-Documentation.md +307 -0
  103. package/docs/global/reports/Final-Approval-Report.md +257 -0
  104. package/docs/guides/AUTO-LEARNING-COMPLETE-GUIDE.md +519 -0
  105. package/docs/guides/AUTO-LEARNING-SYSTEM.md +322 -0
  106. package/docs/guides/LEARNING-FLOW.md +0 -0
  107. package/docs/guides/MCP-QUICK-REFERENCE.md +104 -0
  108. package/docs/guides/MCP-SETUP.md +139 -0
  109. package/docs/guides/QUICK-START.md +4 -0
  110. package/docs/guides/ROLE-COMMUNICATION-SYSTEM.md +71 -0
  111. package/docs/reports/Metrics-Dashboard-2026-01-02.md +66 -0
  112. package/docs/reports/Metrics-Dashboard-2026-01-04.md +68 -0
  113. package/docs/reports/UIUX-Design-Skills-Research-Report-2026.md +91 -0
  114. package/docs/reports/Validation-Report-2026-01-04.md +23 -0
  115. package/docs/research-reports/research-20260103-101315.json +95 -0
  116. package/docs/research-reports/research-20260103-101315.md +78 -0
  117. package/docs/research-reports/research-20260103-183837.json +95 -0
  118. package/docs/research-reports/research-20260103-183837.md +78 -0
  119. package/docs/research-reports/research-20260103-190346.json +100 -0
  120. package/docs/research-reports/research-20260103-190346.md +83 -0
  121. package/docs/setup/{github-management.md → GITHUB-MANAGEMENT.md} +1 -1
  122. package/docs/setup/RESEARCH-AGENT-SETUP.md +575 -0
  123. package/docs/sprints/{sprint-github-issues.md → SPRINT-GITHUB-ISSUES.md} +1 -1
  124. package/docs/sprints/{sprint-leann-integration.md → SPRINT-LEANN-INTEGRATION.md} +1 -1
  125. package/docs/sprints/sprint-1/designs/Backend-Design-Spec-Sprint-1-v1.md +1206 -0
  126. package/docs/sprints/sprint-1/designs/System-Design-Spec-Sprint-1-v1.md +439 -0
  127. package/docs/sprints/sprint-1/designs/System-Design-Spec-v1.0.md +425 -0
  128. package/docs/sprints/sprint-1/designs/UIUX-Design-Spec-Sprint-1-v1.md +55 -0
  129. package/docs/sprints/sprint-1/designs/UIUX-Design-Spec-v1.0.md +644 -0
  130. package/docs/sprints/sprint-1/logs/DevOps-Plan-and-Log-Sprint-1-v1.md +253 -0
  131. package/docs/sprints/sprint-1/logs/Development-Log-Phase1.md +433 -0
  132. package/docs/sprints/sprint-1/logs/Development-Log-Sprint-1-v1.md +181 -0
  133. package/docs/sprints/sprint-1/logs/Development-Log-Sprint-1.md +548 -0
  134. package/docs/sprints/sprint-1/logs/Orchestration-Log-Sprint-1.md +46 -0
  135. package/docs/sprints/sprint-1/logs/Phase1-Summary.md +84 -0
  136. package/docs/sprints/sprint-1/plans/Product-Backlog-Sprint-1-v1.md +40 -0
  137. package/docs/sprints/sprint-1/plans/Product-Backlog-v1.0.md +613 -0
  138. package/docs/sprints/sprint-1/plans/Project-Plan-Sprint-1-v1.0.md +210 -0
  139. package/docs/sprints/sprint-1/plans/Project-Plan-Sprint-1-v1.md +377 -0
  140. package/docs/sprints/sprint-1/reports/Design-Verification-Report-v1.0.md +220 -0
  141. package/docs/sprints/sprint-1/reports/Phase-Report-Sprint-1-v1.md +238 -0
  142. package/docs/sprints/sprint-1/reports/Security-Review-Report-v1.0.md +285 -0
  143. package/docs/sprints/sprint-1/reports/Sprint-Report-Sprint-1.md +74 -0
  144. package/docs/sprints/sprint-1/reports/Test-Report-v1.0.md +346 -0
  145. package/docs/sprints/sprint-1/reviews/Design-Verification-Report.md +508 -0
  146. package/docs/sprints/sprint-1/reviews/Security-Review-Report.md +589 -0
  147. package/docs/sprints/sprint-1/sprint-current/logs/WORKFLOW-CLEANUP-FINAL.md +121 -0
  148. package/docs/sprints/sprint-1/sprint-current/logs/WORKFLOW-OPTIMIZATION-COMPLETE.md +224 -0
  149. package/docs/sprints/sprint-1/sprint-current/logs/Workflow-Optimization-Progress.md +310 -0
  150. package/docs/sprints/sprint-1/sprint-current/logs/Workflow-Optimization-Session-Summary.md +420 -0
  151. package/docs/sprints/sprint-1/sprint-current/plans/Workflow-Optimization-Implementation-Plan.md +1124 -0
  152. package/docs/sprints/sprint-2/SPRINT-SUMMARY.md +150 -0
  153. package/docs/sprints/sprint-2/designs/UIUX-Design-Spec-Sprint-2-v1.md +352 -0
  154. package/docs/sprints/sprint-2/logs/Development-Log-Sprint-2-v1.md +293 -0
  155. package/docs/sprints/sprint-2/plans/Product-Backlog-Sprint-2-v1.md +62 -0
  156. package/docs/sprints/sprint-2/plans/Project-Plan-Sprint-2-v1.md +228 -0
  157. package/docs/sprints/sprint-2/reports/Phase-Report-Sprint-2-v1.md +303 -0
  158. package/docs/sprints/sprint-3/designs/UIUX-Design-Spec-Sprint-3-v1.md +160 -0
  159. package/docs/sprints/sprint-3/logs/Development-Log-Sprint-3-v1.md +249 -0
  160. package/docs/sprints/sprint-3/logs/Testing-Report-Sprint-3-v1.md +244 -0
  161. package/docs/sprints/sprint-3/plans/Product-Backlog-Sprint-3-v1.md +95 -0
  162. package/docs/sprints/sprint-3/reports/Final-Approval-Report-Sprint-3-v1.md +299 -0
  163. package/docs/sprints/sprint-3/reports/Sprint-Summary-Sprint-3-v1.md +276 -0
  164. package/docs/sprints/sprint-3/reviews/Design-Verification-Report-Sprint-3-v1.md +122 -0
  165. package/docs/sprints/sprint-3/reviews/Security-Review-Report-Sprint-3-v1.md +67 -0
  166. package/docs/sprints/sprint-5/designs/Backend-Design-Spec-Sprint-5-v1.md +1734 -0
  167. package/docs/sprints/sprint-5/designs/Design-Verification-Report.md +101 -0
  168. package/docs/sprints/sprint-5/designs/Security-Review-Report.md +84 -0
  169. package/docs/sprints/sprint-6/.brain-state.json +29 -0
  170. package/package.json +92 -16
  171. package/.agent/ide-integration/aider-commands.md +0 -40
  172. package/.agent/ide-integration/cline-config.json +0 -108
  173. package/.agent/ide-integration/cursor-rules.md +0 -63
  174. package/.agent/ide-integration/github-copilot-instructions.md +0 -75
  175. package/.agent/ide-integration/vscode-commands.json +0 -190
  176. package/.agent/ide-integration/windsurf-cascade.md +0 -125
  177. package/.agent/knowledge-base/index.md +0 -202
  178. package/.agent/legacy/roles/designer.md +0 -311
  179. package/.agent/legacy/roles/dev.md +0 -177
  180. package/.agent/legacy/roles/devops.md +0 -146
  181. package/.agent/legacy/roles/orchestrator.md +0 -339
  182. package/.agent/legacy/roles/pm.md +0 -120
  183. package/.agent/legacy/roles/po.md +0 -89
  184. package/.agent/legacy/roles/qa.md +0 -108
  185. package/.agent/legacy/roles/reporter.md +0 -70
  186. package/.agent/legacy/roles/sa.md +0 -118
  187. package/.agent/legacy/roles/seca.md +0 -112
  188. package/.agent/legacy/roles/stakeholder.md +0 -111
  189. package/.agent/legacy/roles/tester.md +0 -129
  190. package/.agent/rules/global.md.bak +0 -154
  191. package/.agent/usage.md +0 -653
  192. package/.agent/workflows/auto.md +0 -35
  193. package/.agent/workflows/dev.md +0 -30
  194. package/.agent/workflows/devops.md +0 -28
  195. package/.agent/workflows/kb-search.md +0 -22
  196. package/.agent/workflows/pm.md +0 -42
  197. package/.agent/workflows/po.md +0 -21
  198. package/.agent/workflows/qa.md +0 -31
  199. package/.agent/workflows/reporter.md +0 -21
  200. package/.agent/workflows/sa.md +0 -51
  201. package/.agent/workflows/seca.md +0 -21
  202. package/.agent/workflows/stakeholder.md +0 -26
  203. package/.agent/workflows/tester.md +0 -21
  204. package/.agent/workflows/uiux.md +0 -38
  205. package/.cursorrules +0 -49
  206. package/.env.template +0 -10
  207. package/.github/ISSUE_TEMPLATE/bug_report.yml +0 -47
  208. package/.github/ISSUE_TEMPLATE/config.yml +0 -8
  209. package/.github/ISSUE_TEMPLATE/feature_request.yml +0 -33
  210. package/.github/ISSUE_TEMPLATE/security_alert.yml +0 -28
  211. package/.github/ISSUE_TEMPLATE/task_implementation.yml +0 -37
  212. package/.github/copilot-instructions.md +0 -60
  213. package/bin/commands/create.js +0 -96
  214. package/bin/commands/help.js +0 -69
  215. package/bin/commands/ide.js +0 -116
  216. package/bin/commands/init-kb.js +0 -74
  217. package/bin/commands/install.js +0 -68
  218. package/bin/commands/list.js +0 -35
  219. package/bin/graph_brain.py +0 -86
  220. package/bin/sync_github.py +0 -75
  221. package/bin/utils/args-parser.js +0 -33
  222. package/bin/utils/colors.js +0 -21
  223. package/bin/verify_neo4j.py +0 -25
  224. /package/.agent/rules/{knowledge-base.md → KNOWLEDGE-BASE.md} +0 -0
  225. /package/docs/architecture/{neo4j-learning-queries.md → NEO4J-LEARNING-QUERIES.md} +0 -0
  226. /package/docs/reports/{comparison-leann-neo4j.md → COMPARISON-LEANN-NEO4J.md} +0 -0
  227. /package/docs/sprints/{sprint-neo4j-brain.md → SPRINT-NEO4J-BRAIN.md} +0 -0
@@ -0,0 +1,540 @@
1
+ # Project Documentation Index
2
+
3
+ **Last Updated:** 2026-01-01
4
+ **Status:** Current
5
+
6
+ This document provides a complete index of all project documentation after the reorganization and file naming standardization.
7
+
8
+ ---
9
+
10
+ ## 📋 Quick Reference
11
+
12
+ ### Getting Started
13
+ - [README.md](../README.md) - Project overview
14
+ - [QUICK-START.md](guides/QUICK-START.md) - Quick start guide
15
+ - [INTEGRATION-GUIDE.md](guides/INTEGRATION-GUIDE.md) - Integration guide
16
+
17
+ ### Project Structure
18
+ - [PROJECT-STRUCTURE.md](../PROJECT-STRUCTURE.md) - Detailed structure
19
+ - [STRUCTURE.md](../STRUCTURE.md) - Structure overview
20
+ - [REORGANIZATION-COMPLETE.md](../REORGANIZATION-COMPLETE.md) - Reorganization details
21
+ - [FILE-NAMING-COMPLETE.md](../FILE-NAMING-COMPLETE.md) - Naming standards
22
+ - [STANDARDIZATION-SUMMARY.md](../STANDARDIZATION-SUMMARY.md) - Complete summary
23
+
24
+ ### Setup & Configuration
25
+ - [RESEARCH-AGENT-SETUP.md](setup/RESEARCH-AGENT-SETUP.md) - Research agent setup
26
+ - [GITHUB-MANAGEMENT.md](setup/GITHUB-MANAGEMENT.md) - GitHub integration
27
+ - [MCP-SETUP.md](guides/MCP-SETUP.md) - MCP configuration
28
+
29
+ ---
30
+
31
+ ## 📁 Documentation by Category
32
+
33
+ ### 1. Root Documentation
34
+
35
+ **Location:** `/`
36
+
37
+ | File | Description | Status |
38
+ |------|-------------|--------|
39
+ | `README.md` | Main project documentation | ✅ Current |
40
+ | `CHANGELOG.md` | Version history | ✅ Current |
41
+ | `PROJECT-STRUCTURE.md` | Project structure details | ✅ Current |
42
+ | `STRUCTURE.md` | Structure overview | ✅ Current |
43
+ | `REORGANIZATION-COMPLETE.md` | File reorganization summary | ✅ Current |
44
+ | `FILE-NAMING-STANDARDS.md` | Naming convention rules | ✅ Current |
45
+ | `FILE-NAMING-COMPLETE.md` | Naming standardization details | ✅ Current |
46
+ | `STANDARDIZATION-SUMMARY.md` | Complete standardization summary | ✅ Current |
47
+
48
+ ---
49
+
50
+ ### 2. Agent Framework Documentation
51
+
52
+ **Location:** `.agent/`
53
+
54
+ #### Core Documentation
55
+ | File | Description | Path |
56
+ |------|-------------|------|
57
+ | `USAGE.md` | Agent usage guide | `.agent/USAGE.md` |
58
+
59
+ #### IDE Integration
60
+ **Location:** `.agent/ide-integration/`
61
+
62
+ | File | Description | Status |
63
+ |------|-------------|--------|
64
+ | `README.md` | IDE integration overview | ✅ Current |
65
+ | `AIDER-COMMANDS.md` | Aider AI commands | ✅ Current |
66
+ | `CURSOR-RULES.md` | Cursor IDE rules | ✅ Current |
67
+ | `GITHUB-COPILOT-INSTRUCTIONS.md` | GitHub Copilot setup | ✅ Current |
68
+ | `WINDSURF-CASCADE.md` | Windsurf Cascade config | ✅ Current |
69
+ | `cline-config.json` | Cline configuration | ✅ Current |
70
+ | `vscode-commands.json` | VS Code commands | ✅ Current |
71
+
72
+ #### Knowledge Base
73
+ **Location:** `.agent/knowledge-base/`
74
+
75
+ | File | Description | Status |
76
+ |------|-------------|--------|
77
+ | `README.md` | Knowledge base overview | ✅ Current |
78
+ | `INDEX.md` | Knowledge base index | ✅ Current |
79
+ | `AUTO-LEARNING-GUIDE.md` | Auto-learning guide | ✅ Current |
80
+
81
+ **Categories:**
82
+ - `architecture/` - Architecture decisions
83
+ - `bugs/` - Bug fixes and solutions
84
+ - `features/` - Feature implementations
85
+ - `performance/` - Performance optimizations
86
+ - `security/` - Security fixes
87
+ - `platform-specific/` - Platform-specific solutions
88
+ - `role-guides/` - Role-specific guides
89
+
90
+ #### Rules
91
+ **Location:** `.agent/rules/`
92
+
93
+ | File | Description | Status |
94
+ |------|-------------|--------|
95
+ | `GLOBAL.md` | Global rules | ✅ Current |
96
+ | `ARTIFACTS.md` | Artifact rules | ✅ Current |
97
+ | `AUTO-LEARNING.md` | Auto-learning rules | ✅ Current |
98
+ | `GIT-WORKFLOW.md` | Git workflow rules | ✅ Current |
99
+ | `KNOWLEDGE-BASE.md` | Knowledge base rules | ✅ Current |
100
+
101
+ #### Templates
102
+ **Location:** `.agent/templates/`
103
+
104
+ All 16 template files follow the pattern: `Word-Word-Template.md`
105
+
106
+ | Template | Purpose |
107
+ |----------|---------|
108
+ | `Project-Plan-Template.md` | Project planning |
109
+ | `Product-Backlog-Template.md` | Product backlog |
110
+ | `System-Design-Spec-Template.md` | System design |
111
+ | `UIUX-Design-Spec-Template.md` | UI/UX design |
112
+ | `Design-Verification-Report-Template.md` | Design verification |
113
+ | `Security-Review-Report-Template.md` | Security review |
114
+ | `Development-Log-Template.md` | Development logs |
115
+ | `DevOps-Plan-Template.md` | DevOps planning |
116
+ | `Test-Report-Template.md` | Testing reports |
117
+ | `Final-Project-Report-Template.md` | Final reports |
118
+ | `Final-Approval-Report-Template.md` | Final approval |
119
+ | `Phase-Report-Template.md` | Phase reports |
120
+ | `Master-Documentation-Template.md` | Master docs |
121
+ | `Knowledge-Entry-Template.md` | Knowledge entries |
122
+ | `CHANGELOG-Template.md` | Changelog |
123
+ | `definition-of-done.md` | Definition of done |
124
+ | `incident-response.md` | Incident response |
125
+
126
+ #### Workflows
127
+ **Location:** `.agent/workflows/`
128
+
129
+ All 18 workflow files use lowercase naming.
130
+
131
+ | Workflow | Description |
132
+ |----------|-------------|
133
+ | `pm.md` | Project Manager |
134
+ | `po.md` | Product Owner |
135
+ | `sa.md` | System Analyst |
136
+ | `uiux.md` | UI/UX Designer |
137
+ | `qa.md` | Quality Assurance |
138
+ | `seca.md` | Security Analyst |
139
+ | `dev.md` | Developer |
140
+ | `devops.md` | DevOps Engineer |
141
+ | `tester.md` | Tester |
142
+ | `reporter.md` | Reporter |
143
+ | `stakeholder.md` | Stakeholder |
144
+ | `auto.md` | Automation |
145
+ | `research.md` | Research workflow |
146
+ | `brain.md` | Brain/AI workflow |
147
+ | `auto-learning-workflow.md` | Auto-learning |
148
+ | `git-kb-integration.md` | Git KB integration |
149
+ | `kb-hooks-setup.md` | KB hooks setup |
150
+ | `kb-search.md` | KB search |
151
+
152
+ ---
153
+
154
+ ### 3. Configuration Documentation
155
+
156
+ #### Kiro Steering Files
157
+ **Location:** `.kiro/steering/`
158
+
159
+ All 17 steering files use lowercase naming.
160
+
161
+ | File | Description |
162
+ |------|-------------|
163
+ | `README.md` | Steering overview |
164
+ | `00-teamlifecycle-overview.md` | TeamLifecycle overview |
165
+ | `global-rules.md` | Global rules |
166
+ | `git-workflow.md` | Git workflow |
167
+ | `knowledge-base.md` | Knowledge base management |
168
+ | `role-pm.md` | PM role |
169
+ | `role-po.md` | PO role |
170
+ | `role-sa.md` | SA role |
171
+ | `role-uiux.md` | UI/UX role |
172
+ | `role-qa.md` | QA role |
173
+ | `role-seca.md` | Security role |
174
+ | `role-dev.md` | Developer role |
175
+ | `role-devops.md` | DevOps role |
176
+ | `role-tester.md` | Tester role |
177
+ | `role-reporter.md` | Reporter role |
178
+ | `role-stakeholder.md` | Stakeholder role |
179
+ | `role-orchestrator.md` | Orchestrator role |
180
+
181
+ #### GitHub Configuration
182
+ **Location:** `.github/`
183
+
184
+ | File | Description | Status |
185
+ |------|-------------|--------|
186
+ | `COPILOT-INSTRUCTIONS.md` | Copilot instructions | ✅ Current |
187
+
188
+ **Issue Templates:** `.github/ISSUE_TEMPLATE/`
189
+ - `bug_report.yml`
190
+ - `feature_request.yml`
191
+ - `security_alert.yml`
192
+ - `task_implementation.yml`
193
+ - `config.yml`
194
+
195
+ ---
196
+
197
+ ### 4. Project Documentation
198
+
199
+ **Location:** `docs/`
200
+
201
+ #### Main Documentation
202
+ | File | Description | Status |
203
+ |------|-------------|--------|
204
+ | `OUTLINE.md` | Documentation outline | ✅ Current |
205
+ | `PROJECT-DOCUMENTATION-INDEX.md` | This file | ✅ Current |
206
+ | `SDLC-Diagram.md` | SDLC workflow diagrams | ✅ Current |
207
+ | `BRAIN-ARCHITECTURE.md` | BRAIN orchestrator architecture | ✅ Current |
208
+ | `ARCHITECTURE-OVERVIEW.md` | Complete system architecture | ✅ Current |
209
+ | `KNOWLEDGE-BASE-GUIDE.md` | KB visual guide with diagrams | ✅ Current |
210
+ | `KNOWLEDGE-BASE-SIMPLE.md` | KB quick reference | ✅ Current |
211
+ | `NEO4J-COMPOUND-INTEGRATION.md` | Neo4j integration guide | ✅ Current |
212
+ | `NEO4J-INTEGRATION-COMPLETE.md` | Neo4j implementation summary | ✅ Current |
213
+ | `NEO4J-DOCS-INTEGRATION-COMPLETE.md` | Neo4j + docs/ integration | ✅ Current |
214
+ | `CLI-REORGANIZATION-COMPLETE.md` | Cross-platform CLI reorganization | ✅ Current |
215
+ | `CLI-TESTING-RESULTS.md` | CLI testing results (Windows) | ✅ Current |
216
+
217
+ #### Architecture
218
+ **Location:** `docs/architecture/`
219
+
220
+ | File | Description | Status |
221
+ |------|-------------|--------|
222
+ | `BRAIN.md` | Brain architecture | ✅ Current |
223
+ | `NEO4J-LEARNING-QUERIES.md` | Neo4j queries | ✅ Current |
224
+
225
+ #### Guides
226
+ **Location:** `docs/guides/`
227
+
228
+ All guide files use UPPERCASE naming.
229
+
230
+ | File | Description | Status |
231
+ |------|-------------|--------|
232
+ | `QUICK-START.md` | Quick start guide | ✅ Current |
233
+ | `CLI-EXAMPLES.md` | CLI examples | ✅ Current |
234
+ | `INTEGRATION-GUIDE.md` | Integration guide | ✅ Current |
235
+ | `AUTO-LEARNING-SYSTEM.md` | Auto-learning system | ✅ Current |
236
+ | `AUTO-LEARNING-COMPLETE-GUIDE.md` | Complete auto-learning | ✅ Current |
237
+ | `LEARNING-FLOW.md` | Learning flow | ✅ Current |
238
+ | `MCP-GUIDE.md` | MCP guide | ✅ Current |
239
+ | `MCP-QUICK-REFERENCE.md` | MCP quick reference | ✅ Current |
240
+ | `MCP-SETUP.md` | MCP setup | ✅ Current |
241
+ | `ROLE-COMMUNICATION-SYSTEM.md` | Role chat system guide | ✅ Current |
242
+
243
+ #### Reports
244
+ **Location:** `docs/reports/`
245
+
246
+ | File | Description | Status |
247
+ |------|-------------|--------|
248
+ | `COMPARISON-LEANN-NEO4J.md` | LeANN vs Neo4j comparison | ✅ Current |
249
+ | `UIUX-Design-Skills-Research-Report-2026.md` | UI/UX research | ✅ Current |
250
+
251
+ #### Setup
252
+ **Location:** `docs/setup/`
253
+
254
+ | File | Description | Status |
255
+ |------|-------------|--------|
256
+ | `RESEARCH-AGENT-SETUP.md` | Research agent setup | ✅ Current |
257
+ | `GITHUB-MANAGEMENT.md` | GitHub management | ✅ Current |
258
+
259
+ #### Sprints
260
+ **Location:** `docs/sprints/`
261
+
262
+ | File | Description | Status |
263
+ |------|-------------|--------|
264
+ | `SPRINT-GITHUB-ISSUES.md` | GitHub issues sprint | ✅ Current |
265
+ | `SPRINT-LEANN-INTEGRATION.md` | LeANN integration sprint | ✅ Current |
266
+ | `SPRINT-NEO4J-BRAIN.md` | Neo4j brain sprint | ✅ Current |
267
+
268
+ **Sprint Directories:**
269
+ - `sprint-1/` - First sprint artifacts
270
+ - `sprint-2/` - Second sprint artifacts
271
+
272
+ #### Research Reports
273
+ **Location:** `docs/research-reports/`
274
+
275
+ Generated research reports (JSON and Markdown format).
276
+
277
+ ---
278
+
279
+ ### 5. Tools Documentation
280
+
281
+ **Location:** `tools/`
282
+
283
+ #### Research Agent
284
+ **Location:** `tools/research/`
285
+
286
+ | File | Description | Status |
287
+ |------|-------------|--------|
288
+ | `README.md` | Research agent documentation | ✅ Current |
289
+ | `research_agent.py` | Core research agent | ✅ Current |
290
+ | `research_mcp.py` | MCP integration | ✅ Current |
291
+ | `research_mcp_extended.py` | Extended MCP | ✅ Current |
292
+
293
+ **Usage:**
294
+ ```bash
295
+ python tools/research/research_agent.py --task "..." --type feature
296
+ ```
297
+
298
+ #### Neo4j Tools
299
+ **Location:** `tools/neo4j/`
300
+
301
+ | File | Description | Status |
302
+ |------|-------------|--------|
303
+ | `README.md` | Neo4j documentation | ✅ Current |
304
+ | `graph_brain.py` | Graph brain | ✅ Current |
305
+ | `sync_skills_to_neo4j.py` | Skills sync | ✅ Current |
306
+ | `query_skills_neo4j.py` | Skills query | ✅ Current |
307
+ | `test_neo4j_connection.py` | Connection test | ✅ Current |
308
+ | `verify_neo4j.py` | Verification | ✅ Current |
309
+ | `requirements.txt` | Dependencies | ✅ Current |
310
+
311
+ **Usage:**
312
+ ```bash
313
+ python tools/neo4j/sync_skills_to_neo4j.py
314
+ python tools/neo4j/query_skills_neo4j.py --all-skills
315
+ ```
316
+
317
+ #### GitHub Tools
318
+ **Location:** `tools/github/`
319
+
320
+ | File | Description | Status |
321
+ |------|-------------|--------|
322
+ | `sync_github.py` | GitHub sync | ✅ Current |
323
+
324
+ #### Setup Scripts
325
+ **Location:** `tools/setup/`
326
+
327
+ | File | Description | Status |
328
+ |------|-------------|--------|
329
+ | `setup_research_hooks.sh` | Research hooks setup | ✅ Current |
330
+ | `standardize_filenames.ps1` | File naming script | ✅ Current |
331
+
332
+ ---
333
+
334
+ ## 🔍 Finding Documentation
335
+
336
+ ### By Topic
337
+
338
+ **Getting Started:**
339
+ - Quick Start: `docs/guides/QUICK-START.md`
340
+ - Integration: `docs/guides/INTEGRATION-GUIDE.md`
341
+ - CLI Examples: `docs/guides/CLI-EXAMPLES.md`
342
+
343
+ **Research Agent:**
344
+ - Setup: `docs/setup/RESEARCH-AGENT-SETUP.md`
345
+ - Documentation: `tools/research/README.md`
346
+ - Workflow: `.agent/workflows/research.md`
347
+
348
+ **Neo4j:**
349
+ - Integration Guide: `docs/NEO4J-COMPOUND-INTEGRATION.md`
350
+ - Implementation Summary: `docs/NEO4J-INTEGRATION-COMPLETE.md`
351
+ - Documentation: `tools/neo4j/README.md`
352
+ - Architecture: `docs/architecture/BRAIN.md`
353
+ - Queries: `docs/architecture/NEO4J-LEARNING-QUERIES.md`
354
+
355
+ **Knowledge Base:**
356
+ - Overview: `.agent/knowledge-base/README.md`
357
+ - Visual Guide: `docs/KNOWLEDGE-BASE-GUIDE.md`
358
+ - Quick Reference: `docs/KNOWLEDGE-BASE-SIMPLE.md`
359
+ - Rules: `.agent/rules/KNOWLEDGE-BASE.md`
360
+ - Auto-Learning: `.agent/knowledge-base/AUTO-LEARNING-GUIDE.md`
361
+ - Scripts: `bin/README.md`
362
+
363
+ **MCP Integration:**
364
+ - Guide: `docs/guides/MCP-GUIDE.md`
365
+ - Setup: `docs/guides/MCP-SETUP.md`
366
+ - Quick Reference: `docs/guides/MCP-QUICK-REFERENCE.md`
367
+
368
+ **Workflows:**
369
+ - All workflows: `.agent/workflows/`
370
+ - Steering files: `.kiro/steering/`
371
+
372
+ ### By File Type
373
+
374
+ **UPPERCASE Documentation (WORD-WORD.md):**
375
+ - All guides in `docs/guides/`
376
+ - All reports in `docs/reports/`
377
+ - All setup docs in `docs/setup/`
378
+ - All architecture docs in `docs/architecture/`
379
+ - All sprint docs in `docs/sprints/`
380
+ - All rules in `.agent/rules/`
381
+ - All IDE integration in `.agent/ide-integration/`
382
+
383
+ **lowercase files (word.md, word-word.md):**
384
+ - All workflows in `.agent/workflows/`
385
+ - All steering files in `.kiro/steering/`
386
+
387
+ **Title-Case-Template.md:**
388
+ - All templates in `.agent/templates/`
389
+
390
+ **lowercase_with_underscores.py:**
391
+ - All Python scripts in `tools/`
392
+
393
+ ---
394
+
395
+ ## 📊 Documentation Statistics
396
+
397
+ ### Total Files
398
+ - **Root Documentation:** 8 files
399
+ - **Agent Framework:** 50+ files
400
+ - **Configuration:** 20+ files
401
+ - **Project Documentation:** 30+ files
402
+ - **Tools Documentation:** 10+ files
403
+
404
+ ### By Category
405
+ - **Guides:** 9 files
406
+ - **Templates:** 16 files
407
+ - **Workflows:** 18 files
408
+ - **Steering Files:** 17 files
409
+ - **Rules:** 5 files
410
+ - **Tools:** 10+ scripts
411
+
412
+ ### File Naming
413
+ - **UPPERCASE:** 40+ documentation files
414
+ - **lowercase:** 35+ workflow/steering files
415
+ - **Title-Case:** 16 template files
416
+ - **lowercase_underscore:** 10+ Python scripts
417
+
418
+ ---
419
+
420
+ ## 🔄 Recent Changes
421
+
422
+ ### 2026-01-02: docs/ Directory Integration with Neo4j Brain
423
+ 1. **Knowledge Base Expansion**
424
+ - Integrated `docs/` directory into KB system
425
+ - Increased indexed entries from 6 to 46 (7x increase)
426
+ - All documentation now searchable via KB CLI
427
+ - Neo4j Brain now indexes all project documentation
428
+
429
+ 2. **Updated Modules**
430
+ - `bin/lib/kb_common.py` - Added docs path support
431
+ - `bin/lib/kb_search.py` - Search both KB + docs
432
+ - `bin/lib/kb_index.py` - Index both locations
433
+ - `bin/lib/kb_compound.py` - Compound ops for both
434
+ - `tools/neo4j/sync_skills_to_neo4j.py` - Sync both locations
435
+
436
+ 3. **Documentation**
437
+ - Created `NEO4J-DOCS-INTEGRATION-COMPLETE.md`
438
+ - Updated all KB documentation
439
+ - Added comprehensive testing results
440
+
441
+ ### 2026-01-02: Cross-Platform CLI Reorganization
442
+ 1. **Python-Based CLI**
443
+ - Replaced PowerShell scripts with Python
444
+ - Created unified CLI for Windows/Linux/macOS
445
+ - 5-10x faster performance
446
+ - Better error handling and ANSI colors
447
+
448
+ 2. **New Structure**
449
+ - `bin/kb` (bash entry point)
450
+ - `bin/kb.bat` (Windows batch entry)
451
+ - `bin/kb_cli.py` (Python CLI)
452
+ - `bin/lib/*.py` (7 library modules)
453
+
454
+ 3. **Documentation**
455
+ - Created `CLI-REORGANIZATION-COMPLETE.md`
456
+ - Created `CLI-TESTING-RESULTS.md`
457
+ - Updated `bin/README.md`
458
+
459
+ ### 2026-01-02: Neo4j Compound Integration
460
+ 1. **Neo4j Brain Integration**
461
+ - Created compound script system (`kb-compound.ps1`)
462
+ - Integrated Neo4j as knowledge graph brain
463
+ - Implemented hybrid file + graph storage
464
+ - Added compound commands (search, add, sync, query, stats)
465
+
466
+ 2. **Documentation**
467
+ - Created `NEO4J-COMPOUND-INTEGRATION.md` (complete guide)
468
+ - Created `NEO4J-INTEGRATION-COMPLETE.md` (summary)
469
+ - Updated `bin/README.md` with compound commands
470
+ - Updated `.agent/knowledge-base/README.md`
471
+
472
+ 3. **Scripts**
473
+ - Created `kb-compound.ps1` (compound operations)
474
+ - Updated `kb.ps1` (added compound mode)
475
+ - Fixed `kb-stats.ps1` (syntax error)
476
+ - Verified Neo4j sync and query scripts
477
+
478
+ ### 2026-01-01: Major Reorganization
479
+ 1. **File Reorganization**
480
+ - Moved research tools to `tools/research/`
481
+ - Moved Neo4j tools to `tools/neo4j/`
482
+ - Moved GitHub tools to `tools/github/`
483
+ - Moved setup scripts to `tools/setup/`
484
+
485
+ 2. **File Naming Standardization**
486
+ - Renamed 17 files to UPPERCASE
487
+ - Applied consistent naming conventions
488
+ - Ensured 100% English names
489
+
490
+ 3. **Documentation Updates**
491
+ - Updated all path references
492
+ - Created comprehensive indexes
493
+ - Added this documentation index
494
+
495
+ ---
496
+
497
+ ## 📝 Contributing
498
+
499
+ ### Adding New Documentation
500
+
501
+ **Documentation Files:**
502
+ ```bash
503
+ # Use UPPERCASE-WITH-HYPHENS.md
504
+ docs/guides/NEW-GUIDE.md
505
+ ```
506
+
507
+ **Workflow Files:**
508
+ ```bash
509
+ # Use lowercase.md or lowercase-with-hyphens.md
510
+ .agent/workflows/new-workflow.md
511
+ ```
512
+
513
+ **Template Files:**
514
+ ```bash
515
+ # Use Title-Case-Template.md
516
+ .agent/templates/New-Template.md
517
+ ```
518
+
519
+ ### Updating Documentation
520
+
521
+ 1. Follow naming conventions in `FILE-NAMING-STANDARDS.md`
522
+ 2. Update this index when adding new files
523
+ 3. Keep cross-references current
524
+ 4. Use relative paths for links
525
+
526
+ ---
527
+
528
+ ## 🔗 External Resources
529
+
530
+ - **Neo4j Browser:** https://workspace-preview.neo4j.io/workspace/query
531
+ - **GitHub Repository:** (configured in `.env`)
532
+ - **Landing Page:** `landing-page/` directory
533
+
534
+ ---
535
+
536
+ **Last Updated:** 2026-01-02
537
+ **Maintained By:** Agentic SDLC Team
538
+ **Status:** ✅ Current and Complete
539
+
540
+ **Latest:** Neo4j compound integration complete with hybrid file + graph storage system.