@gravirei/reis 1.0.4 → 1.0.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.
Files changed (2) hide show
  1. package/bin/reis.js +3 -1
  2. package/package.json +1 -1
package/bin/reis.js CHANGED
@@ -235,7 +235,9 @@ program
235
235
 
236
236
  // Default action (no command)
237
237
  program.action(() => {
238
- console.log('Run \'reis help\' for available commands');
238
+ // If no command given, show help instead
239
+ const helpCmd = require('../lib/commands/help');
240
+ helpCmd();
239
241
  });
240
242
 
241
243
  // Parse command-line arguments
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravirei/reis",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Roadmap Execution & Implementation System - Systematic development with parallel subagent execution for Atlassian Rovo Dev",
5
5
  "main": "lib/index.js",
6
6
  "bin": {