@quantiya/codevibe 1.0.4 → 1.0.5

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 +33 -55
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,84 +1,62 @@
1
1
  # CodeVibe
2
2
 
3
- Monitor and control AI coding agents from your mobile device.
3
+ Monitor and control AI coding agents from your phone.
4
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.
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.
6
6
 
7
- ## Install
7
+ ## Quick Install
8
8
 
9
9
  ```bash
10
- npm install -g @quantiya/codevibe
11
- ```
12
-
13
- This installs wrapper commands for all three agents:
14
- - `codevibe-claude` — Claude Code integration
15
- - `codevibe-gemini` — Gemini CLI integration
16
- - `codevibe-codex` — Codex CLI integration
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
10
+ curl -fsSL https://quantiya.ai/codevibe/install.sh | bash
25
11
  ```
26
12
 
27
- This registers the CodeVibe MCP server with Claude Code. You only need to do this once.
28
-
29
- ### Install individual plugins
13
+ This installs everything automatically: Node.js, tmux, Claude Code, CodeVibe, and the Claude plugin.
30
14
 
31
- If you only use specific agents:
15
+ ### Manual Install
32
16
 
33
17
  ```bash
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
18
+ 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
+ codevibe login
37
22
  ```
38
23
 
39
- ## Quick Start
24
+ ## Commands
40
25
 
41
26
  ```bash
42
- # 1. Sign in (opens browser — Apple or Google)
43
- codevibe-claude login
44
-
45
- # 2. Start coding — session syncs to your phone
46
- codevibe-claude
27
+ codevibe login # Sign in with Apple or Google
28
+ codevibe status # Show auth status
29
+ codevibe update # Update all packages + Claude plugin
30
+ codevibe version # Show installed versions
31
+ codevibe --help # Show all commands
47
32
  ```
48
33
 
49
- Same pattern for Gemini and Codex:
34
+ ### Agent Wrappers
50
35
 
51
36
  ```bash
52
- codevibe-gemini login && codevibe-gemini
53
- codevibe-codex login && codevibe-codex
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
54
40
  ```
55
41
 
56
42
  ## Features
57
43
 
58
- **Real-time sync** — See assistant responses, tool usage, and file changes on your phone as they happen (~100-500ms latency)
59
-
60
- **Mobile approval** — Approve or reject tool permissions remotely. View full file diffs with syntax highlighting before approving changes
61
-
62
- **Send prompts** — Type or dictate prompts from your phone that execute immediately on desktop
63
-
64
- **Voice messages** — Tap the microphone to dictate prompts with real-time speech-to-text transcription
65
-
66
- **Image attachments** — Send screenshots or photos from your camera or photo library alongside your messages
67
-
68
- **Push notifications** — Get notified when your agent needs attention, with deep linking to the relevant session
69
-
70
- **Delivery status** — WhatsApp-style checkmarks: sent, delivered, and executed confirmations
71
-
72
- **Multi-agent** — Run Claude Code, Gemini CLI, and Codex CLI sessions simultaneously, each clearly labeled in the app
73
-
74
- **End-to-end encryption** — All messages encrypted with AES-256-GCM. Your code stays private
75
-
76
- **Offline queue** — Messages queue automatically when offline and send when connection restores
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
77
54
 
78
55
  ## Links
79
56
 
80
- - [iOS App](https://apps.apple.com/app/id6740641420)
81
- - [Website](https://quantiya.ai/codevibe)
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)
82
60
 
83
61
  ## License
84
62
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantiya/codevibe",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
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",
@@ -14,10 +14,10 @@
14
14
  "LICENSE"
15
15
  ],
16
16
  "dependencies": {
17
- "@quantiya/codevibe-core": "^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"
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"
21
21
  },
22
22
  "keywords": [
23
23
  "codevibe",