loki-mode 6.0.0 → 6.2.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/README.md +20 -0
- package/SKILL.md +2 -2
- package/VERSION +1 -1
- package/autonomy/bmad-adapter.py +776 -0
- package/autonomy/loki +393 -0
- package/autonomy/prd-analyzer.py +26 -4
- package/autonomy/run.sh +149 -4
- package/autonomy/sandbox.sh +181 -1
- package/dashboard/__init__.py +1 -1
- package/docs/INSTALLATION.md +1 -1
- package/docs/architecture/bmad-integration-epic.md +271 -0
- package/docs/architecture/bmad-integration-review.md +86 -0
- package/docs/architecture/bmad-integration-validation.md +249 -0
- package/docs/architecture/bmad-loki-voice-agent-council-analysis.md +61 -0
- package/mcp/__init__.py +1 -1
- package/mcp/requirements.txt +1 -0
- package/mcp/server.py +152 -0
- package/package.json +1 -1
- package/templates/clusters/README.md +21 -0
- package/templates/clusters/code-review.json +36 -0
- package/templates/clusters/performance-audit.json +29 -0
- package/templates/clusters/refactoring.json +29 -0
- package/templates/clusters/security-review.json +36 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Refactoring",
|
|
3
|
+
"description": "Structured refactoring with test preservation and review",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"topology": "pipeline",
|
|
6
|
+
"agents": [
|
|
7
|
+
{
|
|
8
|
+
"id": "analyzer",
|
|
9
|
+
"type": "review-code",
|
|
10
|
+
"role": "Analyze code for refactoring opportunities",
|
|
11
|
+
"subscribes": ["task.start"],
|
|
12
|
+
"publishes": ["analysis.complete"]
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"id": "refactorer",
|
|
16
|
+
"type": "eng-backend",
|
|
17
|
+
"role": "Apply refactoring changes with test preservation",
|
|
18
|
+
"subscribes": ["analysis.complete"],
|
|
19
|
+
"publishes": ["refactor.complete"]
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"id": "verifier",
|
|
23
|
+
"type": "eng-qa",
|
|
24
|
+
"role": "Verify all tests pass and behavior is preserved",
|
|
25
|
+
"subscribes": ["refactor.complete"],
|
|
26
|
+
"publishes": ["task.complete"]
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Security Review",
|
|
3
|
+
"description": "Multi-agent security audit with adversarial testing",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"topology": "pipeline",
|
|
6
|
+
"agents": [
|
|
7
|
+
{
|
|
8
|
+
"id": "scanner",
|
|
9
|
+
"type": "ops-security",
|
|
10
|
+
"role": "Run SAST/dependency scanning on codebase",
|
|
11
|
+
"subscribes": ["task.start"],
|
|
12
|
+
"publishes": ["scan.results"]
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"id": "reviewer",
|
|
16
|
+
"type": "review-security",
|
|
17
|
+
"role": "Review findings from scanner, assess severity",
|
|
18
|
+
"subscribes": ["scan.results"],
|
|
19
|
+
"publishes": ["review.findings"]
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"id": "adversarial",
|
|
23
|
+
"type": "review-security",
|
|
24
|
+
"role": "Attempt to exploit discovered vulnerabilities",
|
|
25
|
+
"subscribes": ["review.findings"],
|
|
26
|
+
"publishes": ["exploit.results"]
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"id": "reporter",
|
|
30
|
+
"type": "prod-techwriter",
|
|
31
|
+
"role": "Compile security report from all findings",
|
|
32
|
+
"subscribes": ["scan.results", "review.findings", "exploit.results"],
|
|
33
|
+
"publishes": ["task.complete"]
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
}
|