@quantiya/codevibe-codex-plugin 1.0.4 → 1.0.5

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.
@@ -46,10 +46,14 @@ PLUGIN_DIR="$(dirname "$SCRIPT_DIR")"
46
46
  case "$1" in
47
47
  login|logout|status|reset-device)
48
48
  CORE_CLI="$PLUGIN_DIR/node_modules/@quantiya/codevibe-core/bin/codevibe.js"
49
+ # Also check hoisted location (when installed via @quantiya/codevibe meta-package)
50
+ if [ ! -f "$CORE_CLI" ]; then
51
+ CORE_CLI="$PLUGIN_DIR/../codevibe-core/bin/codevibe.js"
52
+ fi
49
53
  if [ -f "$CORE_CLI" ]; then
50
54
  exec node "$CORE_CLI" "$1"
51
55
  else
52
- echo "Error: codevibe-core not found. Run 'npm install' in the plugin directory first."
56
+ echo "Error: codevibe-core not found. Try reinstalling: npm install -g @quantiya/codevibe"
53
57
  exit 1
54
58
  fi
55
59
  ;;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantiya/codevibe-codex-plugin",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Mobile companion for OpenAI Codex CLI - monitor and control your Codex CLI sessions from your iPhone",
5
5
  "main": "dist/server.js",
6
6
  "bin": {