@quantiya/codevibe 1.0.1 → 1.0.3

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
@@ -10,19 +10,30 @@ CodeVibe syncs your terminal sessions (Claude Code, Gemini CLI, Codex CLI) to th
10
10
  npm install -g @quantiya/codevibe
11
11
  ```
12
12
 
13
- This installs all three agent plugins:
13
+ This installs wrapper commands for all three agents:
14
14
  - `codevibe-claude` — Claude Code integration
15
15
  - `codevibe-gemini` — Gemini CLI integration
16
16
  - `codevibe-codex` — Codex CLI integration
17
17
 
18
+ ### Claude Code: Additional Step
19
+
20
+ Claude Code also requires its MCP plugin to be registered. Inside a Claude Code session, run:
21
+
22
+ ```
23
+ /plugin marketplace add https://github.com/hendryyeh/quantiya-codevibe-marketplace
24
+ /plugin install codevibe-claude
25
+ ```
26
+
27
+ This registers the CodeVibe MCP server with Claude Code. You only need to do this once.
28
+
18
29
  ### Install individual plugins
19
30
 
20
31
  If you only use specific agents:
21
32
 
22
33
  ```bash
23
- npm install -g codevibe-claude-plugin
24
- npm install -g codevibe-gemini-plugin
25
- npm install -g codevibe-codex-plugin
34
+ npm install -g @quantiya/codevibe-claude-plugin # Also needs marketplace install above
35
+ npm install -g @quantiya/codevibe-gemini-plugin
36
+ npm install -g @quantiya/codevibe-codex-plugin
26
37
  ```
27
38
 
28
39
  ## Quick Start
package/bin/codevibe CHANGED
@@ -17,7 +17,13 @@
17
17
 
18
18
  export ENVIRONMENT="${ENVIRONMENT:-production}"
19
19
 
20
- SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
20
+ SOURCE="${BASH_SOURCE[0]}"
21
+ while [ -L "$SOURCE" ]; do
22
+ DIR="$(cd "$(dirname "$SOURCE")" && pwd)"
23
+ SOURCE="$(readlink "$SOURCE")"
24
+ [[ "$SOURCE" != /* ]] && SOURCE="$DIR/$SOURCE"
25
+ done
26
+ SCRIPT_DIR="$(cd "$(dirname "$SOURCE")" && pwd)"
21
27
  PACKAGE_DIR="$(dirname "$SCRIPT_DIR")"
22
28
 
23
29
  CORE_CLI="$PACKAGE_DIR/node_modules/@quantiya/codevibe-core/bin/codevibe.js"
@@ -1,12 +1,18 @@
1
1
  #!/bin/bash
2
- # Thin wrapper that delegates to @quantiya/codevibe-claude
3
- # Resolves the actual binary from the installed dependency
2
+ # Thin wrapper that delegates to @quantiya/codevibe-claude-plugin
4
3
 
5
- SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
6
- DELEGATE="$SCRIPT_DIR/../node_modules/@quantiya/codevibe-claude/bin/codevibe-claude"
4
+ SOURCE="${BASH_SOURCE[0]}"
5
+ while [ -L "$SOURCE" ]; do
6
+ DIR="$(cd "$(dirname "$SOURCE")" && pwd)"
7
+ SOURCE="$(readlink "$SOURCE")"
8
+ [[ "$SOURCE" != /* ]] && SOURCE="$DIR/$SOURCE"
9
+ done
10
+ SCRIPT_DIR="$(cd "$(dirname "$SOURCE")" && pwd)"
11
+
12
+ DELEGATE="$SCRIPT_DIR/../node_modules/@quantiya/codevibe-claude-plugin/bin/codevibe-claude"
7
13
 
8
14
  if [ ! -f "$DELEGATE" ]; then
9
- echo "Error: @quantiya/codevibe-claude not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
15
+ echo "Error: @quantiya/codevibe-claude-plugin not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
10
16
  exit 1
11
17
  fi
12
18
 
@@ -1,12 +1,18 @@
1
1
  #!/bin/bash
2
- # Thin wrapper that delegates to @quantiya/codevibe-codex
3
- # Resolves the actual binary from the installed dependency
2
+ # Thin wrapper that delegates to @quantiya/codevibe-codex-plugin
4
3
 
5
- SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
6
- DELEGATE="$SCRIPT_DIR/../node_modules/@quantiya/codevibe-codex/bin/codevibe-codex"
4
+ SOURCE="${BASH_SOURCE[0]}"
5
+ while [ -L "$SOURCE" ]; do
6
+ DIR="$(cd "$(dirname "$SOURCE")" && pwd)"
7
+ SOURCE="$(readlink "$SOURCE")"
8
+ [[ "$SOURCE" != /* ]] && SOURCE="$DIR/$SOURCE"
9
+ done
10
+ SCRIPT_DIR="$(cd "$(dirname "$SOURCE")" && pwd)"
11
+
12
+ DELEGATE="$SCRIPT_DIR/../node_modules/@quantiya/codevibe-codex-plugin/bin/codevibe-codex"
7
13
 
8
14
  if [ ! -f "$DELEGATE" ]; then
9
- echo "Error: @quantiya/codevibe-codex not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
15
+ echo "Error: @quantiya/codevibe-codex-plugin not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
10
16
  exit 1
11
17
  fi
12
18
 
@@ -1,12 +1,18 @@
1
1
  #!/bin/bash
2
- # Thin wrapper that delegates to @quantiya/codevibe-gemini
3
- # Resolves the actual binary from the installed dependency
2
+ # Thin wrapper that delegates to @quantiya/codevibe-gemini-plugin
4
3
 
5
- SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
6
- DELEGATE="$SCRIPT_DIR/../node_modules/@quantiya/codevibe-gemini/bin/codevibe-gemini"
4
+ SOURCE="${BASH_SOURCE[0]}"
5
+ while [ -L "$SOURCE" ]; do
6
+ DIR="$(cd "$(dirname "$SOURCE")" && pwd)"
7
+ SOURCE="$(readlink "$SOURCE")"
8
+ [[ "$SOURCE" != /* ]] && SOURCE="$DIR/$SOURCE"
9
+ done
10
+ SCRIPT_DIR="$(cd "$(dirname "$SOURCE")" && pwd)"
11
+
12
+ DELEGATE="$SCRIPT_DIR/../node_modules/@quantiya/codevibe-gemini-plugin/bin/codevibe-gemini"
7
13
 
8
14
  if [ ! -f "$DELEGATE" ]; then
9
- echo "Error: @quantiya/codevibe-gemini not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
15
+ echo "Error: @quantiya/codevibe-gemini-plugin not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
10
16
  exit 1
11
17
  fi
12
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantiya/codevibe",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "CodeVibe - Monitor and control AI coding agents (Claude Code, Gemini CLI, Codex CLI) from your mobile device",
5
5
  "bin": {
6
6
  "codevibe": "./bin/codevibe",