@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.
- package/lib/commands/help.js +115 -60
- package/package.json +1 -1
package/lib/commands/help.js
CHANGED
|
@@ -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(
|
|
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(
|
|
17
|
-
console.log(
|
|
18
|
-
console.log(
|
|
19
|
-
console.log(
|
|
20
|
-
|
|
21
|
-
console.log(
|
|
22
|
-
console.log('
|
|
23
|
-
console.log('
|
|
24
|
-
console.log('
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
console.log(
|
|
28
|
-
console.log(
|
|
29
|
-
console.log(
|
|
30
|
-
console.log(
|
|
31
|
-
console.log(
|
|
32
|
-
console.log('
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
console.log(
|
|
37
|
-
console.log(
|
|
38
|
-
console.log(
|
|
39
|
-
console.log(
|
|
40
|
-
|
|
41
|
-
console.log(
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
console.log(
|
|
45
|
-
|
|
46
|
-
console.log(
|
|
47
|
-
console.log(
|
|
48
|
-
console.log(
|
|
49
|
-
console.log(
|
|
50
|
-
|
|
51
|
-
console.log(
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
console.log(
|
|
55
|
-
console.log(
|
|
56
|
-
console.log(
|
|
57
|
-
console.log(
|
|
58
|
-
console.log('
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
console.log(
|
|
62
|
-
console.log(
|
|
63
|
-
|
|
64
|
-
console.log(
|
|
65
|
-
console.log(
|
|
66
|
-
console.log(
|
|
67
|
-
|
|
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.
|
|
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": {
|