@gravirei/reis 1.2.1 → 1.2.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
@@ -264,14 +264,14 @@ program.action(async () => {
264
264
  await performInstallation(true, true); // overwrite=true, silent=true
265
265
 
266
266
  console.log(chalk.green(' ✓ REIS reinstalled successfully'));
267
- console.log(chalk.white(` Run ${chalk.cyan('reis help')} to get started\n`));
267
+ console.log(chalk.white(` Open Atlassian Rovo Dev and run ${chalk.cyan('reis help')} to get started\n`));
268
268
  } else {
269
269
  console.log(chalk.cyan(' Keeping existing installation\n'));
270
270
  console.log(chalk.green(' ✓ Using existing documentation'));
271
271
  console.log(chalk.green(' ✓ Using existing templates'));
272
272
  console.log(chalk.green(' ✓ Using existing subagents'));
273
273
  console.log(chalk.green(` ✓ Current VERSION (${packageJson.version})`));
274
- console.log(chalk.white(`\n Run ${chalk.cyan('reis help')} to get started\n`));
274
+ console.log(chalk.white(`\n Open Atlassian Rovo Dev and run ${chalk.cyan('reis help')} to get started\n`));
275
275
  }
276
276
 
277
277
  } catch (err) {
@@ -308,7 +308,7 @@ program.action(async () => {
308
308
  await performInstallation(false, true); // overwrite=false, silent=true
309
309
 
310
310
  console.log(chalk.green(' ✓ REIS installed successfully'));
311
- console.log(chalk.white(` Run ${chalk.cyan('reis help')} to get started\n`));
311
+ console.log(chalk.white(` Open Atlassian Rovo Dev and run ${chalk.cyan('reis help')} to get started\n`));
312
312
 
313
313
  } catch (err) {
314
314
  // inquirer failed, auto-install as default
@@ -319,7 +319,7 @@ program.action(async () => {
319
319
  await performInstallation(false, true); // overwrite=false, silent=true
320
320
 
321
321
  console.log(chalk.green(' ✓ REIS installed successfully'));
322
- console.log(chalk.white(` Run ${chalk.cyan('reis help')} to get started\n`));
322
+ console.log(chalk.white(` Open Atlassian Rovo Dev and run ${chalk.cyan('reis help')} to get started\n`));
323
323
  }
324
324
  }
325
325
  });
package/lib/install.js CHANGED
@@ -230,7 +230,7 @@ function copyDirectory(srcDir, destDir, overwrite = false) {
230
230
  function showSuccessMessage(fileCount, reisDir, templatesDir, subagentsDir) {
231
231
  console.log(chalk.green('\n✓ Installation complete\n'));
232
232
  console.log(chalk.white(` Installed ${fileCount} files to ~/.rovodev/`));
233
- console.log(chalk.white(` Run ${chalk.cyan('reis help')} to get started\n`));
233
+ console.log(chalk.white(` Open Atlassian Rovo Dev and run ${chalk.cyan('reis help')} to get started\n`));
234
234
  }
235
235
 
236
236
  // Run installation if called directly
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravirei/reis",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Roadmap Execution & Implementation System - Systematic development with parallel subagent execution for Atlassian Rovo Dev",
5
5
  "main": "lib/index.js",
6
6
  "bin": {