stringray-ai 1.0.13 → 1.0.15

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
@@ -61,7 +61,13 @@
61
61
 
62
62
  ### Installation
63
63
 
64
+ First, ensure you have a `package.json` file in your project:
65
+
64
66
  ```bash
67
+ # If you don't have package.json yet
68
+ npm init -y
69
+
70
+ # Then install StringRay AI
65
71
  npm install stringray-ai
66
72
  ```
67
73
 
@@ -70,10 +76,10 @@ npm install stringray-ai
70
76
  **Important:** After installation, you must run the setup command manually:
71
77
 
72
78
  ```bash
73
- npx stringray-ai init
79
+ npx stringray-ai install
74
80
  ```
75
81
 
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.
82
+ **Note:** The setup command is required because npm's postinstall scripts have security restrictions that prevent automatic configuration. This ensures you have full control over the installation process.
77
83
 
78
84
  This will automatically:
79
85
 
@@ -81,6 +87,28 @@ This will automatically:
81
87
  - ✅ Enable multi-agent orchestration settings
82
88
  - ✅ Set up configuration for AI development workflows
83
89
 
90
+ ### Validation & Testing
91
+
92
+ After installation, validate that StringRay is working correctly:
93
+
94
+ ```bash
95
+ # Test CLI functionality
96
+ npx stringray-ai --help
97
+ npx stringray-ai doctor
98
+
99
+ # Run comprehensive plugin validation
100
+ node node_modules/stringray-ai/scripts/test-stringray-plugin.mjs
101
+
102
+ # Check system status
103
+ npx stringray-ai status
104
+ ```
105
+
106
+ The plugin test will verify:
107
+ - ✅ Plugin loads successfully
108
+ - ✅ Codex injection works
109
+ - ✅ System hooks are functional
110
+ - ✅ Framework is ready for oh-my-opencode integration
111
+
84
112
  ### Manual Installation
85
113
 
86
114
  If automatic setup fails:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stringray-ai",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
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",
@@ -59,12 +59,16 @@ console.log('=====================================\n');
59
59
  console.log(`📋 Codex terms included: ${hasTerms ? '✅' : '❌'}`);
60
60
 
61
61
  if (hasCodex && hasTerms) {
62
- console.log('\n🎉 StringRay Framework Plugin Test: PASSED');
63
- console.log('✨ Framework is ready for oh-my-opencode integration');
64
- } else {
65
- console.log('\n❌ StringRay Framework Plugin Test: FAILED');
66
- process.exit(1);
67
- }
62
+ console.log('\n🎉 StringRay Framework Plugin Test: PASSED');
63
+ console.log('✨ Framework is ready for oh-my-opencode integration');
64
+
65
+ // Run comprehensive deployment tests
66
+ console.log('\n🔬 Running comprehensive deployment validation...');
67
+ await runComprehensiveTests();
68
+ } else {
69
+ console.log('\n❌ StringRay Framework Plugin Test: FAILED');
70
+ process.exit(1);
71
+ }
68
72
  } else {
69
73
  console.log('❌ No system messages generated');
70
74
  process.exit(1);