@quantiya/codevibe 1.0.6 → 1.0.8

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.
Files changed (2) hide show
  1. package/README.md +69 -31
  2. package/package.json +16 -11
package/README.md CHANGED
@@ -1,62 +1,100 @@
1
1
  # CodeVibe
2
2
 
3
- Monitor and control AI coding agents from your phone.
3
+ **Control Claude Code, Gemini CLI, and OpenAI Codex CLI from your iPhone and Android.**
4
4
 
5
- CodeVibe syncs your terminal sessions (Claude Code, Gemini CLI, Codex CLI) to the CodeVibe mobile app, letting you review code changes, approve actions, and send prompts — all from your phone.
5
+ See your agent's work in real time, approve file edits on the go, dictate prompts by voice, send screenshots — all from your phone, anywhere you are. End-to-end encrypted.
6
6
 
7
- ## Quick Install
7
+ 🌐 **[quantiya.ai/codevibe](https://quantiya.ai/codevibe)** — landing page, demo video, screenshots
8
+
9
+ 📱 **[Download on the App Store](https://apps.apple.com/app/id6756500217)** · **[Get it on Google Play](https://play.google.com/store/apps/details?id=ai.quantiya.app.codevibe)**
10
+
11
+ ---
12
+
13
+ ## One-command install
8
14
 
9
15
  ```bash
10
16
  curl -fsSL https://quantiya.ai/codevibe/install.sh | bash
11
17
  ```
12
18
 
13
- This installs everything automatically: Node.js, tmux, Claude Code, CodeVibe, and the Claude plugin.
19
+ This installs everything automatically: Node.js, tmux, Claude Code, the CodeVibe meta-package, and the Claude plugin. After it finishes, download the mobile app, sign in with the same Apple or Google account, and run:
20
+
21
+ ```bash
22
+ codevibe-claude # for Claude Code
23
+ codevibe-gemini # for Gemini CLI
24
+ codevibe-codex # for OpenAI Codex CLI
25
+ ```
14
26
 
15
- ### Manual Install
27
+ Your session appears on your phone automatically.
28
+
29
+ ### Manual install
16
30
 
17
31
  ```bash
18
32
  npm install -g @quantiya/codevibe
19
- claude plugin marketplace add https://github.com/hendryyeh/quantiya-codevibe-marketplace
20
- claude plugin install codevibe-claude@codevibe-marketplace
21
33
  codevibe login
22
34
  ```
23
35
 
24
36
  ## Commands
25
37
 
26
38
  ```bash
27
- codevibe login # Sign in with Apple or Google
39
+ codevibe login # Sign in with Apple or Google (shared across all agents)
40
+ codevibe logout # Sign out
28
41
  codevibe status # Show auth status
29
42
  codevibe update # Update all packages + Claude plugin
30
43
  codevibe version # Show installed versions
31
44
  codevibe --help # Show all commands
32
45
  ```
33
46
 
34
- ### Agent Wrappers
47
+ ## Features
35
48
 
36
- ```bash
37
- codevibe-claude # Start Claude Code with mobile sync
38
- codevibe-gemini # Start Gemini CLI with mobile sync
39
- codevibe-codex # Start Codex CLI with mobile sync
40
- ```
49
+ - **🚀 Real-time sync** — every prompt, response, tool call, and file change on your phone in 100–500ms
50
+ - **✅ Approve file edits** — full diff preview, approve or reject from your phone with the same numbered options the CLI shows
51
+ - **🎙️ Voice input** — dictate prompts with speech-to-text
52
+ - **📷 Image attachments** send screenshots or photos alongside messages
53
+ - **🔔 Push notifications** — never block on permission dialogs again
54
+ - **📬 Delivery confirmation** — checkmarks for sent, delivered, and executed
55
+ - **🧠 Multi-agent** — Claude Code, Gemini CLI, and Codex CLI sessions in one app, side-by-side
56
+ - **🔒 End-to-end encrypted** — AES-256-GCM; your prompts never pass through a server that can read them
57
+ - **📡 Offline queue** — messages queue when offline, auto-send on reconnect
58
+ - **🔓 Locked-screen support** — works even when your computer screen is locked, via tmux
41
59
 
42
- ## Features
60
+ ## Requirements
61
+
62
+ - **macOS, Linux, or WSL Ubuntu** — Windows without WSL is not supported
63
+ - **Node.js** 18.0.0+
64
+ - **tmux** — `brew install tmux` on macOS, `apt install tmux` on Linux/WSL
65
+ - A mobile phone with iOS 17+ or Android 8+
66
+
67
+ ## Why CodeVibe
68
+
69
+ Long-running agents (Claude Code, Gemini CLI, Codex CLI) need human-in-the-loop approvals for file edits, shell commands, and policy-sensitive actions. When you step away from your desk, those approvals block your agent indefinitely. CodeVibe moves the approval to your phone — same options, same semantics, with the bonus of voice prompts and image attachments from anywhere.
70
+
71
+ It's not a chat app. It's a remote control for the coding agents you already use.
72
+
73
+ ## Support
74
+
75
+ - **Email:** support@quantiya.ai
76
+ - **Landing page:** [quantiya.ai/codevibe](https://quantiya.ai/codevibe)
77
+ - **Privacy policy:** [quantiya.ai/privacy](https://quantiya.ai/privacy)
78
+ - **Terms of service:** [quantiya.ai/terms](https://quantiya.ai/terms)
79
+
80
+ ## Mobile apps
81
+
82
+ - **iOS:** [App Store](https://apps.apple.com/app/id6756500217)
83
+ - **Android:** [Google Play](https://play.google.com/store/apps/details?id=ai.quantiya.app.codevibe)
84
+
85
+ ## What this package contains
86
+
87
+ `@quantiya/codevibe` is a meta-package that installs:
88
+
89
+ - The `codevibe` CLI (login, logout, update, status)
90
+ - Wrapper binaries: `codevibe-claude`, `codevibe-gemini`, `codevibe-codex`
91
+ - All three plugin packages as dependencies:
92
+ - [`@quantiya/codevibe-claude-plugin`](https://www.npmjs.com/package/@quantiya/codevibe-claude-plugin)
93
+ - [`@quantiya/codevibe-gemini-plugin`](https://www.npmjs.com/package/@quantiya/codevibe-gemini-plugin)
94
+ - [`@quantiya/codevibe-codex-plugin`](https://www.npmjs.com/package/@quantiya/codevibe-codex-plugin)
95
+ - The shared [`@quantiya/codevibe-core`](https://www.npmjs.com/package/@quantiya/codevibe-core) library
43
96
 
44
- - **Real-time sync** See responses, tool usage, and file changes on your phone (~100-500ms latency)
45
- - **Mobile approval** — Approve or reject tool permissions remotely with full file diff preview
46
- - **Send prompts** — Type or dictate prompts from your phone
47
- - **Voice input** — Speech-to-text with live transcription
48
- - **Image attachments** — Send screenshots or photos alongside messages
49
- - **Push notifications** — Get notified when your agent needs attention
50
- - **Delivery status** — Checkmarks: sent, delivered, and executed confirmations
51
- - **Multi-agent** — Claude Code, Gemini CLI, and Codex CLI from one app
52
- - **E2E encrypted** — AES-256-GCM encryption for all content
53
- - **Offline queue** — Messages queue when offline, send on reconnect
54
-
55
- ## Links
56
-
57
- - [Landing Page](https://quantiya.ai/codevibe)
58
- - [Android — Google Play](https://play.google.com/store/apps/details?id=ai.quantiya.app.codevibe)
59
- - [iOS — App Store](https://apps.apple.com/app/id6756500217)
97
+ You install this one package; it pulls in everything else.
60
98
 
61
99
  ## License
62
100
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@quantiya/codevibe",
3
- "version": "1.0.6",
4
- "description": "CodeVibe - Monitor and control AI coding agents (Claude Code, Gemini CLI, Codex CLI) from your mobile device",
3
+ "version": "1.0.8",
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",
7
7
  "codevibe-claude": "./bin/codevibe-claude",
@@ -15,28 +15,33 @@
15
15
  ],
16
16
  "dependencies": {
17
17
  "@quantiya/codevibe-core": "^1.0.3",
18
- "@quantiya/codevibe-claude-plugin": "^1.0.9",
19
- "@quantiya/codevibe-gemini-plugin": "^1.0.5",
20
- "@quantiya/codevibe-codex-plugin": "^1.0.6"
18
+ "@quantiya/codevibe-claude-plugin": "^1.0.11",
19
+ "@quantiya/codevibe-gemini-plugin": "^1.0.6",
20
+ "@quantiya/codevibe-codex-plugin": "^1.0.7"
21
21
  },
22
22
  "keywords": [
23
23
  "codevibe",
24
24
  "claude",
25
+ "claude-code",
25
26
  "gemini",
27
+ "gemini-cli",
26
28
  "codex",
29
+ "codex-cli",
30
+ "anthropic",
31
+ "openai",
32
+ "google",
27
33
  "ai",
28
34
  "coding",
29
35
  "mobile",
30
- "companion"
36
+ "ios",
37
+ "android",
38
+ "companion",
39
+ "developer-tools"
31
40
  ],
32
41
  "author": "Quantiya LLC",
33
42
  "license": "MIT",
34
- "repository": {
35
- "type": "git",
36
- "url": "git+https://github.com/hendryyeh/quantiya-codevibe.git"
37
- },
38
43
  "homepage": "https://quantiya.ai/codevibe",
39
44
  "bugs": {
40
- "url": "https://github.com/hendryyeh/quantiya-codevibe/issues"
45
+ "email": "support@quantiya.ai"
41
46
  }
42
47
  }