@jaguilar87/gaia-ops 1.3.1 → 1.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/bin/gaia-init.js +13 -13
- package/package.json +1 -1
package/bin/gaia-init.js
CHANGED
|
@@ -260,19 +260,19 @@ function validateConfiguration(config, nonInteractive) {
|
|
|
260
260
|
async function runInteractiveWizard(detected) {
|
|
261
261
|
// ASCII Art banner
|
|
262
262
|
console.log(chalk.cyan(`
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
263
|
+
╔═══════════════════════════════════════════════════════════════╗
|
|
264
|
+
║ ║
|
|
265
|
+
║ ██████╗ █████╗ ██╗ █████╗ ██████╗ ██████╗ ███████╗ ║
|
|
266
|
+
║ ██╔════╝ ██╔══██╗██║██╔══██╗ ██╔═══██╗██╔══██╗██╔════╝ ║
|
|
267
|
+
║ ██║ ███╗███████║██║███████║ ██║ ██║██████╔╝███████╗ ║
|
|
268
|
+
║ ██║ ██║██╔══██║██║██╔══██║ ██║ ██║██╔═══╝ ╚════██║ ║
|
|
269
|
+
║ ╚██████╔╝██║ ██║██║██║ ██║ ╚██████╔╝██║ ███████║ ║
|
|
270
|
+
║ ╚═════╝ ╚═╝ ╚═╝╚═╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚══════╝ ║
|
|
271
|
+
║ ║
|
|
272
|
+
║ Multi-Agent DevOps Orchestration System ║
|
|
273
|
+
║ Powered by Claude Code ║
|
|
274
|
+
║ ║
|
|
275
|
+
╚═══════════════════════════════════════════════════════════════╝
|
|
276
276
|
`));
|
|
277
277
|
|
|
278
278
|
console.log(chalk.gray('This wizard will set up the Gaia-Ops agent system for your project.\n'));
|