stringray-ai 1.0.29 → 1.0.30

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.
Files changed (2) hide show
  1. package/dist/cli/index.js +12 -2
  2. package/package.json +1 -1
package/dist/cli/index.js CHANGED
@@ -26,8 +26,18 @@ program
26
26
  .description("Interactive setup wizard for StringRay Framework")
27
27
  .option("--no-tui", "run in non-interactive mode without TUI")
28
28
  .action(async (options) => {
29
- console.log("🚀 StringRay Framework Setup Wizard");
30
- console.log("=================================");
29
+ // Beautiful ASCII art banner
30
+ console.log('\n' + '='.repeat(70));
31
+ console.log(' ███████╗████████╗██████╗ ██╗███╗ ██╗ ██████╗ ██████╗ █████╗ ██╗ ██╗');
32
+ console.log(' ██╔════╝╚══██╔══╝██╔══██╗██║████╗ ██║██╔════╝ ██╔══██╗██╔══██╗╚██╗ ██╔╝');
33
+ console.log(' ███████╗ ██║ ██████╔╝██║██╔██╗ ██║██║ ███╗██████╔╝███████║ ╚████╔╝ ');
34
+ console.log(' ╚════██║ ██║ ██╔══██╗██║██║╚██╗██║██║ ██║██╔══██╗██╔══██║ ╚██╔╝ ');
35
+ console.log(' ███████║ ██║ ██║ ██║██║██║ ╚████║╚██████╔╝██║ ██║██║ ██║ ██║ ');
36
+ console.log(' ╚══════╝ ╚═╝ ╚═╝ ╚═╝╚═╝╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ');
37
+ console.log('='.repeat(70));
38
+ console.log(' Enterprise AI Orchestration Platform');
39
+ console.log(' 99.6% Error Prevention • Zero Dead Ends');
40
+ console.log('='.repeat(70) + '\n');
31
41
 
32
42
  try {
33
43
  // Check system prerequisites
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stringray-ai",
3
- "version": "1.0.29",
3
+ "version": "1.0.30",
4
4
  "description": "⚡ StringRay ⚡: Bulletproof AI orchestration with systematic error prevention. Zero dead ends. Ship clean, tested, optimized code — every time.",
5
5
  "type": "module",
6
6
  "main": "./dist/plugin/index.js",