strray-ai 1.6.26 → 1.6.27

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/.opencode/init.sh CHANGED
@@ -1,14 +1,14 @@
1
1
  #!/bin/bash
2
2
 
3
- # StringRay Framework Version - read dynamically from package.json
4
- STRRAY_VERSION=$(node -e "console.log(require('./package.json').version)")
5
-
6
- START_TIME=$(date +%s)
7
-
8
3
  # Get script directory for robust path handling
9
4
  SCRIPT_DIR=$(dirname "$(realpath "$0")")
10
5
  PROJECT_ROOT=$(realpath "$SCRIPT_DIR/..")
11
6
 
7
+ # StringRay Framework Version - read dynamically from package.json
8
+ STRRAY_VERSION=$(node -e "console.log(require('$PROJECT_ROOT/package.json').version)")
9
+
10
+ START_TIME=$(date +%s)
11
+
12
12
  LOG_FILE="$PROJECT_ROOT/.opencode/logs/strray-init-$(date +%Y%m%d-%H%M%S).log"
13
13
  mkdir -p "$PROJECT_ROOT/.opencode/logs"
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "strray-ai",
3
- "version": "1.6.26",
3
+ "version": "1.6.27",
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/strray-codex-injection.js",