@gravirei/reis 2.1.0 → 2.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.
package/bin/reis.js CHANGED
@@ -76,6 +76,15 @@ const todosCmd = require('../lib/commands/todos.js');
76
76
  const debugCmd = require('../lib/commands/debug.js');
77
77
  const configCmd = require('../lib/commands/config.js');
78
78
 
79
+ // Check for --help or -h flag before Commander parses
80
+ if (process.argv.includes('--help') || process.argv.includes('-h')) {
81
+ // If it's just "reis --help" or "reis -h" (no subcommand), show our custom help
82
+ if (process.argv.length === 3) {
83
+ helpCmd();
84
+ process.exit(0);
85
+ }
86
+ }
87
+
79
88
  // Set up commander
80
89
  program
81
90
  .name('reis')
@@ -4,9 +4,17 @@ const { getVersion } = require('../utils/command-helpers');
4
4
  module.exports = function help() {
5
5
  const version = getVersion();
6
6
 
7
- console.log(chalk.bold.cyan('\n╔════════════════════════════════════════════════════════════════════╗'));
8
- console.log(chalk.bold.cyan('║') + chalk.bold.white(' REIS - Roadmap Execution & Implementation System ') + chalk.bold.cyan('║'));
9
- console.log(chalk.bold.cyan('╚════════════════════════════════════════════════════════════════════╝'));
7
+ // ASCII Art Banner
8
+ console.log(chalk.white.bold(`
9
+ ██████ ███████ ██ ███████
10
+ ██ ██ ██ ██ ██
11
+ ██████ █████ ██ ███████
12
+ ██ ██ ██ ██ ██
13
+ ██ ██ ███████ ██ ███████
14
+ `));
15
+
16
+ console.log(chalk.blue.bold(' REIS - Roadmap Execution & Implementation System'));
17
+ console.log(chalk.gray(' Specially designed for Atlassian Rovo Dev'));
10
18
  console.log(chalk.gray(` Version ${version}`));
11
19
  console.log(chalk.gray(' Documentation: ~/.rovodev/reis/\n'));
12
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravirei/reis",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "description": "Roadmap Execution & Implementation System v2.0 - Wave-based execution with checkpoints, metrics, and visualization for Atlassian Rovo Dev",
5
5
  "main": "lib/index.js",
6
6
  "bin": {