@quantiya/codevibe-antigravity-plugin 2.0.6 → 2.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.
package/.env.example CHANGED
@@ -1,7 +1,7 @@
1
- # Gemini Companion Plugin Configuration
1
+ # CodeVibe Antigravity Companion Plugin Configuration
2
2
  # ======================================
3
3
  # NOTE: You typically don't need to edit this file manually.
4
- # Configuration is auto-set after running 'codevibe-gemini login'.
4
+ # Configuration is auto-set after running 'codevibe login'.
5
5
  #
6
6
  # Copy this file to .env.production or .env.development and fill in values.
7
7
 
@@ -19,10 +19,11 @@ COGNITO_USER_POOL_ID=us-east-1_xxxxxxxxx
19
19
  COGNITO_CLIENT_ID=xxxxxxxxxxxxxxxxxxxxxxxxxx
20
20
  COGNITO_DOMAIN=your-domain.auth.us-east-1.amazoncognito.com
21
21
 
22
- # Gemini Configuration
23
- GEMINI_COMMAND=gemini
24
- GEMINI_TIMEOUT=60000
22
+ # Antigravity CLI Configuration
23
+ # Optional absolute path to an executable agy binary. Invalid values fall back
24
+ # to an executable agy found on PATH.
25
+ # AGY_PATH=/absolute/path/to/agy
25
26
 
26
27
  # Logging Configuration
27
- LOG_FILE=/tmp/codevibe-gemini-mcp.log
28
+ LOG_FILE=/tmp/codevibe-agy-mcp.log
28
29
  LOG_LEVEL=info
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  **Control Google Antigravity CLI from your iPhone and Android.** See your agent's work, approve file edits, dictate prompts by voice — all from your phone, anywhere you are.
4
4
 
5
- 🌐 **[quantiya.ai/codevibe](https://quantiya.ai/codevibe)** — landing page, demo video, and one-liner installer
5
+ 🌐 **[quantiya.ai/codevibe](https://quantiya.ai/codevibe)** — landing page, demo video, and stable 1.x installer
6
6
 
7
7
  📱 **[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)**
8
8
 
@@ -19,38 +19,35 @@
19
19
  - **🔔 Push notifications** — get notified when your agent needs input
20
20
  - **🔒 End-to-end encrypted** — AES-256-GCM with ECDH key exchange
21
21
  - **🔓 Locked screen support** — works even when your computer screen is locked (via tmux)
22
- - **🧠 Multi-agent ready** — Antigravity sessions appear alongside Claude, Gemini, and Codex sessions in the same app
22
+ - **🧠 Multi-agent ready** — Antigravity sessions appear alongside Claude and Codex sessions in the same app
23
23
 
24
- ## Install in 30 seconds
24
+ ## Install the 2.x candidate
25
25
 
26
26
  ```bash
27
- curl -fsSL https://quantiya.ai/codevibe/install.sh | bash
28
- ```
29
-
30
- Download the **[iOS app](https://apps.apple.com/app/id6756500217)** or **[Android app](https://play.google.com/store/apps/details?id=ai.quantiya.app.codevibe)**, sign in with the same Apple or Google account, and run:
31
-
32
- ```bash
33
- codevibe-agy
27
+ npm install -g @quantiya/codevibe@next
28
+ codevibe login
29
+ codevibe --agent agy
34
30
  ```
35
31
 
36
- Your session appears on your phone automatically.
32
+ Install Node.js 22+, tmux, and Antigravity CLI first. Then download the **[iOS app](https://apps.apple.com/app/id6756500217)** or **[Android app](https://play.google.com/store/apps/details?id=ai.quantiya.app.codevibe)** and sign in with the same Apple or Google account. Your session appears on your phone automatically.
37
33
 
38
- ### Manual install
34
+ ### Stable 1.x installer
39
35
 
40
36
  ```bash
41
- npm install -g @quantiya/codevibe
42
- codevibe login
43
- codevibe-agy
37
+ curl -fsSL https://quantiya.ai/codevibe/install.sh | bash
44
38
  ```
45
39
 
40
+ The hosted installer remains on stable 1.x while 2.x is validated. It does not
41
+ install the unified `codevibe --agent` interface yet.
42
+
46
43
  ## Requirements
47
44
 
48
45
  - **macOS, Linux, or WSL Ubuntu** — Windows without WSL is not supported
49
- - **Node.js** 18.0.0+
46
+ - **Node.js** 22.0.0+
50
47
  - **tmux** — `brew install tmux` on macOS, `apt install tmux` on Linux/WSL
51
48
  - **Antigravity CLI (`agy`)** — install from [Google's documentation](https://antigravity.google/docs)
52
49
 
53
- > Antigravity CLI is distributed by Google as a binary; it is not on npm. After installing `agy`, run `codevibe-agy` and the plugin handles the rest.
50
+ > Antigravity CLI is distributed by Google as a binary; it is not on npm. After installing `agy`, run `codevibe --agent agy` and the plugin handles the rest.
54
51
 
55
52
  ## How it works
56
53
 
@@ -70,10 +67,10 @@ A single launch session covers the entire wrapper lifetime, so `/resume` command
70
67
  ## CLI commands
71
68
 
72
69
  ```bash
73
- codevibe-agy # Start agy with mobile sync
74
- codevibe-agy login # Authenticate via browser OAuth
75
- codevibe-agy status # Check auth status
76
- codevibe-agy logout # Sign out
70
+ codevibe --agent agy # Start agy with mobile sync
71
+ codevibe login # Authenticate via browser OAuth
72
+ codevibe status # Check auth status
73
+ codevibe logout # Sign out
77
74
  ```
78
75
 
79
76
  ## Troubleshooting
@@ -104,7 +101,6 @@ codevibe update
104
101
  - **[@quantiya/codevibe](https://www.npmjs.com/package/@quantiya/codevibe)** — meta-package (install this, not this plugin directly)
105
102
  - **[@quantiya/codevibe-core](https://www.npmjs.com/package/@quantiya/codevibe-core)** — shared library used by all plugins
106
103
  - **[@quantiya/codevibe-claude-plugin](https://www.npmjs.com/package/@quantiya/codevibe-claude-plugin)** — Claude Code support
107
- - **[@quantiya/codevibe-gemini-plugin](https://www.npmjs.com/package/@quantiya/codevibe-gemini-plugin)** — Gemini CLI support
108
104
  - **[@quantiya/codevibe-codex-plugin](https://www.npmjs.com/package/@quantiya/codevibe-codex-plugin)** — Codex CLI support
109
105
 
110
106
  ## License