stringray-ai 1.0.13 → 1.0.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stringray-ai",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
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",
@@ -58,10 +58,11 @@ console.log('=====================================\n');
58
58
  console.log(`📚 Codex context injected: ${hasCodex ? '✅' : '❌'}`);
59
59
  console.log(`📋 Codex terms included: ${hasTerms ? '✅' : '❌'}`);
60
60
 
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 {
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
+ process.exit(0);
65
+ } else {
65
66
  console.log('\n❌ StringRay Framework Plugin Test: FAILED');
66
67
  process.exit(1);
67
68
  }