@gravirei/reis 2.1.0 → 2.1.1
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 +1 -1
- package/lib/commands/help.js +11 -3
- package/lib/install.js +5 -5
- package/package.json +1 -1
package/bin/reis.js
CHANGED
package/lib/commands/help.js
CHANGED
|
@@ -4,9 +4,17 @@ const { getVersion } = require('../utils/command-helpers');
|
|
|
4
4
|
module.exports = function help() {
|
|
5
5
|
const version = getVersion();
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
console.log(chalk.
|
|
9
|
-
|
|
7
|
+
// ASCII Art Banner
|
|
8
|
+
console.log(chalk.cyan.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/lib/install.js
CHANGED
|
@@ -8,11 +8,11 @@ const inquirer = require('inquirer');
|
|
|
8
8
|
|
|
9
9
|
// ASCII Art Banner
|
|
10
10
|
const banner = `
|
|
11
|
-
${chalk.
|
|
12
|
-
${chalk.
|
|
13
|
-
${chalk.
|
|
14
|
-
${chalk.
|
|
15
|
-
${chalk.
|
|
11
|
+
${chalk.cyan.bold(' ██████ ███████ ██ ███████')}
|
|
12
|
+
${chalk.cyan.bold(' ██ ██ ██ ██ ██ ')}
|
|
13
|
+
${chalk.cyan.bold(' ██████ █████ ██ ███████')}
|
|
14
|
+
${chalk.cyan.bold(' ██ ██ ██ ██ ██')}
|
|
15
|
+
${chalk.cyan.bold(' ██ ██ ███████ ██ ███████')}
|
|
16
16
|
|
|
17
17
|
${chalk.blue.bold('Roadmap Execution & Implementation System')}
|
|
18
18
|
${chalk.gray('Systematic development with parallel subagent execution')}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravirei/reis",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
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": {
|