Help us improve
Share bugs, ideas, or general feedback.
From conjure
Delegates code tasks to Gemini CLI for large-context (1M+ tokens) analysis and batch processing after delegation-core selects Gemini models. Handles auth, quota checks, execution, and logging.
npx claudepluginhub athola/claude-night-market --plugin conjureHow this skill is triggered — by the user, by Claude, or both
Slash command
/conjure:gemini-delegationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [Overview](#overview)
Delegates 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'.
Provides decision criteria, execution patterns, and handling for delegating tasks from Claude to Gemini CLI. Use for cross-agent optimization, risky commands, or TUI needs.
Delegates tasks like long document analysis, multimodal processing, research, summarization, and large file handling to Google Gemini CLI to preserve Claude context.
Share bugs, ideas, or general feedback.
This 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"
Verification: Run the command with --help flag to verify availability.
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 "..."
Verification: Run the command with --help flag to verify availability.
gemini -p "..." > delegations/gemini/$(date +%Y%m%d_%H%M%S).md
Verification: Run the command with --help flag to verify availability.
This skill uses shared modules from delegation-core:
delegation-core/../../leyline/skills/authentication-patterns/SKILL.mddelegation-core/../../leyline/skills/quota-management/SKILL.mddelegation-core/../../leyline/skills/usage-logging/SKILL.mddelegation-core/../../leyline/skills/error-patterns/SKILL.mdFor Gemini-specific models, CLI options, cost reference, and troubleshooting, see modules/gemini-specifics.md.