stringray-ai 1.0.20 → 1.0.21

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.20",
3
+ "version": "1.0.21",
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",
@@ -91,22 +91,22 @@ async function runComprehensiveTests() {
91
91
  const tests = [
92
92
  {
93
93
  name: 'MCP Configuration Validation',
94
- command: 'node scripts/test-path-resolver.mjs',
94
+ command: `node ${__dirname}/test-path-resolver.mjs`,
95
95
  description: 'Validates MCP server configuration and path resolution'
96
96
  },
97
97
  {
98
98
  name: 'Plugin System Validation',
99
- command: 'node scripts/test-stringray-plugin.mjs --basic-only',
99
+ command: `node ${__dirname}/test-stringray-plugin.mjs --basic-only`,
100
100
  description: 'Tests basic plugin loading without comprehensive tests'
101
101
  },
102
102
  {
103
103
  name: 'Codex Integration Test',
104
- command: 'node scripts/validate-codex.js',
104
+ command: `node ${__dirname}/validate-codex.js`,
105
105
  description: 'Validates codex parsing and injection functionality'
106
106
  },
107
107
  {
108
108
  name: 'Process Communication Test',
109
- command: 'node scripts/test-comprehensive-path-resolution.mjs',
109
+ command: `node ${__dirname}/test-comprehensive-path-resolution.mjs`,
110
110
  description: 'Tests path resolution and process communication'
111
111
  }
112
112
  ];