@gravirei/reis 2.3.0 → 2.3.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/lib/commands/help.js +115 -60
  2. package/package.json +1 -1
@@ -3,68 +3,123 @@ const { getVersion } = require('../utils/command-helpers');
3
3
 
4
4
  module.exports = function help() {
5
5
  const version = getVersion();
6
+ const w = chalk.bold.white; // shorthand for bold white
6
7
 
7
- // ASCII Art Banner
8
- console.log(chalk.white.bold(`
9
- ██████ ███████ ██ ███████
10
- ██ ██ ██ ██ ██
11
- ██████ █████ ██ ███████
12
- ██ ██ ██ ██ ██
13
- ██ ██ ███████ ██ ███████
14
- `));
8
+ // ASCII Art Banner - Centered
9
+ console.log(w(`
10
+ ██████╗ ███████╗██╗███████╗
11
+ ██╔══██╗██╔════╝██║██╔════╝
12
+ ██████╔╝█████╗ ██║███████╗
13
+ ██╔══██╗██╔══╝ ██║╚════██║
14
+ ██║ ██║███████╗██║███████║
15
+ ╚═╝ ╚═╝╚══════╝╚═╝╚══════╝
16
+ `));
15
17
 
16
- console.log(chalk.blue.bold(' REIS - Roadmap Execution & Implementation System'));
17
- console.log(chalk.gray(' Specially designed for Atlassian Rovo Dev'));
18
- console.log(chalk.gray(` Version ${version}`));
19
- console.log(chalk.gray(' Documentation: ~/.rovodev/reis/\n'));
20
-
21
- console.log(chalk.bold.yellow('Getting Started'));
22
- console.log(' ' + chalk.cyan('reis new [idea]') + ' Initialize a new REIS project');
23
- console.log(' ' + chalk.cyan('reis map') + ' Analyze and map existing codebase');
24
- console.log(' ' + chalk.cyan('reis requirements') + ' Generate or update requirements document');
25
- console.log(' ' + chalk.cyan('reis roadmap') + ' Generate or update project roadmap');
26
-
27
- console.log(chalk.bold.yellow('\nPhase Management'));
28
- console.log(' ' + chalk.cyan('reis plan [phase]') + ' Create detailed plan for a phase');
29
- console.log(' ' + chalk.cyan('reis discuss [phase]') + ' Discuss implementation approach');
30
- console.log(' ' + chalk.cyan('reis research [phase]') + ' Research technical solutions');
31
- console.log(' ' + chalk.cyan('reis assumptions') + ' Document and validate assumptions');
32
- console.log(' ' + chalk.cyan('reis execute [phase]') + ' Execute a phase');
33
- console.log(' ' + chalk.cyan('reis execute-plan') + ' Execute a specific plan file');
34
- console.log(' ' + chalk.cyan('reis verify [phase]') + ' Verify phase completion');
35
-
36
- console.log(chalk.bold.yellow('\nProgress & State'));
37
- console.log(' ' + chalk.cyan('reis progress') + ' Show current project progress');
38
- console.log(' ' + chalk.cyan('reis pause') + ' Pause current work and save state');
39
- console.log(' ' + chalk.cyan('reis resume') + ' Resume paused work');
40
-
41
- console.log(chalk.bold.yellow('\nRoadmap Management'));
42
- console.log(' ' + chalk.cyan('reis add <feature>') + ' Add feature to roadmap');
43
- console.log(' ' + chalk.cyan('reis insert <phase>') + ' Insert feature at specific phase');
44
- console.log(' ' + chalk.cyan('reis remove <phase>') + ' Remove phase from roadmap');
45
-
46
- console.log(chalk.bold.yellow('\nMilestones'));
47
- console.log(' ' + chalk.cyan('reis milestone complete') + ' Mark milestone as complete');
48
- console.log(' ' + chalk.cyan('reis milestone discuss') + ' Discuss milestone approach');
49
- console.log(' ' + chalk.cyan('reis milestone new') + ' Create new milestone');
50
-
51
- console.log(chalk.bold.yellow('\nUtilities'));
52
- console.log(' ' + chalk.cyan('reis todo <desc>') + ' Add a TODO item');
53
- console.log(' ' + chalk.cyan('reis todos [area]') + ' List TODO items');
54
- console.log(' ' + chalk.cyan('reis debug <issue>') + ' Debug a specific issue');
55
- console.log(' ' + chalk.cyan('reis update') + ' Update REIS to latest version');
56
- console.log(' ' + chalk.cyan('reis whats-new') + ' Show what\'s new in latest version');
57
- console.log(' ' + chalk.cyan('reis docs') + ' Open REIS documentation');
58
- console.log(' ' + chalk.cyan('reis uninstall') + ' Uninstall REIS');
59
-
60
- console.log(chalk.bold.yellow('\nHelp & Info'));
61
- console.log(' ' + chalk.cyan('reis help') + ' Show this help message');
62
- console.log(' ' + chalk.cyan('reis version') + ' Show version and install location');
63
-
64
- console.log(chalk.gray('\n Full documentation: ~/.rovodev/reis/README.md'));
65
- console.log(chalk.gray(' Examples: ~/.rovodev/reis/WORKFLOW_EXAMPLES.md'));
66
- console.log(chalk.gray(' Quick reference: ~/.rovodev/reis/QUICK_REFERENCE.md'));
67
- console.log(chalk.gray('\n Example: ' + chalk.cyan('reis new "build a todo app"') + '\n'));
18
+ console.log(w(' REIS - Roadmap Execution & Implementation System'));
19
+ console.log(w(' Specially designed for Atlassian Rovo Dev'));
20
+ console.log(w(` Version ${version}`));
21
+ console.log('');
22
+ console.log(chalk.italic.white(' "Transform your roadmap into reality, one phase at a time"'));
23
+ console.log('');
24
+ console.log('');
25
+ console.log(w(' Available Commands:'));
26
+ console.log('');
27
+
28
+ // Project Setup
29
+ console.log(w(' Project Setup'));
30
+ console.log(w(' ─────────────'));
31
+ console.log(w(' reis new - Initialize a new REIS project with PROJECT.md, ROADMAP.md, and configuration files'));
32
+ console.log(w(' reis map - Analyze and map an existing codebase structure, dependencies, and architecture'));
33
+ console.log(w(' reis config - View, edit, or reset REIS configuration settings for your project'));
34
+ console.log('');
35
+
36
+ // Planning & Roadmap
37
+ console.log(w(' Planning & Roadmap'));
38
+ console.log(w(' ──────────────────'));
39
+ console.log(w(' reis plan - Create detailed execution plans with tasks, dependencies, and success criteria'));
40
+ console.log(w(' reis roadmap - Display the project roadmap with phases, milestones, and progress status'));
41
+ console.log(w(' reis requirements - Manage and track project requirements, constraints, and acceptance criteria'));
42
+ console.log(w(' reis milestone - Define, track, and update project milestones with deadlines and deliverables'));
43
+ console.log('');
44
+
45
+ // Execution
46
+ console.log(w(' Execution'));
47
+ console.log(w(' ─────────'));
48
+ console.log(w(' reis execute <phase> - Execute a specific phase with task-by-task implementation and checkpoints'));
49
+ console.log(w(' reis execute-plan - Run the current execution plan with progress tracking and state management'));
50
+ console.log(w(' reis resume - Resume a previously paused execution from the last checkpoint'));
51
+ console.log(w(' reis pause - Pause current execution and save state for later continuation'));
52
+ console.log(w(' reis checkpoint - Create a manual checkpoint to save current progress and state'));
53
+ console.log('');
54
+
55
+ // Automated Workflow
56
+ console.log(w(' Automated Workflow'));
57
+ console.log(w(' ──────────────────'));
58
+ console.log(w(' reis cycle [phase] - Run the complete automated workflow: PLAN → EXECUTE → VERIFY → DEBUG'));
59
+ console.log(w(' reis cycle --resume - Resume an interrupted cycle from where it left off'));
60
+ console.log('');
61
+
62
+ // Verification
63
+ console.log(w(' Verification'));
64
+ console.log(w(' ────────────'));
65
+ console.log(w(' reis verify - Verify phase completion against success criteria and deliverables'));
66
+ console.log(w(' reis progress - Show detailed execution progress with completion percentages and status'));
67
+ console.log(w(' reis visualize - Generate visual representation of project state, dependencies, and progress'));
68
+ console.log('');
69
+
70
+ // Decision Trees
71
+ console.log(w(' Decision Trees'));
72
+ console.log(w(' ──────────────'));
73
+ console.log(w(' reis tree show <file> - Display a decision tree from a markdown file with formatting and colors'));
74
+ console.log(w(' reis tree list - List all available built-in decision tree templates'));
75
+ console.log(w(' reis tree new <template> - Create a new decision tree file from a built-in template'));
76
+ console.log(w(' reis tree validate <file> - Validate decision tree syntax, structure, and metadata'));
77
+ console.log(w(' reis tree export <file> - Export decision tree to HTML, SVG, or Mermaid format'));
78
+ console.log(w(' reis tree diff <f1> <f2> - Compare two decision trees and show added, removed, or modified branches'));
79
+ console.log(w(' reis tree lint <file> - Check decision tree for issues like circular refs or unbalanced branches'));
80
+ console.log(w(' reis tree --interactive - Enable interactive mode with arrow key navigation and selection'));
81
+ console.log('');
82
+
83
+ // Decision Tracking
84
+ console.log(w(' Decision Tracking'));
85
+ console.log(w(' ─────────────────'));
86
+ console.log(w(' reis decisions list - Display all recorded decisions with tree, selection, and timestamp'));
87
+ console.log(w(' reis decisions show <id> - View detailed information about a specific decision including context'));
88
+ console.log(w(' reis decisions revert <id> - Mark a decision as reverted and optionally select a new option'));
89
+ console.log(w(' reis decisions export - Export decision history to JSON or CSV format for analysis'));
90
+ console.log(w(' reis decisions stats - Show decision statistics including counts by tree, risk, and time period'));
91
+ console.log('');
92
+
93
+ // Research & Discussion
94
+ console.log(w(' Research & Discussion'));
95
+ console.log(w(' ─────────────────────'));
96
+ console.log(w(' reis research <topic> - Research a topic and gather information for implementation decisions'));
97
+ console.log(w(' reis discuss <topic> - Start a discussion thread about implementation options and trade-offs'));
98
+ console.log(w(' reis assumptions - Document and track project assumptions that may affect implementation'));
99
+ console.log('');
100
+
101
+ // Utilities
102
+ console.log(w(' Utilities'));
103
+ console.log(w(' ─────────'));
104
+ console.log(w(' reis todo <desc> - Add a new TODO item to track tasks that need attention'));
105
+ console.log(w(' reis todos [area] - List all TODO items, optionally filtered by area or status'));
106
+ console.log(w(' reis debug <issue> - Analyze and debug a specific issue with root cause analysis'));
107
+ console.log(w(' reis update - Check for and install the latest version of REIS'));
108
+ console.log(w(' reis whats-new - Display release notes and new features in the latest version'));
109
+ console.log(w(' reis docs - Open REIS documentation in your default browser'));
110
+ console.log(w(' reis uninstall - Remove REIS from your system and clean up configuration files'));
111
+ console.log('');
112
+
113
+ // Help & Info
114
+ console.log(w(' Help & Info'));
115
+ console.log(w(' ───────────'));
116
+ console.log(w(' reis help - Show this help message with all available commands'));
117
+ console.log(w(' reis version - Display current version, install location, and system information'));
118
+ console.log('');
119
+
120
+ // Footer
121
+ console.log(w(' Use \'reis <command> --help\' for more information on a specific command.'));
122
+ console.log('');
68
123
 
69
124
  return 0;
70
125
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravirei/reis",
3
- "version": "2.3.0",
3
+ "version": "2.3.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": {