@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 CHANGED
@@ -9,7 +9,7 @@ const chalk = require('chalk');
9
9
 
10
10
  // Show welcome banner (always, not just first run)
11
11
  function showBanner() {
12
- console.log(chalk.white.bold(`
12
+ console.log(chalk.cyan.bold(`
13
13
  ██████ ███████ ██ ███████
14
14
  ██ ██ ██ ██ ██
15
15
  ██████ █████ ██ ███████
@@ -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.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.white.bold(' ██████ ███████ ██ ███████')}
12
- ${chalk.white.bold(' ██ ██ ██ ██ ██ ')}
13
- ${chalk.white.bold(' ██████ █████ ██ ███████')}
14
- ${chalk.white.bold(' ██ ██ ██ ██ ██')}
15
- ${chalk.white.bold(' ██ ██ ███████ ██ ███████')}
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.0",
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": {