@quantiya/codevibe 1.0.10 → 1.0.12
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/bin/codevibe-claude +23 -0
- package/bin/codevibe-codex +23 -0
- package/bin/codevibe-gemini +23 -0
- package/package.json +5 -5
package/bin/codevibe-claude
CHANGED
|
@@ -16,4 +16,27 @@ if [ ! -f "$DELEGATE" ]; then
|
|
|
16
16
|
exit 1
|
|
17
17
|
fi
|
|
18
18
|
|
|
19
|
+
case "${1:-}" in
|
|
20
|
+
login|logout|help|--help|-h|version|--version|-v)
|
|
21
|
+
;;
|
|
22
|
+
*)
|
|
23
|
+
if ! command -v claude >/dev/null 2>&1; then
|
|
24
|
+
cat >&2 <<'EOF'
|
|
25
|
+
|
|
26
|
+
Claude Code is not installed on this system.
|
|
27
|
+
|
|
28
|
+
CodeVibe attaches to the Claude Code CLI — you need it installed first.
|
|
29
|
+
|
|
30
|
+
Install Claude Code:
|
|
31
|
+
npm install -g @anthropic-ai/claude-code
|
|
32
|
+
|
|
33
|
+
Then run codevibe-claude again.
|
|
34
|
+
|
|
35
|
+
Learn more: https://quantiya.ai/codevibe
|
|
36
|
+
EOF
|
|
37
|
+
exit 1
|
|
38
|
+
fi
|
|
39
|
+
;;
|
|
40
|
+
esac
|
|
41
|
+
|
|
19
42
|
exec "$DELEGATE" "$@"
|
package/bin/codevibe-codex
CHANGED
|
@@ -16,4 +16,27 @@ if [ ! -f "$DELEGATE" ]; then
|
|
|
16
16
|
exit 1
|
|
17
17
|
fi
|
|
18
18
|
|
|
19
|
+
case "${1:-}" in
|
|
20
|
+
login|logout|help|--help|-h|version|--version|-v)
|
|
21
|
+
;;
|
|
22
|
+
*)
|
|
23
|
+
if ! command -v codex >/dev/null 2>&1; then
|
|
24
|
+
cat >&2 <<'EOF'
|
|
25
|
+
|
|
26
|
+
Codex CLI is not installed on this system.
|
|
27
|
+
|
|
28
|
+
CodeVibe attaches to the Codex CLI — you need it installed first.
|
|
29
|
+
|
|
30
|
+
Install Codex CLI:
|
|
31
|
+
npm install -g @openai/codex
|
|
32
|
+
|
|
33
|
+
Then run codevibe-codex again.
|
|
34
|
+
|
|
35
|
+
Learn more: https://quantiya.ai/codevibe
|
|
36
|
+
EOF
|
|
37
|
+
exit 1
|
|
38
|
+
fi
|
|
39
|
+
;;
|
|
40
|
+
esac
|
|
41
|
+
|
|
19
42
|
exec "$DELEGATE" "$@"
|
package/bin/codevibe-gemini
CHANGED
|
@@ -16,4 +16,27 @@ if [ ! -f "$DELEGATE" ]; then
|
|
|
16
16
|
exit 1
|
|
17
17
|
fi
|
|
18
18
|
|
|
19
|
+
case "${1:-}" in
|
|
20
|
+
login|logout|help|--help|-h|version|--version|-v)
|
|
21
|
+
;;
|
|
22
|
+
*)
|
|
23
|
+
if ! command -v gemini >/dev/null 2>&1; then
|
|
24
|
+
cat >&2 <<'EOF'
|
|
25
|
+
|
|
26
|
+
Gemini CLI is not installed on this system.
|
|
27
|
+
|
|
28
|
+
CodeVibe attaches to the Gemini CLI — you need it installed first.
|
|
29
|
+
|
|
30
|
+
Install Gemini CLI:
|
|
31
|
+
npm install -g @google/gemini-cli
|
|
32
|
+
|
|
33
|
+
Then run codevibe-gemini again.
|
|
34
|
+
|
|
35
|
+
Learn more: https://quantiya.ai/codevibe
|
|
36
|
+
EOF
|
|
37
|
+
exit 1
|
|
38
|
+
fi
|
|
39
|
+
;;
|
|
40
|
+
esac
|
|
41
|
+
|
|
19
42
|
exec "$DELEGATE" "$@"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quantiya/codevibe",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "CodeVibe — Control Claude Code, Gemini CLI, and Codex CLI from your iPhone and Android. Real-time sync, voice prompts, approve file edits, E2E encrypted.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"codevibe": "./bin/codevibe",
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"LICENSE"
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@quantiya/codevibe-core": "^1.0.
|
|
18
|
-
"@quantiya/codevibe-claude-plugin": "^1.0.
|
|
19
|
-
"@quantiya/codevibe-gemini-plugin": "^1.0.
|
|
20
|
-
"@quantiya/codevibe-codex-plugin": "^1.0.
|
|
17
|
+
"@quantiya/codevibe-core": "^1.0.8",
|
|
18
|
+
"@quantiya/codevibe-claude-plugin": "^1.0.16",
|
|
19
|
+
"@quantiya/codevibe-gemini-plugin": "^1.0.9",
|
|
20
|
+
"@quantiya/codevibe-codex-plugin": "^1.0.9"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"codevibe",
|