dasa-sradha-kit 5.1.3 → 5.1.5
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/.shared/dasa-cheat-sheet.toon +29 -9
- package/CHANGELOG.md +14 -0
- package/package.json +1 -1
|
@@ -16,14 +16,22 @@ core_pipelines:
|
|
|
16
16
|
visual_workflow: "If the user has Figma PNGs, they go in `.design-memory/reference/`. Dasa Mpu analyzes them, and `design_memory_sync.py` compresses them into text tokens for Nala."
|
|
17
17
|
|
|
18
18
|
slash_commands_internal:
|
|
19
|
-
- "/dasa-plan: Dasa Mpu writes implementation_plan.md and task.toon."
|
|
20
|
-
- "/dasa-start-work: The engine executes the Mpu -> Nala -> Indra pipeline."
|
|
21
|
-
- "/dasa-feature: Stack-agnostic vertical feature generation."
|
|
22
19
|
- "/dasa-api: Framework-agnostic API generation."
|
|
23
|
-
- "/dasa-
|
|
24
|
-
- "/dasa-commit:
|
|
25
|
-
- "/dasa-
|
|
26
|
-
- "/dasa-e2e: Native browser test (records .webp)."
|
|
20
|
+
- "/dasa-assimilate: Onboard a pre-existing, undocumented codebase."
|
|
21
|
+
- "/dasa-commit: QA gate + atomic Conventional Commit."
|
|
22
|
+
- "/dasa-docs: Generate Postman/OpenAPI specs."
|
|
23
|
+
- "/dasa-e2e: Native browser E2E test (records .webp)."
|
|
24
|
+
- "/dasa-feature: Implement a complete vertical feature (stack-agnostic)."
|
|
25
|
+
- "/dasa-fix: Auto-heal from terminal errors."
|
|
26
|
+
- "/dasa-init: Scaffolds dasa.config.toon, .agent/, and memory."
|
|
27
|
+
- "/dasa-plan: Dasa Mpu writes implementation_plan.md and task.toon."
|
|
28
|
+
- "/dasa-pr: Adversarial GitHub PR review via gh."
|
|
29
|
+
- "/dasa-refactor: Safe refactoring with mandatory QA gate."
|
|
30
|
+
- "/dasa-seed: Generate realistic database fixtures."
|
|
31
|
+
- "/dasa-start-work: Execute the plan via Mpu -> Nala -> Indra."
|
|
32
|
+
- "/dasa-status: Display current progress."
|
|
33
|
+
- "/dasa-sync: Compress session to 5-sector TOON memory vault."
|
|
34
|
+
- "/dasa-uninstall: Remove .agent/ from the workspace."
|
|
27
35
|
|
|
28
36
|
personas:
|
|
29
37
|
patih: "Orchestrator, handles routing and memory compaction."
|
|
@@ -38,11 +46,23 @@ personas:
|
|
|
38
46
|
widya: "Researcher, library analysis."
|
|
39
47
|
|
|
40
48
|
scripts (zero-dependency python):
|
|
41
|
-
- "
|
|
42
|
-
- "
|
|
49
|
+
- "api_validator.py: Validates REST/GraphQL API payloads and contracts."
|
|
50
|
+
- "arch_mapper.py: Reads folder structures to auto-detect system architectures."
|
|
43
51
|
- "compact_memory.py: Merges chat chunks into a dense 5-sector TOON structure."
|
|
52
|
+
- "complexity_scorer.py: Analyzes code files for cyclomatic complexity and warns if > 10."
|
|
53
|
+
- "context_mapper.py: AST parser for codebase context without osgrep."
|
|
44
54
|
- "design_engine.py: Generates strict UI rules (spacing scale, border-radiuses) so Nala doesn't hallucinate."
|
|
55
|
+
- "design_memory_sync.py: Compresses vision OCR UI parameters into a vision_bridge.toon."
|
|
56
|
+
- "lint_fixer.py: Auto-heals trivial ESLint/Prettier or Flake8 errors."
|
|
57
|
+
- "qa_gate.py: Scans code against the Engineering Failures Bible."
|
|
58
|
+
- "security_scan.py: Checks for exposed secrets (.env) and blatant SSRF/SQLi patterns."
|
|
59
|
+
- "semantic-scan.py: Fast grep fallback if osgrep is missing."
|
|
45
60
|
- "skill_search.py: Local semantic search across ~/.gemini/.../skills/."
|
|
61
|
+
- "status_parser.py: Parses git status and branch data cleanly for Dasa Patih."
|
|
62
|
+
- "test_runner.py: Executes Jest/PyTest/Go tests and returns concise TOON passes/fails."
|
|
63
|
+
- "validate_env.py: Checks if .env matches .env.example definitions."
|
|
64
|
+
- "web_scraper.py: Fetches external API docs if a library changes unexpectedly."
|
|
65
|
+
- "workspace-mapper.py: Maps dependencies from package.json/go.mod for Assimilation."
|
|
46
66
|
|
|
47
67
|
# ─────────────────────────────────────────────────────────
|
|
48
68
|
# Dasa Sradha Kit — Auto-Routing Logic (TOON)
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ All notable changes to the Dasa Sradha Kit will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [5.1.5] - 2026-02-22
|
|
8
|
+
|
|
9
|
+
### 🐛 Fixed
|
|
10
|
+
- **Cheat-Sheet Workflows List:** Documented the full list of 16 slash commands inside `.artifacts/dasa-cheat-sheet.toon`. The AI now has absolute context on every workflow available in the `.agent/workflows/` directory.
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## [5.1.4] - 2026-02-22
|
|
15
|
+
|
|
16
|
+
### 🐛 Fixed
|
|
17
|
+
- **Cheat-Sheet Scripts List:** Documented all 17 native Python scripts within the `.artifacts/dasa-cheat-sheet.toon` template. Previously, only 5 scripts were visible to the LLM, causing blind spots during execution.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
7
21
|
## [5.1.3] - 2026-02-22
|
|
8
22
|
|
|
9
23
|
### 🐛 Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dasa-sradha-kit",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.5",
|
|
4
4
|
"description": "The Dasa Sradha 10-Persona Orchestration Framework for Antigravity IDE. Cross-platform CLI for setting up AI-assisted development workflows.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"dasa-sradha": "bin/cli.js",
|