dasa-sradha-kit 5.1.4 → 5.1.6
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 +16 -9
- package/CHANGELOG.md +14 -0
- package/package.json +1 -1
|
@@ -12,18 +12,25 @@ core_pipelines:
|
|
|
12
12
|
phase_1: "Mpu (Architect) generates architecture-state.toon. Nala is blocked until this exists."
|
|
13
13
|
phase_2: "Nala (Builder) implements the code based on Mpu's design. All methods < 10 lines."
|
|
14
14
|
phase_3: "Indra (QA) runs qa_gate.py to scan for 800+ failure heuristics. Fails block the commit."
|
|
15
|
-
|
|
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."
|
|
15
|
+
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
16
|
|
|
18
17
|
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
18
|
- "/dasa-api: Framework-agnostic API generation."
|
|
23
|
-
- "/dasa-
|
|
24
|
-
- "/dasa-commit:
|
|
25
|
-
- "/dasa-
|
|
26
|
-
- "/dasa-e2e: Native browser test (records .webp)."
|
|
19
|
+
- "/dasa-assimilate: Onboard a pre-existing, undocumented codebase."
|
|
20
|
+
- "/dasa-commit: QA gate + atomic Conventional Commit."
|
|
21
|
+
- "/dasa-docs: Generate Postman/OpenAPI specs."
|
|
22
|
+
- "/dasa-e2e: Native browser E2E test (records .webp)."
|
|
23
|
+
- "/dasa-feature: Implement a complete vertical feature (stack-agnostic)."
|
|
24
|
+
- "/dasa-fix: Auto-heal from terminal errors."
|
|
25
|
+
- "/dasa-init: Scaffolds dasa.config.toon, .agent/, and memory."
|
|
26
|
+
- "/dasa-plan: Dasa Mpu writes implementation_plan.md and task.toon."
|
|
27
|
+
- "/dasa-pr: Adversarial GitHub PR review via gh."
|
|
28
|
+
- "/dasa-refactor: Safe refactoring with mandatory QA gate."
|
|
29
|
+
- "/dasa-seed: Generate realistic database fixtures."
|
|
30
|
+
- "/dasa-start-work: Execute the plan via Mpu -> Nala -> Indra."
|
|
31
|
+
- "/dasa-status: Display current progress."
|
|
32
|
+
- "/dasa-sync: Compress session to 5-sector TOON memory vault."
|
|
33
|
+
- "/dasa-uninstall: Remove .agent/ from the workspace."
|
|
27
34
|
|
|
28
35
|
personas:
|
|
29
36
|
patih: "Orchestrator, handles routing and memory compaction."
|
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.6] - 2026-02-22
|
|
8
|
+
|
|
9
|
+
### 🐛 Fixed
|
|
10
|
+
- **Cheat-Sheet YAML Structure:** Fixed an indentation error where `visual_workflow` was incorrectly parsed as an outer-scope key instead of acting as a sub-property of `core_pipelines`.
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## [5.1.5] - 2026-02-22
|
|
15
|
+
|
|
16
|
+
### 🐛 Fixed
|
|
17
|
+
- **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.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
7
21
|
## [5.1.4] - 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.6",
|
|
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",
|