@@ -94,6 +94,17 @@ The Orchestrator can leverage all MUSUBI CLI commands to execute tasks efficient
9494| ` musubi-analyze ` | Project analysis | ` musubi-analyze complexity ` |
9595| ` musubi-onboard ` | AI platform onboarding | ` musubi-onboard <platform> ` |
9696
97+ ### Advanced Commands (v3.5.0 NEW)
98+
99+ | Command | Purpose | Example |
100+ | ------------------- | --------------------------------- | ------------------------------------------ |
101+ | ` musubi-orchestrate ` | Multi-skill workflow orchestration| ` musubi-orchestrate auto <task> ` |
102+ | ` musubi-browser ` | Browser automation & E2E testing | ` musubi-browser run "click login button" ` |
103+ | ` musubi-gui ` | Web GUI dashboard | ` musubi-gui start ` |
104+ | ` musubi-remember ` | Agent memory management | ` musubi-remember extract ` |
105+ | ` musubi-resolve ` | GitHub Issue auto-resolution | ` musubi-resolve <issue-number> ` |
106+ | ` musubi-convert ` | Format conversion (Spec Kit) | ` musubi-convert to-speckit ` |
107+
97108### Detailed Command Options
98109
99110** musubi-workflow** (v2.1.0 NEW):
@@ -166,6 +177,57 @@ The Orchestrator can leverage all MUSUBI CLI commands to execute tasks efficient
166177- ` complexity ` - Validate complexity limits
167178- ` all ` - Run all validations
168179
180+ ** musubi-orchestrate** (v3.5.0 NEW):
181+
182+ - ` auto <task> ` - Auto-select and execute skill based on task
183+ - ` sequential --skills <skills...> ` - Execute skills sequentially
184+ - ` run <pattern> --skills <skills...> ` - Execute pattern with skills
185+ - ` list-patterns ` - List available orchestration patterns
186+ - ` list-skills ` - List available skills
187+ - ` status ` - Show orchestration status
188+
189+ ** musubi-browser** (v3.5.0 NEW):
190+
191+ - ` run "<command>" ` - Execute natural language browser command
192+ - ` script <file> ` - Execute script file with commands
193+ - ` compare <expected> <actual> ` - Compare screenshots with AI
194+ - ` generate-test --history <file> ` - Generate Playwright test from history
195+ - Interactive mode: Start with ` musubi-browser ` for REPL
196+
197+ ** musubi-gui** (v3.5.0 NEW):
198+
199+ - ` start ` - Start Web GUI server (default: port 3000)
200+ - ` start -p <port> ` - Start on custom port
201+ - ` start -d <path> ` - Start with custom project directory
202+ - ` dev ` - Start in development mode with hot reload
203+ - ` status ` - Check GUI server status
204+ - ` matrix ` - Open traceability matrix view
205+
206+ ** musubi-remember** (v3.5.0 NEW):
207+
208+ - ` extract ` - Extract learnings from current session
209+ - ` export <file> ` - Export memory to file
210+ - ` import <file> ` - Import memory from file
211+ - ` condense ` - Condense memory to fit context window
212+ - ` list ` - List stored memories
213+ - ` clear ` - Clear session memory
214+
215+ ** musubi-resolve** (v3.5.0 NEW):
216+
217+ - ` <issue-number> ` - Analyze and resolve GitHub issue
218+ - ` analyze <issue-number> ` - Analyze issue without resolution
219+ - ` plan <issue-number> ` - Generate resolution plan
220+ - ` create-pr <issue-number> ` - Create PR from resolution
221+ - ` list ` - List open issues
222+ - ` --auto ` - Enable auto-resolution mode
223+
224+ ** musubi-convert** (v3.5.0 NEW):
225+
226+ - ` to-speckit ` - Convert MUSUBI to Spec Kit format
227+ - ` from-speckit ` - Convert Spec Kit to MUSUBI format
228+ - ` analyze ` - Analyze format compatibility
229+ - ` --output <dir> ` - Specify output directory
230+
169231---
170232
171233## OpenHands-Inspired Modules (v3.0.0)
@@ -417,11 +479,11 @@ codegraph-mcp community "/path/to/project"
417479
418480### Orchestration & Governance (3 agents)
419481
420- | Agent | Specialty | Key Deliverables |
421- | ------------------------- | ------------------------- | --------------------------------------- |
422- | ** Orchestrator** | Multi-agent coordination | Execution plans, integrated reports |
423- | ** Steering** | Project memory management | Steering files (structure/tech/product) |
424- | ** Constitution Enforcer** | Constitutional validation | Compliance reports, violation alerts |
482+ | Agent | Specialty | Key Deliverables | CLI Command |
483+ | ------------------------- | ------------------------- | --------------------------------------- | --------------------- |
484+ | ** Orchestrator** | Multi-agent coordination | Execution plans, integrated reports | ` musubi-orchestrate ` |
485+ | ** Steering** | Project memory management | Steering files (structure/tech/product) | ` musubi-remember ` |
486+ | ** Constitution Enforcer** | Constitutional validation | Compliance reports, violation alerts | ` musubi-validate ` |
425487
426488### Design & Architecture (5 agents)
427489
@@ -435,35 +497,35 @@ codegraph-mcp community "/path/to/project"
435497
436498### Development & Quality (7 agents)
437499
438- | Agent | Specialty | Key Deliverables | CLI Command |
439- | ------------------------- | ---------------------------- | ------------------------------------------------------------- | ----------------- |
440- | ** Software Developer** | Code implementation | Production-ready source code, unit tests, integration tests | - |
441- | ** Code Reviewer** | Code review | Review reports, improvement suggestions, refactoring plans | - |
442- | ** Test Engineer** | Test design & implementation | Test code, test design documents, test cases | ` musubi-tasks ` |
443- | ** Security Auditor** | Security auditing | Vulnerability reports, remediation plans, security guidelines | - |
444- | ** Quality Assurance** | Quality assurance strategy | Test plans, quality metrics, QA reports | ` musubi-validate ` |
445- | ** Bug Hunter** | Bug investigation & fixes | Bug reports, root cause analysis, fix code | - |
446- | ** Performance Optimizer** | Performance optimization | Performance reports, optimization code, benchmarks | - |
500+ | Agent | Specialty | Key Deliverables | CLI Command |
501+ | ------------------------- | ---------------------------- | ------------------------------------------------------------- | ------------------ |
502+ | ** Software Developer** | Code implementation | Production-ready source code, unit tests, integration tests | - |
503+ | ** Code Reviewer** | Code review | Review reports, improvement suggestions, refactoring plans | - |
504+ | ** Test Engineer** | Test design & implementation | Test code, test design documents, test cases | ` musubi-tasks ` |
505+ | ** Security Auditor** | Security auditing | Vulnerability reports, remediation plans, security guidelines | - |
506+ | ** Quality Assurance** | Quality assurance strategy | Test plans, quality metrics, QA reports | ` musubi-validate ` |
507+ | ** Bug Hunter** | Bug investigation & fixes | Bug reports, root cause analysis, fix code | ` musubi-resolve ` |
508+ | ** Performance Optimizer** | Performance optimization | Performance reports, optimization code, benchmarks | - |
447509
448510### Operations & Infrastructure (5 agents)
449511
450- | Agent | Specialty | Key Deliverables | CLI Command |
451- | ----------------------------- | --------------------------------- | ---------------------------------------------------- | -------------- |
452- | ** Project Manager** | Project management | Project plans, WBS, Gantt charts, risk registers | ` musubi-tasks ` |
453- | ** DevOps Engineer** | CI/CD & infrastructure automation | Pipeline definitions, Dockerfiles, K8s manifests | - |
454- | ** Technical Writer** | Technical documentation | API docs, README, user guides, runbooks | - |
455- | ** Site Reliability Engineer** | SRE & observability | SLI/SLO/SLA definitions, monitoring configs | - |
456- | ** Release Coordinator** | Release management | Release notes, deployment plans, rollback procedures | - |
512+ | Agent | Specialty | Key Deliverables | CLI Command |
513+ | ----------------------------- | --------------------------------- | ---------------------------------------------------- | ---------------- |
514+ | ** Project Manager** | Project management | Project plans, WBS, Gantt charts, risk registers | ` musubi-tasks ` |
515+ | ** DevOps Engineer** | CI/CD & infrastructure automation | Pipeline definitions, Dockerfiles, K8s manifests | - |
516+ | ** Technical Writer** | Technical documentation | API docs, README, user guides, runbooks | - |
517+ | ** Site Reliability Engineer** | SRE & observability | SLI/SLO/SLA definitions, monitoring configs | ` musubi-gui ` |
518+ | ** Release Coordinator** | Release management | Release notes, deployment plans, rollback procedures | - |
457519
458520### Specialized Experts (5 agents)
459521
460- | Agent | Specialty | Key Deliverables | CLI Command |
461- | -------------------------- | ---------------------------- | --------------------------------------------------------------------- | --------------- |
462- | ** UI/UX Designer** | UI/UX design & prototyping | Wireframes, mockups, interactive prototypes, design systems | - |
463- | ** Database Administrator** | Database operations & tuning | Performance tuning reports, backup/recovery plans, HA configurations | - |
464- | ** AI/ML Engineer** | ML model development & MLOps | Trained models, model cards, deployment pipelines, evaluation reports | - |
465- | ** Change Impact Analyzer** | Impact analysis | Impact reports, affected components, effort estimates | ` musubi-change ` |
466- | ** Traceability Auditor** | Traceability verification | Traceability matrices, coverage reports, gap analysis | ` musubi-trace ` |
522+ | Agent | Specialty | Key Deliverables | CLI Command |
523+ | -------------------------- | ---------------------------- | --------------------------------------------------------------------- | ---------------- |
524+ | ** UI/UX Designer** | UI/UX design & prototyping | Wireframes, mockups, interactive prototypes, design systems | ` musubi-browser ` |
525+ | ** Database Administrator** | Database operations & tuning | Performance tuning reports, backup/recovery plans, HA configurations | - |
526+ | ** AI/ML Engineer** | ML model development & MLOps | Trained models, model cards, deployment pipelines, evaluation reports | - |
527+ | ** Change Impact Analyzer** | Impact analysis | Impact reports, affected components, effort estimates | ` musubi-change ` |
528+ | ** Traceability Auditor** | Traceability verification | Traceability matrices, coverage reports, gap analysis | ` musubi-trace ` |
467529
468530** Total: 25 Specialized Agents**
469531
0 commit comments