agy-plugin-cc 0.6.0 → 0.6.1
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/README.md +44 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,9 @@ Use Google's Antigravity CLI (`agy`) from inside Claude Code: delegate tasks to
|
|
|
4
4
|
|
|
5
5
|
This plugin is for Claude Code users who want an easy way to start using Antigravity from the workflow they already have.
|
|
6
6
|
|
|
7
|
+
> [!NOTE]
|
|
8
|
+
> This is an open-source, third-party community project. It is not affiliated with, endorsed by, or sponsored by Anthropic or Google.
|
|
9
|
+
|
|
7
10
|
## What You Get
|
|
8
11
|
|
|
9
12
|
- `/agy:review` for standard read-only code review
|
|
@@ -287,7 +290,11 @@ Then check in with:
|
|
|
287
290
|
/agy:transfer
|
|
288
291
|
```
|
|
289
292
|
|
|
290
|
-
Then continue in a terminal with
|
|
293
|
+
Then continue in a terminal with:
|
|
294
|
+
|
|
295
|
+
```bash
|
|
296
|
+
agy --conversation <id>
|
|
297
|
+
```
|
|
291
298
|
|
|
292
299
|
## How to Delegate
|
|
293
300
|
|
|
@@ -338,15 +345,38 @@ Job control stays thin too: `/agy:status`, `/agy:result`, and `/agy:cancel` read
|
|
|
338
345
|
## Layout
|
|
339
346
|
|
|
340
347
|
```
|
|
341
|
-
.
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
348
|
+
.
|
|
349
|
+
├── .claude-plugin/
|
|
350
|
+
│ ├── marketplace.json marketplace catalog
|
|
351
|
+
│ └── plugin.json manifest (plugin name: agy)
|
|
352
|
+
├── agents/
|
|
353
|
+
│ └── agy-rescue.md forwarding subagent
|
|
354
|
+
├── commands/
|
|
355
|
+
│ ├── adversarial-review.md
|
|
356
|
+
│ ├── cancel.md
|
|
357
|
+
│ ├── continue.md
|
|
358
|
+
│ ├── quota.md
|
|
359
|
+
│ ├── rescue.md
|
|
360
|
+
│ ├── result.md
|
|
361
|
+
│ ├── review.md
|
|
362
|
+
│ ├── setup.md
|
|
363
|
+
│ ├── status.md
|
|
364
|
+
│ └── transfer.md
|
|
365
|
+
├── hooks/
|
|
366
|
+
│ └── hooks.json Stop hook wiring for the stop-review gate
|
|
367
|
+
├── schemas/
|
|
368
|
+
│ └── review-output.schema.json adversarial review output shape
|
|
369
|
+
├── scripts/
|
|
370
|
+
│ ├── agy-setup.mjs /agy:setup readiness report
|
|
371
|
+
│ ├── npx-install.mjs npx agy-plugin-cc installer
|
|
372
|
+
│ └── stop-review-gate-hook.mjs stop-review gate (dependency-free node)
|
|
373
|
+
├── skills/
|
|
374
|
+
│ ├── agy-cli-runtime/ CLI call contract
|
|
375
|
+
│ └── agy-result-handling/ output presentation rules
|
|
376
|
+
├── CHANGELOG.md
|
|
377
|
+
├── LICENSE
|
|
378
|
+
├── README.md
|
|
379
|
+
└── package.json npm package (agy-plugin-cc) for the npx installer
|
|
350
380
|
```
|
|
351
381
|
|
|
352
382
|
## FAQ
|
|
@@ -355,7 +385,7 @@ package.json npm package (agy-plugin-cc) for the npx installer
|
|
|
355
385
|
|
|
356
386
|
If you are already signed into agy on this machine, that account works immediately here too. This plugin uses your local Antigravity CLI authentication.
|
|
357
387
|
|
|
358
|
-
If you have not used Antigravity yet, install the CLI and run `!agy` once to sign in with your Google account, then run `/agy:setup` to confirm everything is ready.
|
|
388
|
+
If you have not used Antigravity yet, [install the CLI](#install) and run `!agy` once to sign in with your Google account, then run [`/agy:setup`](#agysetup) to confirm everything is ready.
|
|
359
389
|
|
|
360
390
|
### Does the plugin use a separate Antigravity runtime?
|
|
361
391
|
|
|
@@ -363,12 +393,12 @@ No. Every delegation is a call to the same local `agy` binary you would use dire
|
|
|
363
393
|
|
|
364
394
|
### Will it use the same agy settings I already have?
|
|
365
395
|
|
|
366
|
-
Yes. The plugin picks up your existing configuration in `~/.gemini/antigravity-cli/settings.json`, including `permissions.allow` rules. Headless runs auto-deny tools not covered by those rules; `/agy:setup` detects this and shows the fix.
|
|
396
|
+
Yes. The plugin picks up your existing configuration in `~/.gemini/antigravity-cli/settings.json`, including `permissions.allow` rules. Headless runs auto-deny tools not covered by those rules; [`/agy:setup`](#agysetup) detects this and shows the fix.
|
|
367
397
|
|
|
368
398
|
### Does it spend my Antigravity quota?
|
|
369
399
|
|
|
370
|
-
Yes. Delegations, reviews, and stop-review gate runs all contribute to your Antigravity usage limits. `/agy:quota` shows what is left per bucket and is itself quota-free.
|
|
400
|
+
Yes. Delegations, reviews, and stop-review gate runs all contribute to your Antigravity usage limits. [`/agy:quota`](#agyquota) shows what is left per bucket and is itself quota-free.
|
|
371
401
|
|
|
372
402
|
### What does `npx agy-plugin-cc` actually do?
|
|
373
403
|
|
|
374
|
-
It runs `claude plugin marketplace add Eakkapoom-Name/antigravity-plugin-cc` and `claude plugin install agy@antigravity-plugin-cc` through your local `claude` CLI, then points you at `/agy:setup
|
|
404
|
+
It runs `claude plugin marketplace add Eakkapoom-Name/antigravity-plugin-cc` and `claude plugin install agy@antigravity-plugin-cc` through your local `claude` CLI, then points you at [`/agy:setup`](#agysetup). It is safe to rerun. See [Install](#install) for the manual steps.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agy-plugin-cc",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "Installer for the agy Claude Code plugin: use Google's Antigravity CLI (agy) from Claude Code to delegate tasks or review code.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"agy-plugin-cc": "scripts/npx-install.mjs"
|