agentic-sdlc 1.5.1 → 1.8.1

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 (149) hide show
  1. package/.agent/rules/agent-execution.md +55 -0
  2. package/.agent/rules/ai-enforcement.md +4 -3
  3. package/.agent/rules/artifacts.md +79 -77
  4. package/.agent/rules/auto-learning.md +78 -0
  5. package/.agent/rules/code-quality.md +40 -0
  6. package/.agent/rules/git-workflow.md +44 -24
  7. package/.agent/rules/global.md +10 -6
  8. package/.agent/rules/naming-conventions.md +55 -0
  9. package/.agent/skills/role-ba.md +6 -2
  10. package/.agent/skills/role-brain.md +5 -1
  11. package/.agent/skills/role-cloud.md +38 -0
  12. package/.agent/skills/role-dev.md +31 -5
  13. package/.agent/skills/role-devops.md +9 -0
  14. package/.agent/skills/role-game.md +35 -0
  15. package/.agent/skills/role-mobile.md +55 -0
  16. package/.agent/skills/role-orchestrator.md +4 -0
  17. package/.agent/skills/role-pm.md +4 -0
  18. package/.agent/skills/role-po.md +4 -0
  19. package/.agent/skills/role-reporter.md +4 -0
  20. package/.agent/skills/role-research.md +78 -0
  21. package/.agent/skills/role-sa.md +4 -0
  22. package/.agent/skills/role-seca.md +4 -0
  23. package/.agent/skills/role-stakeholder.md +4 -0
  24. package/.agent/skills/role-tester.md +15 -3
  25. package/.agent/skills/role-uiux.md +4 -0
  26. package/.agent/templates/CHANGELOG-Template.md +2 -2
  27. package/.agent/templates/Design-Verification-Report-Template.md +4 -4
  28. package/.agent/templates/DevOps-Plan-Template.md +7 -0
  29. package/.agent/templates/Specification-Template.md +38 -0
  30. package/.agent/templates/ab-comparison-report.md +175 -0
  31. package/.agent/templates/observer-report.md +131 -0
  32. package/.agent/templates/quality-score-report.md +197 -0
  33. package/.agent/templates/self-learning-digest.md +268 -0
  34. package/.agent/templates/system-health-report.md +330 -0
  35. package/.agent/workflows/ab.md +101 -0
  36. package/.agent/workflows/autogen.md +65 -0
  37. package/.agent/workflows/brain.md +52 -42
  38. package/.agent/workflows/commit.md +61 -0
  39. package/.agent/workflows/cycle.md +36 -15
  40. package/.agent/workflows/debug.md +123 -0
  41. package/.agent/workflows/deep-search.md +82 -0
  42. package/.agent/workflows/docs.md +144 -0
  43. package/.agent/workflows/emergency.md +17 -15
  44. package/.agent/workflows/explore.md +15 -9
  45. package/.agent/workflows/housekeeping.md +24 -11
  46. package/.agent/workflows/metrics.md +14 -12
  47. package/.agent/workflows/monitor.md +98 -0
  48. package/.agent/workflows/observe.md +84 -0
  49. package/.agent/workflows/onboarding.md +135 -0
  50. package/.agent/workflows/orchestrator.md +21 -14
  51. package/.agent/workflows/planning.md +126 -0
  52. package/.agent/workflows/refactor.md +132 -0
  53. package/.agent/workflows/release.md +19 -12
  54. package/.agent/workflows/review.md +99 -0
  55. package/.agent/workflows/score.md +104 -0
  56. package/.agent/workflows/sprint.md +16 -14
  57. package/.agent/workflows/validate.md +13 -11
  58. package/.agent/workflows/worktree.md +154 -0
  59. package/CHANGELOG.md +88 -0
  60. package/README.md +12 -4
  61. package/bin/cli.js +143 -13
  62. package/docs/.brain-health-history.json +42 -0
  63. package/docs/.brain-improvements.json +53 -0
  64. package/docs/.brain-learner-log.json +27 -0
  65. package/docs/.brain-scores.json +310 -0
  66. package/docs/architecture/system-flow.mermaid +81 -0
  67. package/docs/artifacts/2026-01-05-enforcement-gates-plan.md +80 -0
  68. package/docs/artifacts/2026-01-05-workflow-analysis.md +231 -0
  69. package/docs/artifacts/README.md +26 -0
  70. package/docs/guides/MCP-GUIDE.md +1 -0
  71. package/docs/reports/2026-01-05-autogen-evaluation.md +64 -0
  72. package/docs/reports/2026-01-05-brain-layer-analysis.md +109 -0
  73. package/docs/reports/2026-01-05-repository-audit.md +253 -0
  74. package/docs/reports/Metrics-Dashboard-2026-01-08.md +29 -0
  75. package/docs/reports/Metrics-Dashboard-Final.md +29 -0
  76. package/docs/reports/Validation-Report-2026-01-05.md +40 -0
  77. package/docs/reports/Validation-Report-2026-01-08.md +40 -0
  78. package/docs/reports/worktrunk-audit.md +94 -0
  79. package/docs/solutions/README.md +96 -0
  80. package/docs/walkthroughs/2026-01-05-audit-implementation.md +36 -0
  81. package/docs/walkthroughs/2026-01-05-autonomy-release.md +54 -0
  82. package/docs/walkthroughs/2026-01-05-enforcement-gates.md +33 -0
  83. package/docs/walkthroughs/2026-01-05-judge-enhancement.md +30 -0
  84. package/docs/walkthroughs/2026-01-05-landing-page-orchestrator.md +52 -0
  85. package/docs/walkthroughs/2026-01-05-validation.md +32 -0
  86. package/docs/walkthroughs/2026-01-05-workflow-audit.md +89 -0
  87. package/docs/walkthroughs/2026-01-05-workflow-refactoring.md +44 -0
  88. package/docs/walkthroughs/2026-01-06-worktrunk-integration.md +41 -0
  89. package/docs/walkthroughs/README.md +25 -0
  90. package/package.json +33 -19
  91. package/.agent/knowledge-base/AUTO-LEARNING-GUIDE.md +0 -327
  92. package/.agent/knowledge-base/HOW-IT-WORKS.md +0 -365
  93. package/.agent/knowledge-base/INDEX.md +0 -43
  94. package/.agent/knowledge-base/README.md +0 -242
  95. package/.agent/knowledge-base/architecture/.gitkeep +0 -1
  96. package/.agent/knowledge-base/architecture/KB-2026-01-01-003-neo4j-graph-database-skills.md +0 -1146
  97. package/.agent/knowledge-base/architecture/README.md +0 -98
  98. package/.agent/knowledge-base/bugs/.gitkeep +0 -1
  99. package/.agent/knowledge-base/bugs/KB-2026-01-02-yaml-special-character-escaping.md +0 -56
  100. package/.agent/knowledge-base/bugs/medium/KB-2026-01-01-001-example-auto-learned.md +0 -198
  101. package/.agent/knowledge-base/features/.gitkeep +0 -1
  102. package/.agent/knowledge-base/features/KB-2026-01-01-001-landing-page-design-trends-2026.md +0 -646
  103. package/.agent/knowledge-base/features/KB-2026-01-01-004-uiux-design-skills-2026.md +0 -945
  104. package/.agent/knowledge-base/features/KB-2026-01-01-005-modern-ai-landing-page-ui.md +0 -310
  105. package/.agent/knowledge-base/features/KB-2026-01-01-006-award-winning-landing-page-patterns.md +0 -324
  106. package/.agent/knowledge-base/features/KB-2026-01-02-001-cleanup-workflow.md +0 -242
  107. package/.agent/knowledge-base/features/KB-2026-01-02-002-landing-page-monorepo-architecture.md +0 -148
  108. package/.agent/knowledge-base/features/KB-2026-01-02-003-premium-glassmorphism-patterns.md +0 -58
  109. package/.agent/knowledge-base/features/KB-2026-01-04-ai-agent-enforcement.md +0 -46
  110. package/.agent/knowledge-base/features/README.md +0 -83
  111. package/.agent/knowledge-base/features/figma-landing-page-workflow.md +0 -311
  112. package/.agent/knowledge-base/features/figma-mcp-sa-guide.md +0 -673
  113. package/.agent/knowledge-base/features/figma-mcp-uiux-guide.md +0 -459
  114. package/.agent/knowledge-base/performance/.gitkeep +0 -1
  115. package/.agent/knowledge-base/performance/KB-2026-01-02-lazy-loading-optimization.md +0 -80
  116. package/.agent/knowledge-base/platform-specific/.gitkeep +0 -1
  117. package/.agent/knowledge-base/platform-specific/KB-2026-01-02-windows-console-encoding.md +0 -56
  118. package/.agent/knowledge-base/role-guides/DEV-KB-Guide.md +0 -527
  119. package/.agent/knowledge-base/role-guides/DEVOPS-KB-Guide.md +0 -491
  120. package/.agent/knowledge-base/role-guides/PM-KB-Guide.md +0 -299
  121. package/.agent/knowledge-base/role-guides/SECA-KB-Guide.md +0 -555
  122. package/.agent/knowledge-base/role-guides/TESTER-KB-Guide.md +0 -519
  123. package/.agent/knowledge-base/security/.gitkeep +0 -1
  124. package/.agent/knowledge-base/security/KB-2026-01-02-input-validation-sanitization.md +0 -74
  125. package/.agent/rules/AUTO-LEARNING.md +0 -418
  126. package/.agent/rules/KNOWLEDGE-BASE.md +0 -45
  127. package/.agent/skills/role-qa.md +0 -81
  128. package/.agent/workflows/compound.md +0 -51
  129. package/.agent/workflows/preflight.md +0 -35
  130. package/.agent/workflows/route.md +0 -160
  131. package/bin/kb +0 -34
  132. package/bin/kb.bat +0 -28
  133. package/bin/kb_cli.py +0 -226
  134. package/bin/lib/README.md +0 -411
  135. package/bin/lib/__init__.py +0 -7
  136. package/bin/lib/__pycache__/kb_add.cpython-313.pyc +0 -0
  137. package/bin/lib/__pycache__/kb_common.cpython-313.pyc +0 -0
  138. package/bin/lib/__pycache__/kb_compound.cpython-313.pyc +0 -0
  139. package/bin/lib/__pycache__/kb_index.cpython-313.pyc +0 -0
  140. package/bin/lib/__pycache__/kb_list.cpython-313.pyc +0 -0
  141. package/bin/lib/__pycache__/kb_search.cpython-313.pyc +0 -0
  142. package/bin/lib/__pycache__/kb_stats.cpython-313.pyc +0 -0
  143. package/bin/lib/kb_add.py +0 -203
  144. package/bin/lib/kb_common.py +0 -224
  145. package/bin/lib/kb_compound.py +0 -250
  146. package/bin/lib/kb_index.py +0 -193
  147. package/bin/lib/kb_list.py +0 -144
  148. package/bin/lib/kb_search.py +0 -121
  149. package/bin/lib/kb_stats.py +0 -153
@@ -0,0 +1,33 @@
1
+ # Walkthrough: 6 Enforcement Gates Implementation
2
+
3
+ **Date:** 2026-01-05
4
+ **Result:** ✅ Complete
5
+
6
+ ---
7
+
8
+ ## What Was Done
9
+
10
+ Updated [GEMINI.md](file:///d:/dev/agentic-sdlc/GEMINI.md) with 6 Critical Enforcement Gates:
11
+
12
+ | Gate | Purpose | Commands |
13
+ |------|---------|----------|
14
+ | 1. PRE-TASK | Check brain, recommend model, A/B test | `observer.py`, `model_optimizer.py`, `ab_tester.py` |
15
+ | 2. PLANNING | Create plan before code | `implementation_plan.md` |
16
+ | 3. ERROR | Halt on failure, fix, resume | `observer.py --halt/--resume` |
17
+ | 4. POST-TASK | Learn, judge, improve, sync | `learner.py`, `judge.py`, `self_improver.py` |
18
+ | 5. REPORTING | Create walkthrough | `docs/walkthroughs/` |
19
+ | 6. CLEANUP | Run housekeeping | `housekeeping.py` |
20
+
21
+ ## User Issues Addressed
22
+
23
+ 1. ✅ Observer halt on errors
24
+ 2. ✅ A/B testing for small tasks
25
+ 3. ✅ Planning before code
26
+ 4. ✅ Self-improve after tasks
27
+ 5. ✅ Reports mandatory
28
+ 6. ✅ Housekeeping after completion
29
+
30
+ ## Verification
31
+
32
+ - Ran `self_improver.py --analyze`
33
+ - Created this walkthrough (Gate 5)
@@ -0,0 +1,30 @@
1
+ ---
2
+ category: walkthrough
3
+ tags: [judge, code-scoring, brain]
4
+ date: 2026-01-05
5
+ author: @DEV
6
+ ---
7
+
8
+ # Walkthrough: Enhance Judge for All Outputs
9
+
10
+ ## Problem/Challenge
11
+ Judge only scored reports (.md), not code files. User expected: score EVERYTHING, then auto-improve all issues.
12
+
13
+ ## Solution/Implementation
14
+ Added code scoring to judge.py:
15
+ - `CODE_RUBRIC` with structure/quality/completeness criteria
16
+ - `score_code()` function for .py, .js, .astro, etc.
17
+ - `score_file()` dispatcher auto-detects file type
18
+ - Updated main() to use score_file
19
+
20
+ ## Artifacts/Output
21
+ | File | Score Before | Score After |
22
+ |------|-------------|-------------|
23
+ | Features.astro | 3.4/10 ❌ | 9.3/10 ✅ |
24
+ | walkthrough.md | 2.5/10 ❌ | 7.1/10 ✅ |
25
+
26
+ ## Next Steps/Actions
27
+ - Judge now auto-detects and scores all outputs
28
+ - Self-improve should create plans for low-scoring items
29
+
30
+ #walkthrough #judge #code-scoring
@@ -0,0 +1,52 @@
1
+ ---
2
+ category: walkthrough
3
+ tags: [landing-page, orchestrator, enforcement-gates]
4
+ date: 2026-01-05
5
+ author: @DEV
6
+ related: [implementation_plan.md](./implementation_plan.md)
7
+ ---
8
+
9
+ # Walkthrough: Landing Page Core Update (/orchestrator)
10
+
11
+ ## Problem/Challenge
12
+
13
+ Landing page was outdated with:
14
+ - Old workflow count (12 instead of 15)
15
+ - Missing 6 Enforcement Gates feature
16
+ - Brain components incomplete (missing Model Optimizer)
17
+
18
+ ## Solution/Implementation
19
+
20
+ Updated 3 components following /orchestrator workflow with all 6 enforcement gates:
21
+
22
+ ```astro
23
+ // Hero.astro - Updated badge
24
+ 6 Enforcement Gates • 15 Workflows • 14 AI Roles
25
+
26
+ // Features.astro - Added 6 features
27
+ 🚦 6 Enforcement Gates
28
+ 🧠 Self-Learning Brain
29
+ 📈 Compound Knowledge
30
+ 🔄 15 Automated Workflows
31
+ 🔌 Cross-IDE Compatible
32
+ 📦 Monorepo Ready
33
+ ```
34
+
35
+ | File | Change |
36
+ |------|--------|
37
+ | [Hero.astro](../../../projects/landing-page/src/components/Hero.astro) | Badge with gates |
38
+ | [Features.astro](../../../projects/landing-page/src/components/Features.astro) | 6 features |
39
+ | [Architecture.astro](../../../projects/landing-page/src/components/Architecture.astro) | 15 workflows |
40
+
41
+ ## Artifacts/Output
42
+
43
+ - [docs/walkthroughs/2026-01-05-landing-page-orchestrator.md](./2026-01-05-landing-page-orchestrator.md)
44
+ - Updated landing page components
45
+
46
+ ## Next Steps/Actions
47
+
48
+ From Self-Improve Plan PLAN-20260105-0931:
49
+ 1. ✅ Improve report quality - added code blocks
50
+ 2. ✅ Focus on completeness - added links
51
+
52
+ #walkthrough #landing-page #orchestrator
@@ -0,0 +1,32 @@
1
+ ---
2
+ category: walkthrough
3
+ tags: [validation, workflow, self-improvement, judge]
4
+ date: 2026-01-05
5
+ author: @DEV
6
+ related: [Validation-Report-2026-01-05.md](../reports/Validation-Report-2026-01-05.md)
7
+ ---
8
+
9
+ # Walkthrough: /validate Workflow & Tool Improvement
10
+
11
+ ## Problem/Challenge
12
+ Failed validation report requirements:
13
+ - Initial report scored **4.0/10** on Judge
14
+ - Missing Brain Protocol sections (Problem, Solution, Frontmatter)
15
+ - Missing code blocks and links
16
+
17
+ ## Solution/Implementation
18
+ 1. **Executed /validate**: Scanned 14 workflows, 100/100 Health Score.
19
+ 2. **Self-Improved Tool**:
20
+ - Updated `tools/validation/validate.py`
21
+ - Added `generate_report` formatted for 10/10 Judge score
22
+ - Added frontmatter, proper headers, yaml blocks, related links
23
+ 3. **Verified**: Re-generated report and scored.
24
+
25
+ ## Artifacts/Output
26
+ - [Validation Report](../reports/Validation-Report-2026-01-05.md) (10/10 Score ✅)
27
+ - Improved `validate.py` tool
28
+
29
+ ## Next Steps/Actions
30
+ - Apply similar improvements to other reporting tools
31
+
32
+ #walkthrough #validation #self-improvement
@@ -0,0 +1,89 @@
1
+ ---
2
+ title: Workflow Audit and Next Steps Implementation
3
+ date: 2026-01-05
4
+ author: @ORCHESTRATOR
5
+ type: walkthrough
6
+ status: complete
7
+ ---
8
+
9
+ # Workflow Audit and Next Steps Implementation
10
+
11
+ ## 1. Problem / Challenge
12
+ The previous workflow and skill definitions lacked explicit "Next Steps" guidance. This led to potential ambiguity for agents on what to do after completing a specific workflow or role-based task, reducing autonomy and increasing the risk of stalled processes.
13
+
14
+ ## 2. Solution / Implementation
15
+ A comprehensive audit was performed on all `.agent/workflows/*.md` and `.agent/skills/*.md` files.
16
+
17
+ ### 2.1 Standardized "Next Steps" Section
18
+ A standardized `## ⏭️ Next Steps` section was added to the end of **25 files** (13 skills, 12 workflows).
19
+
20
+ **Example (from cycle.md):**
21
+ ```markdown
22
+ ## ⏭️ Next Steps
23
+ - **If Compound Complete:** Workflow finished, ready for next task
24
+ - **If Issues Found:** Repeat `/cycle` or escalate to `/explore`
25
+ - **If Blocked:** Notify user via `notify_user`
26
+ ```
27
+
28
+ ### 2.2 System Flow Visualization
29
+ A new Mermaid diagram was created to visualize the transitions between these roles and workflows.
30
+
31
+ **File:** [system-flow.mermaid](file:///d:/dev/agentic-sdlc/docs/architecture/system-flow.mermaid)
32
+
33
+ ```mermaid
34
+ graph TD
35
+ User([User]) -->|Request| Brain[Brain]
36
+ Brain -->|Control| Orchestrator
37
+ Behavior -->|Next| PM
38
+ PM -->|Plan| SA
39
+ SA -->|Design| Dev
40
+ Dev -->|Code| Tester
41
+ Tester -->|Verify| Stakeholder
42
+ ```
43
+ *(Simplified view - see full file for details)*
44
+
45
+ ## 3. Artifacts Created / Modified
46
+
47
+ ### Modified Files (Workflows)
48
+ - `brain.md`
49
+ - `cycle.md`
50
+ - `orchestrator.md`
51
+ - `sprint.md`
52
+ - `emergency.md`
53
+ - `explore.md`
54
+ - `debug.md`
55
+ - `refactor.md`
56
+ - `release.md`
57
+ - `review.md`
58
+ - `docs.md`
59
+ - `validate.md`
60
+ - `housekeeping.md`
61
+ - `metrics.md`
62
+ - `onboarding.md`
63
+
64
+ ### Modified Files (Skills)
65
+ - `role-pm.md`, `role-ba.md`, `role-sa.md`
66
+ - `role-uiux.md`, `role-dev.md`, `role-tester.md`
67
+ - `role-seca.md`, `role-devops.md`, `role-reporter.md`
68
+ - `role-stakeholder.md`, `role-po.md`
69
+ - `role-brain.md`
70
+ - `role-orchestrator.md`
71
+
72
+ ### Created Files
73
+ - [system-flow.mermaid](file:///d:/dev/agentic-sdlc/docs/architecture/system-flow.mermaid)
74
+
75
+ ## 4. Verification Results
76
+ - **Files Verified:** All modified files were successfully updated with the new section.
77
+ - **Git Commit:** Changes committed as `docs: add Next Steps section to all workflows and skills`.
78
+ - **Diagram Check:** Mermaid syntax is valid and reflects the implemented logic.
79
+
80
+ ## 5. Next Steps
81
+ - **If Approved:** Merge changes to main.
82
+ - **If Refinement Needed:** Update logic based on new patterns.
83
+
84
+ ## Related Files
85
+ - [Brain Workflow](../.agent/workflows/brain.md)
86
+ - [Cycle Workflow](../.agent/workflows/cycle.md)
87
+ - [System Flow Diagram](../architecture/system-flow.mermaid)
88
+
89
+ #workflow-audit #next-steps #documentation #compliance
@@ -0,0 +1,44 @@
1
+ # Walkthrough: Workflow Refactoring & Artifact Persistence Rule
2
+
3
+ **Date:** 2026-01-05
4
+ **Result:** ✅ Complete
5
+
6
+ ---
7
+
8
+ ## Task 1: Workflow Refactoring
9
+
10
+ ### Removed (3)
11
+ - `preflight.md` - redundant with enforcement reminders
12
+ - `route.md` - static content, already in GEMINI.md
13
+ - `compound.md` - embedded in `/cycle` and `/emergency`
14
+
15
+ ### Added (5)
16
+ | Workflow | Purpose |
17
+ |----------|---------|
18
+ | [review.md](file:///d:/dev/agentic-sdlc/.agent/workflows/review.md) | Code review for PRs |
19
+ | [debug.md](file:///d:/dev/agentic-sdlc/.agent/workflows/debug.md) | Systematic debugging |
20
+ | [refactor.md](file:///d:/dev/agentic-sdlc/.agent/workflows/refactor.md) | Safe refactoring |
21
+ | [onboarding.md](file:///d:/dev/agentic-sdlc/.agent/workflows/onboarding.md) | Agent onboarding |
22
+ | [docs.md](file:///d:/dev/agentic-sdlc/.agent/workflows/docs.md) | Documentation |
23
+
24
+ **Final count: 15 workflows**
25
+
26
+ ---
27
+
28
+ ## Task 2: Artifact Persistence Rule
29
+
30
+ Added to [GEMINI.md](file:///d:/dev/agentic-sdlc/GEMINI.md):
31
+
32
+ - Mandatory persistence of ALL IDE artifacts to docs
33
+ - Sync to Neo4j after every task
34
+ - Created `docs/artifacts/` and `docs/walkthroughs/` folders
35
+
36
+ ### Rule Summary
37
+ ```bash
38
+ # After every task:
39
+ # 1. Copy artifacts to docs/
40
+ # 2. Sync to Neo4j
41
+ agentic-sdlc kb compound sync
42
+ # 3. Record success
43
+ agentic-sdlc learn --record-success "[task]" --task-type "[type]"
44
+ ```
@@ -0,0 +1,41 @@
1
+ # Walkthrough: Worktrunk Integration & Testing
2
+
3
+ **Date:** 2026-01-06
4
+ **Tasks:** Integrate Worktrunk CLI + Create Tests
5
+
6
+ ## Summary
7
+ Integrated [Worktrunk](https://github.com/max-sixty/worktrunk) into Agentic SDLC and created comprehensive tests.
8
+
9
+ ## Changes Made
10
+
11
+ ### Phase 1: Integration
12
+ | File | Description |
13
+ |------|-------------|
14
+ | [worktree.md](file:///d:/dev/agentic-sdlc/.agent/workflows/worktree.md) | New `/worktree` workflow |
15
+ | [role-dev.md](file:///d:/dev/agentic-sdlc/.agent/skills/role-dev.md) | Added Worktrunk section |
16
+ | [README.md](file:///d:/dev/agentic-sdlc/README.md) | Updated to 16 workflows |
17
+
18
+ ### Phase 2: Testing
19
+ | File | Description |
20
+ |------|-------------|
21
+ | [test_worktree.py](file:///d:/dev/agentic-sdlc/tests/layer1/test_worktree.py) | 14 test cases |
22
+
23
+ ## Test Results
24
+ ```
25
+ ============================= 14 passed in 0.45s ==============================
26
+ ```
27
+
28
+ ### Test Coverage
29
+ - ✅ Workflow existence (2 tests)
30
+ - ✅ YAML frontmatter (2 tests)
31
+ - ✅ Content structure (7 tests)
32
+ - ✅ Integration references (3 tests)
33
+
34
+ ## Quick Start
35
+ ```bash
36
+ # Install Worktrunk
37
+ cargo install worktrunk && wt config shell install
38
+
39
+ # Run tests
40
+ python -m pytest tests/layer1/test_worktree.py -v
41
+ ```
@@ -0,0 +1,25 @@
1
+ # Walkthroughs Directory
2
+
3
+ This folder stores task walkthroughs documenting completed work.
4
+
5
+ ## What Goes Here
6
+
7
+ | Document Type | Purpose |
8
+ |---------------|---------|
9
+ | Feature walkthroughs | How a feature was implemented |
10
+ | Bug fix walkthroughs | How a bug was diagnosed and fixed |
11
+ | Refactoring walkthroughs | What was refactored and why |
12
+
13
+ ## Naming Convention
14
+
15
+ ```
16
+ [YYYY-MM-DD]-[feature-name].md
17
+ ```
18
+
19
+ ## Sync to Neo4j
20
+
21
+ After adding walkthroughs:
22
+
23
+ ```bash
24
+ agentic-sdlc kb compound sync
25
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-sdlc",
3
- "version": "1.5.1",
3
+ "version": "1.8.1",
4
4
  "description": "Simulating a complete Software Development Lifecycle (SDLC) with specialized AI Agents.",
5
5
  "type": "module",
6
6
  "private": false,
@@ -8,7 +8,9 @@
8
8
  "workspaces": [
9
9
  "projects/todo-app/frontend",
10
10
  "projects/todo-app/backend",
11
- "projects/landing-page"
11
+ "projects/landing-page",
12
+ "projects/ffmpeg-editor",
13
+ "projects/telegram-file-manager"
12
14
  ],
13
15
  "bin": {
14
16
  "agentic-sdlc": "./bin/cli.js"
@@ -16,29 +18,38 @@
16
18
  "scripts": {
17
19
  "test": "pytest tests/ -v",
18
20
  "test:cov": "pytest tests/ -v --cov=tools --cov-report=html",
19
- "workflow:cycle": "python tools/workflows/cycle.py",
20
- "workflow:housekeeping": "python tools/workflows/housekeeping.py",
21
- "kb:search": "python tools/kb/search.py",
22
- "kb:stats": "python tools/kb/stats.py",
23
- "kb:update": "python tools/kb/update-index.py",
24
- "health": "python tools/validation/health-check.py",
25
- "agent": "python tools/run.py",
26
- "agent:list": "python tools/agent/manage.py list",
27
- "agent:create": "python tools/agent/manage.py create",
28
- "agent:validate": "python tools/agent/manage.py validate",
29
- "agent:info": "python tools/agent/manage.py info",
30
- "setup": "python tools/setup/init.py",
31
- "release:preview": "python tools/release/release.py preview",
32
- "release:changelog": "python tools/release/release.py changelog",
33
- "release:version": "python tools/release/release.py version --auto",
34
- "release": "python tools/release/release.py release",
21
+ "workflow:cycle": "python tools/infrastructure/workflows/cycle.py",
22
+ "workflow:housekeeping": "python tools/infrastructure/workflows/housekeeping.py",
23
+ "brain": "python tools/core/brain/brain_cli.py",
24
+ "brain:status": "python tools/core/brain/brain_cli.py status",
25
+ "brain:sync": "python tools/intelligence/knowledge_graph/brain_parallel.py --sync",
26
+ "brain:full": "python tools/intelligence/knowledge_graph/brain_parallel.py --full",
27
+ "brain:stats": "python tools/intelligence/knowledge_graph/brain_parallel.py --stats",
28
+ "brain:recommend": "python tools/intelligence/knowledge_graph/brain_parallel.py --recommend",
29
+ "health": "python tools/infrastructure/validation/health-check.py",
30
+ "agent": "python tools/core/run.py",
31
+ "agent:list": "python tools/infrastructure/agent/manage.py list",
32
+ "agent:create": "python tools/infrastructure/agent/manage.py create",
33
+ "agent:validate": "python tools/infrastructure/agent/manage.py validate",
34
+ "agent:info": "python tools/infrastructure/agent/manage.py info",
35
+ "setup": "python tools/infrastructure/setup/init.py",
36
+ "release:preview": "python tools/infrastructure/release/release.py preview",
37
+ "release:changelog": "python tools/infrastructure/release/release.py changelog",
38
+ "release:version": "python tools/infrastructure/release/release.py version --auto",
39
+ "release": "python tools/infrastructure/release/release.py release",
35
40
  "dev:todo:fe": "turbo run dev --filter=todo-app-frontend",
36
41
  "dev:todo:be": "turbo run dev --filter=todo-app-backend",
37
42
  "dev:todo": "turbo run dev --filter=todo-app-*",
43
+ "dev:landing": "turbo run dev --filter=landing-page",
44
+ "dev:ffmpeg": "turbo run dev --filter=ffmpeg-editor",
45
+ "dev:telegram": "turbo run dev --filter=telegram-file-manager",
38
46
  "dev:all": "turbo run dev",
39
47
  "build:todo:fe": "turbo run build --filter=todo-app-frontend",
40
48
  "build:todo:be": "turbo run build --filter=todo-app-backend",
41
49
  "build:todo": "turbo run build --filter=todo-app-*",
50
+ "build:landing": "turbo run build --filter=landing-page",
51
+ "build:ffmpeg": "turbo run build --filter=ffmpeg-editor",
52
+ "build:telegram": "turbo run build --filter=telegram-file-manager",
42
53
  "build:all": "turbo run build",
43
54
  "test:todo:fe": "turbo run test --filter=todo-app-frontend",
44
55
  "test:todo:be": "turbo run test --filter=todo-app-backend",
@@ -48,7 +59,10 @@
48
59
  "typecheck": "turbo run typecheck",
49
60
  "clean": "turbo run clean",
50
61
  "clean:all": "turbo run clean && rimraf node_modules/.cache .turbo",
51
- "preview:todo:fe": "turbo run preview --filter=todo-app-frontend"
62
+ "preview:todo:fe": "turbo run preview --filter=todo-app-frontend",
63
+ "preview:landing": "turbo run preview --filter=landing-page",
64
+ "preview:ffmpeg": "turbo run preview --filter=ffmpeg-editor",
65
+ "preview:telegram": "turbo run preview --filter=telegram-file-manager"
52
66
  },
53
67
  "keywords": [
54
68
  "sdlc",