@quantiya/codevibe 1.0.0

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Quantiya LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,74 @@
1
+ # CodeVibe
2
+
3
+ Monitor and control AI coding agents from your mobile device.
4
+
5
+ CodeVibe syncs your terminal sessions (Claude Code, Gemini CLI, Codex CLI) to the [CodeVibe iOS app](https://apps.apple.com/app/id6740641420), letting you review code changes, approve actions, and send prompts — all from your phone.
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npm install -g @quantiya/codevibe
11
+ ```
12
+
13
+ This installs all three agent plugins:
14
+ - `codevibe-claude` — Claude Code integration
15
+ - `codevibe-gemini` — Gemini CLI integration
16
+ - `codevibe-codex` — Codex CLI integration
17
+
18
+ ### Install individual plugins
19
+
20
+ If you only use specific agents:
21
+
22
+ ```bash
23
+ npm install -g @quantiya/codevibe-claude
24
+ npm install -g @quantiya/codevibe-gemini
25
+ npm install -g @quantiya/codevibe-codex
26
+ ```
27
+
28
+ ## Quick Start
29
+
30
+ ```bash
31
+ # 1. Sign in (opens browser — Apple or Google)
32
+ codevibe-claude login
33
+
34
+ # 2. Start coding — session syncs to your phone
35
+ codevibe-claude
36
+ ```
37
+
38
+ Same pattern for Gemini and Codex:
39
+
40
+ ```bash
41
+ codevibe-gemini login && codevibe-gemini
42
+ codevibe-codex login && codevibe-codex
43
+ ```
44
+
45
+ ## Features
46
+
47
+ **Real-time sync** — See assistant responses, tool usage, and file changes on your phone as they happen (~100-500ms latency)
48
+
49
+ **Mobile approval** — Approve or reject tool permissions remotely. View full file diffs with syntax highlighting before approving changes
50
+
51
+ **Send prompts** — Type or dictate prompts from your phone that execute immediately on desktop
52
+
53
+ **Voice messages** — Tap the microphone to dictate prompts with real-time speech-to-text transcription
54
+
55
+ **Image attachments** — Send screenshots or photos from your camera or photo library alongside your messages
56
+
57
+ **Push notifications** — Get notified when your agent needs attention, with deep linking to the relevant session
58
+
59
+ **Delivery status** — WhatsApp-style checkmarks: sent, delivered, and executed confirmations
60
+
61
+ **Multi-agent** — Run Claude Code, Gemini CLI, and Codex CLI sessions simultaneously, each clearly labeled in the app
62
+
63
+ **End-to-end encryption** — All messages encrypted with AES-256-GCM. Your code stays private
64
+
65
+ **Offline queue** — Messages queue automatically when offline and send when connection restores
66
+
67
+ ## Links
68
+
69
+ - [iOS App](https://apps.apple.com/app/id6740641420)
70
+ - [Website](https://quantiya.ai/codevibe)
71
+
72
+ ## License
73
+
74
+ MIT
package/bin/codevibe ADDED
@@ -0,0 +1,30 @@
1
+ #!/bin/bash
2
+ #
3
+ # codevibe - CodeVibe shared authentication CLI
4
+ #
5
+ # Delegates to @quantiya/codevibe-core's CLI for shared auth commands.
6
+ # Authentication is shared across all CodeVibe plugins (Claude, Codex, Gemini).
7
+ #
8
+ # Usage:
9
+ # codevibe login # Sign in via browser
10
+ # codevibe logout # Sign out
11
+ # codevibe status # Show auth status
12
+ # codevibe reset-device # Reset device identity (destructive)
13
+ #
14
+ # Environment:
15
+ # ENVIRONMENT # Set to 'production' (default) or 'development'
16
+ #
17
+
18
+ export ENVIRONMENT="${ENVIRONMENT:-production}"
19
+
20
+ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
21
+ PACKAGE_DIR="$(dirname "$SCRIPT_DIR")"
22
+
23
+ CORE_CLI="$PACKAGE_DIR/node_modules/@quantiya/codevibe-core/bin/codevibe.js"
24
+
25
+ if [ -f "$CORE_CLI" ]; then
26
+ exec node "$CORE_CLI" "$@"
27
+ else
28
+ echo "Error: @quantiya/codevibe-core not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
29
+ exit 1
30
+ fi
@@ -0,0 +1,13 @@
1
+ #!/bin/bash
2
+ # Thin wrapper that delegates to @quantiya/codevibe-claude
3
+ # Resolves the actual binary from the installed dependency
4
+
5
+ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
6
+ DELEGATE="$SCRIPT_DIR/../node_modules/@quantiya/codevibe-claude/bin/codevibe-claude"
7
+
8
+ if [ ! -f "$DELEGATE" ]; then
9
+ echo "Error: @quantiya/codevibe-claude not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
10
+ exit 1
11
+ fi
12
+
13
+ exec "$DELEGATE" "$@"
@@ -0,0 +1,13 @@
1
+ #!/bin/bash
2
+ # Thin wrapper that delegates to @quantiya/codevibe-codex
3
+ # Resolves the actual binary from the installed dependency
4
+
5
+ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
6
+ DELEGATE="$SCRIPT_DIR/../node_modules/@quantiya/codevibe-codex/bin/codevibe-codex"
7
+
8
+ if [ ! -f "$DELEGATE" ]; then
9
+ echo "Error: @quantiya/codevibe-codex not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
10
+ exit 1
11
+ fi
12
+
13
+ exec "$DELEGATE" "$@"
@@ -0,0 +1,13 @@
1
+ #!/bin/bash
2
+ # Thin wrapper that delegates to @quantiya/codevibe-gemini
3
+ # Resolves the actual binary from the installed dependency
4
+
5
+ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
6
+ DELEGATE="$SCRIPT_DIR/../node_modules/@quantiya/codevibe-gemini/bin/codevibe-gemini"
7
+
8
+ if [ ! -f "$DELEGATE" ]; then
9
+ echo "Error: @quantiya/codevibe-gemini not found. Try reinstalling: npm install -g @quantiya/codevibe" >&2
10
+ exit 1
11
+ fi
12
+
13
+ exec "$DELEGATE" "$@"
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@quantiya/codevibe",
3
+ "version": "1.0.0",
4
+ "description": "CodeVibe - Monitor and control AI coding agents (Claude Code, Gemini CLI, Codex CLI) from your mobile device",
5
+ "bin": {
6
+ "codevibe": "./bin/codevibe",
7
+ "codevibe-claude": "./bin/codevibe-claude",
8
+ "codevibe-gemini": "./bin/codevibe-gemini",
9
+ "codevibe-codex": "./bin/codevibe-codex"
10
+ },
11
+ "files": [
12
+ "bin",
13
+ "README.md",
14
+ "LICENSE"
15
+ ],
16
+ "dependencies": {
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"
21
+ },
22
+ "keywords": [
23
+ "codevibe",
24
+ "claude",
25
+ "gemini",
26
+ "codex",
27
+ "ai",
28
+ "coding",
29
+ "mobile",
30
+ "companion"
31
+ ],
32
+ "author": "Quantiya LLC",
33
+ "license": "MIT",
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "git+https://github.com/hendryyeh/quantiya-codevibe.git"
37
+ },
38
+ "homepage": "https://quantiya.ai/codevibe",
39
+ "bugs": {
40
+ "url": "https://github.com/hendryyeh/quantiya-codevibe/issues"
41
+ }
42
+ }