stringray-ai 1.0.2 → 1.0.3

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/dist/cli/index.js CHANGED
@@ -1,11 +1,12 @@
1
1
  #!/usr/bin/env node
2
- import { Command } from "commander";
2
+ const { Command } = require("commander");
3
3
  const program = new Command();
4
+
4
5
  // CLI Configuration
5
6
  program
6
- .name("strray")
7
- .description("StringRay Framework - Ship Production-Ready Code & Eliminate Common Dead Ends")
8
- .version("1.0.0");
7
+ .name("stringray-ai")
8
+ .description("StringRay AI Framework - Ship Production-Ready Code & Eliminate Common Dead Ends")
9
+ .version("1.0.2");
9
10
  // Status Command - Basic implementation
10
11
  program
11
12
  .command("status")
@@ -81,8 +82,9 @@ program
81
82
  console.log(`Max Agents: ${options.maxAgents}`);
82
83
  console.log("\nšŸ”„ Starting orchestration...");
83
84
  try {
84
- // Import StringRay orchestrator
85
- const { StringRayOrchestrator } = await import("../orchestrator.js");
85
+ // Import StringRay orchestrator (using dynamic require for ES modules)
86
+ const orchestratorModule = require("../orchestrator.js");
87
+ const StringRayOrchestrator = orchestratorModule.StringRayOrchestrator || orchestratorModule.default;
86
88
  // Initialize orchestrator with session config
87
89
  const orchestrator = new StringRayOrchestrator({
88
90
  maxConcurrentTasks: parseInt(options.maxAgents),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stringray-ai",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
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",
@@ -9,7 +9,7 @@
9
9
  "plugin": "./dist/plugin/plugins/stringray-codex-injection.js"
10
10
  },
11
11
  "bin": {
12
- "stringray": "dist/cli/index.js",
12
+ "stringray-ai": "dist/cli/index.js",
13
13
  "stringray-test": "scripts/test-stringray-plugin.mjs"
14
14
  },
15
15
  "scripts": {