From cli-wrapper
Wrapped access to Gemini CLI. Captures gemini --help, caches subcommands, validates flags, post-processes output. Use for ANY Gemini CLI invocation from Claude Code or other harnesses. Saves ~85% tokens vs raw gemini output.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cli-wrapper:gemini-cliThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Wrapped Gemini CLI access. Digest-driven, token-optimized.
Wrapped Gemini CLI access. Digest-driven, token-optimized.
/gemini-cli invoke <args> — run gemini command with validated flags
/gemini-cli explain <cmd> — show what a gemini subcommand does
/gemini-cli audit — token savings report
/gemini-cli wrap — rebuild digest from live gemini --help
Gemini CLI help output ~4KB+. Digest = ~350 bytes. 91% savings.
| Phase | Raw | Wrapped |
|---|---|---|
| Discovery | 4.1KB | 0.35KB |
| Invocation | variable | filtered + deduped |
| Flag validation | trial/error | first-try via digest |
/gemini-cli invoke --version
/gemini-cli invoke config list
/gemini-cli invoke extensions list
/gemini-cli invoke agent run <name>
.claude/cli-wrappers/gemini.json — auto-refreshed on /gemini-cli wrap
When Claude Code delegates to Gemini CLI, always use this wrapper.
The wrapper agent gemini-cli handles the full delegation lifecycle.
npx claudepluginhub andersonlimahw/lemon-ai-hub --plugin cli-wrapperDelegates tasks to Gemini CLI for large-context analysis like broad codebase reviews or long-document processing. Activates on explicit requests such as 'use gemini' or 'delegate to gemini'.
Runs Google's Gemini CLI for code generation, review, analysis, web research via Google Search, and codebase architecture investigation. Use for second AI opinions, real-time web data, or parallel code tasks.
Invokes Gemini CLI for one-shot Q&A, summaries, text generation, and JSON output. Use for quick, non-interactive AI queries in development sessions.