Gemini CLI delegation workflow implementing delegation-core for Google's Gemini models. Triggers: gemini cli, gemini delegation, google gemini, 1M context, large file analysis, gemini batch, gemini summarization, gemini extraction Use when: delegation-core selected Gemini, need Gemini's 1M+ token context window, batch processing or large document summarization required DO NOT use when: deciding which model to use - use delegation-core first. DO NOT use when: gemini CLI not installed or authenticated. Consult this skill when implementing Gemini-specific delegation workflows.
/plugin marketplace add athola/claude-night-market/plugin install conjure@claude-night-marketThis skill inherits all available tools. When active, it can use any tool Claude has access to.
modules/gemini-specifics.mdThis skill implements conjure:delegation-core for the Gemini CLI. It provides Gemini-specific authentication, quota management, and command construction using shared patterns.
Skill(conjure:delegation-core) determines Gemini is suitablegemini CLI is installed and authenticatedInstallation:
# 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"
Implements standard delegation-core flow with Gemini specifics:
gemini-delegation:auth-verified - Verify Gemini authenticationgemini-delegation:quota-checked - Check Gemini API quotagemini-delegation:command-executed - Execute via Gemini CLIgemini-delegation:usage-logged - Log Gemini API usage# 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 "..."
gemini -p "..." > delegations/gemini/$(date +%Y%m%d_%H%M%S).md
This skill uses shared modules from delegation-core:
delegation-core/modules/authentication-patterns.mddelegation-core/modules/quota-management.mddelegation-core/modules/usage-logging.mddelegation-core/modules/error-handling.mdFor Gemini-specific models, CLI options, cost reference, and troubleshooting, see modules/gemini-specifics.md.