@quantiya/codevibe 1.0.0 → 1.0.2
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 +15 -4
- package/bin/codevibe-claude +3 -3
- package/bin/codevibe-codex +3 -3
- package/bin/codevibe-gemini +3 -3
- package/package.json +4 -4
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
|
|
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 @quantiya/codevibe-claude
|
|
24
|
-
npm install -g @quantiya/codevibe-gemini
|
|
25
|
-
npm install -g @quantiya/codevibe-codex
|
|
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-claude
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
|
-
# Thin wrapper that delegates to @quantiya/codevibe-claude
|
|
2
|
+
# Thin wrapper that delegates to @quantiya/codevibe-claude-plugin
|
|
3
3
|
# Resolves the actual binary from the installed dependency
|
|
4
4
|
|
|
5
5
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
6
|
-
DELEGATE="$SCRIPT_DIR/../node_modules/@quantiya/codevibe-claude/bin/codevibe-claude"
|
|
6
|
+
DELEGATE="$SCRIPT_DIR/../node_modules/@quantiya/codevibe-claude-plugin/bin/codevibe-claude"
|
|
7
7
|
|
|
8
8
|
if [ ! -f "$DELEGATE" ]; then
|
|
9
|
-
echo "Error: @quantiya/codevibe-claude not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
|
|
9
|
+
echo "Error: @quantiya/codevibe-claude-plugin not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
|
|
10
10
|
exit 1
|
|
11
11
|
fi
|
|
12
12
|
|
package/bin/codevibe-codex
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
|
-
# Thin wrapper that delegates to @quantiya/codevibe-codex
|
|
2
|
+
# Thin wrapper that delegates to @quantiya/codevibe-codex-plugin
|
|
3
3
|
# Resolves the actual binary from the installed dependency
|
|
4
4
|
|
|
5
5
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
6
|
-
DELEGATE="$SCRIPT_DIR/../node_modules/@quantiya/codevibe-codex/bin/codevibe-codex"
|
|
6
|
+
DELEGATE="$SCRIPT_DIR/../node_modules/@quantiya/codevibe-codex-plugin/bin/codevibe-codex"
|
|
7
7
|
|
|
8
8
|
if [ ! -f "$DELEGATE" ]; then
|
|
9
|
-
echo "Error: @quantiya/codevibe-codex not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
|
|
9
|
+
echo "Error: @quantiya/codevibe-codex-plugin not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
|
|
10
10
|
exit 1
|
|
11
11
|
fi
|
|
12
12
|
|
package/bin/codevibe-gemini
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
|
-
# Thin wrapper that delegates to @quantiya/codevibe-gemini
|
|
2
|
+
# Thin wrapper that delegates to @quantiya/codevibe-gemini-plugin
|
|
3
3
|
# Resolves the actual binary from the installed dependency
|
|
4
4
|
|
|
5
5
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
6
|
-
DELEGATE="$SCRIPT_DIR/../node_modules/@quantiya/codevibe-gemini/bin/codevibe-gemini"
|
|
6
|
+
DELEGATE="$SCRIPT_DIR/../node_modules/@quantiya/codevibe-gemini-plugin/bin/codevibe-gemini"
|
|
7
7
|
|
|
8
8
|
if [ ! -f "$DELEGATE" ]; then
|
|
9
|
-
echo "Error: @quantiya/codevibe-gemini not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
|
|
9
|
+
echo "Error: @quantiya/codevibe-gemini-plugin not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
|
|
10
10
|
exit 1
|
|
11
11
|
fi
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quantiya/codevibe",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
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",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@quantiya/codevibe-core": "^1.0.0",
|
|
18
|
-
"codevibe-claude-plugin": "^1.0.0",
|
|
19
|
-
"codevibe-gemini-plugin": "^1.0.0",
|
|
20
|
-
"codevibe-codex-plugin": "^1.0.0"
|
|
18
|
+
"@quantiya/codevibe-claude-plugin": "^1.0.0",
|
|
19
|
+
"@quantiya/codevibe-gemini-plugin": "^1.0.0",
|
|
20
|
+
"@quantiya/codevibe-codex-plugin": "^1.0.0"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"codevibe",
|