dhurandhar 2.2.3 → 2.3.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/CHANGELOG.md CHANGED
@@ -5,6 +5,40 @@ All notable changes to Dhurandhar will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.3.0] - 2026-04-02
9
+
10
+ ### Added - COMPLETE Command Set! 🎉
11
+ - **32 total commands** created in `.augment/commands/`
12
+ - All 8 master agents (Yudhishthira, Bhishma, Sahadeva, Nakula, Bheema, Arjuna, Draupadi)
13
+ - All code generation options (all, backend, frontend, tests, infrastructure)
14
+ - All export formats (markdown, json, html)
15
+ - All integrations (GitHub, Jira, Confluence)
16
+ - AI features (suggest, analyze)
17
+ - Utilities (status, next, back, diagrams, review, audit, decisions, undo)
18
+
19
+ ### Complete Command List
20
+ **Navigation**: status, next, back
21
+ **Master Agents**: yudhishthira, bhishma, sahadeva, nakula, bheema, arjuna, draupadi
22
+ **Code Generation**: codegen-all, codegen-backend, codegen-frontend, codegen-tests, codegen-infra
23
+ **Export**: export-markdown, export-json, export-html
24
+ **Integrations**: integrate-github, integrate-jira, integrate-confluence
25
+ **AI**: ai-suggest, ai-analyze
26
+ **Utilities**: diagrams, review, audit, decisions, undo
27
+
28
+ ### Changed
29
+ - Now 32 commands instead of 11
30
+ - Comprehensive coverage of all Dhurandhar features
31
+ - Every major command has a slash command in Auggie
32
+
33
+ ### User Feedback Implemented
34
+ User: "Shouldn't there be other commands corresponding to all the master agents, as well as other commands we may need"
35
+ **SOLUTION**: Created complete command set with 32 commands!
36
+
37
+ This is a MINOR version bump (2.2.x → 2.3.0) adding significant
38
+ new functionality.
39
+
40
+ ---
41
+
8
42
  ## [2.2.3] - 2026-04-02
9
43
 
10
44
  ### Fixed - Commands NOW appear in Auggie! 🎉
@@ -359,19 +359,55 @@ Setup completed on: ${new Date().toISOString()}
359
359
  mkdirSync(commandsDir, { recursive: true });
360
360
  }
361
361
 
362
- // Create individual .md files for each command
362
+ // Create comprehensive .md files for ALL commands
363
363
  const commands = [
364
+ // Status & Navigation
364
365
  { file: 'status.md', content: '---\ndescription: Check design project status\n---\n\nRun `dhurandhar status` to see the current state of your design project.' },
365
- { file: 'phase1-features.md', content: '---\ndescription: Phase 1 - Define features with Yudhishthira\n---\n\nRun `dhurandhar yudhishthira` to start Phase 1 and define your features.' },
366
- { file: 'phase2-requirements.md', content: '---\ndescription: Phase 2 - Define requirements with Bhishma\n---\n\nRun `dhurandhar bhishma` to define functional and non-functional requirements.' },
367
- { file: 'phase3-entities.md', content: '---\ndescription: Phase 3 - Define entities with Sahadeva\n---\n\nRun `dhurandhar sahadeva` to design your domain model and entities.' },
368
- { file: 'phase4-apis.md', content: '---\ndescription: Phase 4 - Design APIs with Nakula\n---\n\nRun `dhurandhar nakula` to design your REST APIs.' },
369
- { file: 'phase5-hld.md', content: '---\ndescription: Phase 5 - High-level design with Bheema\n---\n\nRun `dhurandhar bheema` to create high-level architecture.' },
370
- { file: 'phase6-lld.md', content: '---\ndescription: Phase 6 - Low-level design with Arjuna\n---\n\nRun `dhurandhar arjuna` to design classes and implementation details.' },
371
- { file: 'phase8-blessing.md', content: '---\ndescription: Phase 8 - Final review with Draupadi\n---\n\nRun `dhurandhar draupadi` for the final quality review and blessing.' },
372
- { file: 'generate-code.md', content: '---\ndescription: Generate full-stack code\n---\n\nRun `dhurandhar codegen -t all` to generate backend, frontend, tests, and infrastructure.' },
373
- { file: 'export-design.md', content: '---\ndescription: Export design to Markdown\n---\n\nRun `dhurandhar export -f markdown` to export your design document.' },
374
- { file: 'audit.md', content: '---\ndescription: Audit design quality\n---\n\nRun `dhurandhar audit` to check your design for quality issues.' }
366
+ { file: 'next.md', content: '---\ndescription: Move to next phase\n---\n\nRun `dhurandhar next` to automatically move to the next design phase.' },
367
+ { file: 'back.md', content: '---\ndescription: Go back to previous phase\n---\n\nRun `dhurandhar back` to return to the previous design phase.' },
368
+
369
+ // Master Agents (All 8)
370
+ { file: 'yudhishthira.md', content: '---\ndescription: Phase 1 - Features with Yudhishthira (Dharma)\n---\n\nRun `dhurandhar yudhishthira` to define features with the master of dharma.' },
371
+ { file: 'bhishma.md', content: '---\ndescription: Phase 2 - Requirements with Bhishma (Grandfather)\n---\n\nRun `dhurandhar bhishma` to define functional and non-functional requirements.' },
372
+ { file: 'sahadeva.md', content: '---\ndescription: Phase 3 - Entities with Sahadeva (Wisdom)\n---\n\nRun `dhurandhar sahadeva` to design domain model and entities.' },
373
+ { file: 'nakula.md', content: '---\ndescription: Phase 4 - APIs with Nakula (Handsome)\n---\n\nRun `dhurandhar nakula` to design REST APIs.' },
374
+ { file: 'bheema.md', content: '---\ndescription: Phase 5 & 7 - HLD & Implementation with Bheema (Strength)\n---\n\nRun `dhurandhar bheema` for high-level design and implementation planning.' },
375
+ { file: 'arjuna.md', content: '---\ndescription: Phase 6 - LLD with Arjuna (Warrior)\n---\n\nRun `dhurandhar arjuna` for low-level design and class diagrams.' },
376
+ { file: 'draupadi.md', content: '---\ndescription: Phase 8 - Blessing with Draupadi (Queen)\n---\n\nRun `dhurandhar draupadi` for the final quality review and imperial blessing.' },
377
+
378
+ // Code Generation (All options)
379
+ { file: 'codegen-all.md', content: '---\ndescription: Generate complete full-stack application\n---\n\nRun `dhurandhar codegen -t all` to generate backend, frontend, tests, and infrastructure.' },
380
+ { file: 'codegen-backend.md', content: '---\ndescription: Generate NestJS backend only\n---\n\nRun `dhurandhar codegen -t backend` to generate NestJS + TypeORM backend code.' },
381
+ { file: 'codegen-frontend.md', content: '---\ndescription: Generate React frontend only\n---\n\nRun `dhurandhar codegen -t frontend` to generate React + Vite + Tailwind frontend.' },
382
+ { file: 'codegen-tests.md', content: '---\ndescription: Generate Jest tests only\n---\n\nRun `dhurandhar codegen -t tests` to generate unit and E2E tests.' },
383
+ { file: 'codegen-infra.md', content: '---\ndescription: Generate infrastructure code\n---\n\nRun `dhurandhar codegen -t infrastructure` to generate Docker and Kubernetes configs.' },
384
+
385
+ // Export (All formats)
386
+ { file: 'export-markdown.md', content: '---\ndescription: Export design to Markdown\n---\n\nRun `dhurandhar export -f markdown` to export design as Markdown document.' },
387
+ { file: 'export-json.md', content: '---\ndescription: Export design to JSON\n---\n\nRun `dhurandhar export -f json` to export design as JSON data.' },
388
+ { file: 'export-html.md', content: '---\ndescription: Export design to HTML\n---\n\nRun `dhurandhar export -f html` to export design as interactive HTML.' },
389
+
390
+ // Integrations
391
+ { file: 'integrate-github.md', content: '---\ndescription: Create GitHub issues from design\n---\n\nRun `dhurandhar integrate -p github` to create GitHub issues for all features.' },
392
+ { file: 'integrate-jira.md', content: '---\ndescription: Create Jira tickets from design\n---\n\nRun `dhurandhar integrate -p jira` to create Jira epics, stories, and tasks.' },
393
+ { file: 'integrate-confluence.md', content: '---\ndescription: Create Confluence documentation\n---\n\nRun `dhurandhar integrate -p confluence` to create Confluence pages from design.' },
394
+
395
+ // AI Features
396
+ { file: 'ai-suggest.md', content: '---\ndescription: Get AI design suggestions\n---\n\nRun `dhurandhar ai suggest` to get AI-powered design improvement suggestions.' },
397
+ { file: 'ai-analyze.md', content: '---\ndescription: AI design analysis\n---\n\nRun `dhurandhar ai analyze` to get comprehensive AI analysis of your design.' },
398
+
399
+ // Diagrams
400
+ { file: 'diagrams.md', content: '---\ndescription: Generate architecture diagrams\n---\n\nRun `dhurandhar diagrams` to generate visual architecture diagrams.' },
401
+
402
+ // Review & Audit
403
+ { file: 'review.md', content: '---\ndescription: Run cascading review\n---\n\nRun `dhurandhar review` to run a comprehensive design review across all phases.' },
404
+ { file: 'audit.md', content: '---\ndescription: Audit design quality\n---\n\nRun `dhurandhar audit` to check for design issues and quality problems.' },
405
+
406
+ // Decisions
407
+ { file: 'decisions.md', content: '---\ndescription: Manage technical decisions\n---\n\nRun `dhurandhar decisions` to view and manage technical decisions in the registry.' },
408
+
409
+ // Undo
410
+ { file: 'undo.md', content: '---\ndescription: Undo last change\n---\n\nRun `dhurandhar undo` to undo the last change (up to 20 versions).' }
375
411
  ];
376
412
 
377
413
  commands.forEach(cmd => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "dhurandhar",
4
- "version": "2.2.3",
4
+ "version": "2.3.0",
5
5
  "description": "The world's first AI-powered dharma-centric design framework. 8 Pandava agents + 21 sub-agents guide you from idea to production code. Features → Requirements → Entities → API → HLD → LLD → Implementation → Blessing. Complete with code generation, enterprise integrations, and mythological accuracy.",
6
6
  "keywords": [
7
7
  "system-design",