stringray-ai 1.0.1 → 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/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # ⚡ StringRay (StringRay) v1.0.0 – Bulletproof AI Orchestration for Production-Grade Development
1
+ # ⚡ StringRay AI v1.0.1 – Bulletproof AI Orchestration for Production-Grade Development
2
2
 
3
- [![Version](https://img.shields.io/badge/version-1.0.0-blue.svg)](https://github.com/htafolla/stringray)
3
+ [![Version](https://img.shields.io/badge/version-1.0.1-blue.svg)](https://github.com/htafolla/stringray)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
  [![Node.js](https://img.shields.io/badge/Node.js-18+-green.svg)](https://nodejs.org/)
6
6
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.9+-blue.svg)](https://www.typescript.org/)
@@ -49,7 +49,7 @@
49
49
  ### Prerequisites
50
50
 
51
51
  - Node.js 18+ / Bun (recommended)
52
- - OpenCode installed & running
52
+ - oh-my-opencode installed & running (StringRay AI integrates as an oh-my-opencode plugin)
53
53
 
54
54
  ## 📚 Documentation
55
55
 
@@ -62,7 +62,7 @@
62
62
  ### Installation
63
63
 
64
64
  ```bash
65
- npm install stringray
65
+ npm install stringray-ai
66
66
  ```
67
67
 
68
68
  ### Setup
@@ -70,14 +70,14 @@ npm install stringray
70
70
  **Important:** After installation, you must run the setup command manually:
71
71
 
72
72
  ```bash
73
- npx stringray init
73
+ npx stringray-ai init
74
74
  ```
75
75
 
76
76
  **Note:** npm does not run postinstall scripts automatically for local package installations (file paths or tar.gz files) for security reasons. The setup must be run manually.
77
77
 
78
78
  This will automatically:
79
79
 
80
- - ✅ Configure all 9 StringRay agents
80
+ - ✅ Configure all 8 StringRay agents
81
81
  - ✅ Enable multi-agent orchestration settings
82
82
  - ✅ Set up configuration for AI development workflows
83
83
 
@@ -86,14 +86,14 @@ This will automatically:
86
86
  If automatic setup fails:
87
87
 
88
88
  ```bash
89
- npm install stringray
89
+ npm install stringray-ai
90
90
  ```
91
91
 
92
92
  Then manually add to your development configuration (example for oh-my-opencode):
93
93
 
94
94
  ```json
95
95
  {
96
- "plugin": ["stringray/dist/plugin/stringray-codex-injection.js"],
96
+ "plugin": ["stringray-ai/dist/plugin/stringray-codex-injection.js"],
97
97
  "agent": {
98
98
  "orchestrator": { "model": "opencode/grok-code" },
99
99
  "enforcer": { "model": "opencode/grok-code" },
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.1",
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": {