musubi-sdd 1.1.1 → 1.1.2

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.
Files changed (2) hide show
  1. package/bin/musubi.js +26 -0
  2. package/package.json +1 -1
package/bin/musubi.js CHANGED
@@ -356,6 +356,19 @@ program
356
356
  )
357
357
  );
358
358
  console.log(chalk.gray(' Documentation: technical-writer, ai-ml-engineer\n'));
359
+
360
+ console.log(chalk.white('Advanced CLI Commands (standalone):'));
361
+ console.log(chalk.gray(' musubi-requirements # EARS requirements generator'));
362
+ console.log(chalk.gray(' musubi-design # Technical design generator (C4, ADR)'));
363
+ console.log(chalk.gray(' musubi-tasks # Task breakdown generator'));
364
+ console.log(chalk.gray(' musubi-trace # Traceability matrix analyzer'));
365
+ console.log(chalk.gray(' musubi-analyze # Gap detection and analysis'));
366
+ console.log(chalk.gray(' musubi-onboard # Team onboarding assistant'));
367
+ console.log(chalk.gray(' musubi-share # Knowledge sharing tools'));
368
+ console.log(chalk.gray(' musubi-change # Change impact analysis'));
369
+ console.log(chalk.gray(' musubi-gaps # Requirements gap detector\n'));
370
+
371
+ console.log(chalk.gray('Run any command with --help for detailed usage information.\n'));
359
372
  });
360
373
 
361
374
  // ============================================================================
@@ -400,6 +413,19 @@ program.on('--help', () => {
400
413
  console.log('');
401
414
  console.log('Note: Skills API is Claude Code exclusive. Other agents use commands/prompts.');
402
415
  console.log('');
416
+ console.log('Advanced CLI Commands (standalone):');
417
+ console.log(' musubi-requirements # EARS requirements generator');
418
+ console.log(' musubi-design # Technical design generator (C4, ADR)');
419
+ console.log(' musubi-tasks # Task breakdown generator');
420
+ console.log(' musubi-trace # Traceability matrix analyzer');
421
+ console.log(' musubi-analyze # Gap detection and analysis');
422
+ console.log(' musubi-onboard # Team onboarding assistant');
423
+ console.log(' musubi-share # Knowledge sharing tools');
424
+ console.log(' musubi-change # Change impact analysis');
425
+ console.log(' musubi-gaps # Requirements gap detector');
426
+ console.log('');
427
+ console.log('Run any command with --help for detailed usage information.');
428
+ console.log('');
403
429
  });
404
430
 
405
431
  // Parse arguments
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "musubi-sdd",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Ultimate Specification Driven Development Tool with 25 Agents for 7 AI Coding Platforms (Claude Code, GitHub Copilot, Cursor, Gemini CLI, Windsurf, Codex, Qwen Code)",
5
5
  "main": "src/index.js",
6
6
  "bin": {