stringray-ai 1.0.1 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +8 -8
  2. package/package.json +1 -1
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stringray-ai",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
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",