From cli-wrapper
Wrapped access to Agy CLI (Antigravity). Captures agy --help, caches subcommands, validates flags, post-processes output. Use for ANY Agy CLI invocation from Claude Code or other harnesses. Saves ~85% tokens vs raw agy output.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cli-wrapper:agy-cliThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Wrapped Agy (Antigravity) CLI access. Digest-driven, token-optimized.
Wrapped Agy (Antigravity) CLI access. Digest-driven, token-optimized.
/agy-cli invoke <args> — run agy command with validated flags
/agy-cli explain <cmd> — show what an agy subcommand does
/agy-cli audit — token savings report
/agy-cli wrap — rebuild digest from live agy --help
Agy CLI help output ~3KB+. Digest = ~300 bytes. 90% savings.
| Phase | Raw | Wrapped |
|---|---|---|
| Discovery | 3.0KB | 0.3KB |
| Invocation | variable | filtered + deduped |
| Flag validation | trial/error | first-try via digest |
/agy-cli invoke --version
/agy-cli invoke config list
/agy-cli invoke agent run <name>
.claude/cli-wrappers/agy.json — auto-refreshed on /agy-cli wrap
When Claude Code delegates to Agy, always use this wrapper.
The wrapper agent agy-cli handles the full delegation lifecycle.
npx claudepluginhub andersonlimahw/lemon-ai-hub --plugin cli-wrapperGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.