gemini-delegation

Solid

Gemini CLI delegation workflow implementing delegation-core for Google's

AI & Automation 297 stars 27 forks Updated today MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
82
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
77
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

## Table of Contents - [Overview](#overview) - [When to Use](#when-to-use) - [Prerequisites](#prerequisites) - [Quick Start](#quick-start) - [Gemini-Specific Details](#gemini-specific-details) # Gemini CLI Delegation ## Overview This skill implements `conjure:delegation-core` for the Gemini CLI. It provides Gemini-specific authentication, quota management, and command construction. For shared delegation patterns, see `Skill(conjure:delegation-core)`. ## When To Use - After `Skill(conjure:delegation-core)` determines Gemini is suitable - When you need Gemini's large context window (1M+ tokens) - For batch processing, summarization, or pattern extraction tasks - If the `gemini` CLI is installed and authenticated ## Prerequisites **Installation:** ```bash # Verify installation gemini --version # Check authentication gemini auth status # Login if needed gemini auth login # Or set API key export GEMINI_API_KEY="your-key" ``` **Verification:** Run the command with `--help` flag to verify availability. ## Quick Start ### Basic Command ```bash # File analysis gemini -p "@path/to/file Analyze this code" # Multiple files gemini -p "@src/**/*.py Summarize these files" # With specific model gemini --model gemini-2.5-pro-exp -p "..." # JSON output gemini --output-format json -p "..." ``` ### Save Output ```bash gemini -p "..." > delegations/gemini/$(date +%Y%m%d_%H%M%S).md ``` ## Gemini-Specific Details For Gemini-specific models, CLI options, cost reference, and trou...

Details

Author
athola
Repository
athola/claude-night-market
Created
6 months ago
Last Updated
today
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

gemini

Provides Gemini CLI delegation workflows for large-context analysis tasks, including English prompt formulation, execution flags, and safe result handling. Use when the user explicitly asks to use Gemini for a specific task such as broad codebase analysis or long-document processing. Triggers on "use gemini", "delegate to gemini", "run gemini cli", "ask gemini", "use gemini for this task".

263 Updated 1 weeks ago
giuseppe-trisciuoglio
AI & Automation Listed

gemini-cli

Wield Google's Gemini CLI as a powerful auxiliary tool for code generation, review, analysis, and web research. Use when tasks benefit from a second AI perspective, current web information via Google Search, codebase architecture analysis, or parallel code generation. Also use when user explicitly requests Gemini operations.

3 Updated today
Junayedahmedd
AI & Automation Listed

gemini

Delegate tasks or get a second opinion from Gemini CLI. Infers mode (delegation vs validation) from prompt context. Detects available models at runtime via the CLI. Use when cross-validating code, plans, or architecture with Gemini CLI, or offloading work to it. Do not use when already running inside Gemini CLI or for tasks that do not benefit from cross-model input.

1 Updated 6 days ago
darshitpp
AI & Automation Listed

handoff-gemini

Delegate tasks to Gemini CLI to save Claude context

69 Updated 2 months ago
claude-world
Code & Development Listed

collaborating-with-gemini-cli

Delegates code review, debugging, and alternative implementation comparisons to Google Gemini CLI (`gemini`) via a JSON bridge script (default model: `gemini-3-pro-preview`). Supports headless one-shot and multi-turn sessions via `SESSION_ID`, with conservative defaults for Gemini effective-context constraints (file-scoped, `--no-full-access` by default) while allowing user override.

43 Updated 3 months ago
diegosouzapw