gemini
- Repo stars 0
- Author repo skills-registry
Gemini Smart Delegation Skill
Route tasks to Google's Gemini CLI (1M token context window) intelligently. The key behavior: always evaluate FIRST, then decide — never start a big task without checking.
Step 1: Read the Experience Log
Before doing anything else, read the experience log:
cat ~/.claude/skills/gemini/experience.md
The log contains:
[AUTO_APPROVE]entries — task types to always send to Gemini, no prompt needed[AVOID]entries — task types where Gemini underperformed, handle with Claude instead
Step 2: Score the Task
Strong Gemini signals (+2 each)
- Files involved are likely >50KB total (codebase scan, large logs, big documents)
- Task is purely read/analysis — no file editing needed
- Task matches an
[AUTO_APPROVE]pattern in experience.md - User explicitly says "use gemini", "ask gemini", "let gemini handle"
Mild Gemini signals (+1 each)
- Multiple files need to be read and cross-referenced
- Task involves summarization or extraction from long content
- Token conservation would meaningfully benefit the conversation
Disqualifiers (skip Gemini entirely)
- Task matches an
[AVOID]pattern in experience.md → handle with Claude, mention why - Task requires writing or editing files
- Task requires iterative tool-use loops
- Task is short and simple
Step 3: Decision Branch
Score >= 2 AND matches an [AUTO_APPROVE] pattern:
→ Go straight to Gemini — skip the question → Briefly note: "Routing to Gemini (auto-approved: [pattern name])"
Score >= 2 but NO prior auto-approve for this pattern:
→ Use AskUserQuestion with this exact structure:
Question: "This task looks like a good fit for Gemini (large context / token savings). How should I handle it?"
Header: "Route to Gemini?"
Options:
1. label: "Use Gemini & remember this task type"
description: "Delegate to Gemini now, and auto-route similar tasks in the future without asking"
2. label: "Use Gemini, just this once"
description: "Delegate to Gemini now, but ask again next time"
3. label: "Claude handles it"
description: "Skip Gemini for this task"
Score < 2:
→ Handle with Claude normally, no question needed
Step 4: After the User Chooses
Option 1 — "Use Gemini & remember this task type":
- Append an
[AUTO_APPROVE]entry to experience.md (format below) - Run Gemini
- Present output labeled
[Gemini Response]
Option 2 — "Use Gemini, just this once":
- Run Gemini
- Present output labeled
[Gemini Response] - Do NOT write to experience.md
Option 3 — "Claude handles it":
- Handle with Claude normally
- Do NOT write to experience.md
Step 5: Running Gemini
Standard headless call
gemini -p "COMPLETE SELF-CONTAINED PROMPT" --output-format text --yolo 2>&1
Pipe large file content
cat /path/to/large/file | gemini -p "YOUR INSTRUCTION" --output-format text --yolo 2>&1
Multi-file analysis
gemini -p "$(printf 'Analyze these files:\n\n=== file1 ===\n'; cat file1; printf '\n\n=== file2 ===\n'; cat file2; printf '\n\nTask: YOUR INSTRUCTION')" --output-format text --yolo 2>&1
Important: Gemini headless is single-shot — craft a complete, self-contained prompt with all needed context included.
Step 6: Post-Result Dissatisfaction Detection
After presenting Gemini output, watch the user's next message for dissatisfaction signals:
Signals: "wrong", "not good", "that's off", "redo this", user corrects the output, user asks Claude to redo the same task
When detected:
- Use AskUserQuestion:
Question: "Should I mark this task type as a poor fit for Gemini and handle it with Claude going forward?" Options: - "Yes, log it" — description: "Record this as an [AVOID] pattern" - "No, just this once" — description: "Don't log anything" - If user picks "Yes, log it" → append an
[AVOID]entry to experience.md - If this task type had an existing
[AUTO_APPROVE]entry, update it to[AVOID] - Confirm: "Noted. I'll handle this type of task myself from now on."
Experience Log Entry Formats
AUTO_APPROVE entry
---
### [AUTO_APPROVE] YYYY-MM-DD
**Pattern**: one-line description of the task type (e.g., "Full Go codebase read-only analysis")
**Trigger keywords**: keywords that identify this pattern
**Reason**: why Gemini is well-suited for this
AVOID entry
---
### [AVOID] YYYY-MM-DD
**Pattern**: one-line description of the task type
**What went wrong**: brief failure description from user feedback
**Lesson**: what to do instead next time
Decision Table
| Condition | Action |
|---|---|
| Matches [AUTO_APPROVE] | Go straight to Gemini, no question |
| Matches [AVOID] | Use Claude, explain why |
| Large/complex, no prior record | AskUserQuestion (3 options) |
| Small/simple task | Claude handles, no question |
| User picks "remember this type" | Write AUTO_APPROVE + run Gemini |
| User flags poor result | AskUserQuestion → write AVOID |
<!-- tomevault:4.0:skill_md:2026-05-23 -->Source: audi0417/claude-gemini-router — distributed by TomeVault.
- Fluxly category
- Engineering
- Author-declared agents
- No explicit declaration found; this is not inferred or tested compatibility
- Static check
- 88 / 100 · heuristic scan, not runtime safety proof
- Author / version / license
- @tomevault-io · no license declared
- Fluxly token estimate
- Lean
- Fluxly setup estimate
- Plug-and-play
- External API key
- No requirement detected
- Detected OS requirements
- Unspecified
- Runtime requirements
- Unspecified
- Detected file/system behavior
-
- Read-only
- Write / modify
- Detected network behavior
- Local-only
- Install commands
- None (reference only)
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
# Step 6: Post-Result Dissatisfaction Detection
Question: "Should I mark this task type as a poor fit for Gemini and handle it with Claude going forward?"
Options:
- "Yes, log it" — description: "Record this as an [AVOID] pattern"
- "No, just this once" — description: "Don't log anything" Before doing anything else, read the experience log: The log contains: [AUTOAPPROVE] entries — task types to always send to Gemini, no prompt needed
Step 2: Score the Task
Step 3: Decision Branch
Step 4: After the User Chooses
# Gemini Smart Delegation Skill
Route tasks to Google's Gemini CLI (1M token context window) intelligently. The key behavior:
**always evaluate FIRST, then decide — never start a big task without checking**.
---
## Step 1: Read the Experience Log
Before doing anything else, read the experience log:
```bash
cat ~/.claude/skills/gemini/experience.md
```
The log contains:
- `[AUTO_APPROVE]` entries — task types to always send to Gemini, no prompt needed
- `[AVOID]` entries — task types where Gemini underperformed, handle with Claude instead
---
## Step 2: Score the Task
### Strong Gemini signals (+2 each)
- Files involved are likely >50KB total (codebase scan, large logs, big documents)
- Task is purely read/analysis — no file editing needed
- Task matches an `[AUTO_APPROVE]` pattern in experience.md
- User explicitly says "use gemini", "ask gemini", "let gemini handle"
### Mild Gemini signals (+1 each)
- Multiple files need to be read and cross-referenced
- Task involves summarization or extraction from long content
- Token conservation would meaningfully benefit the conversation
### Disqualifiers (skip Gemini entirely)
- Task matches an `[AVOID]` pattern in experience.md → handle with Claude, mention why
- Task requires writing or editing files
- Task requires iterative tool-use loops
- Task is short and simple
---
## Step 3: Decision Branch
### Score >= 2 AND matches an [AUTO_APPROVE] pattern:
→ **Go straight to Gemini** — skip the question
→ Briefly note: "Routing to Gemini (auto-approved: [pattern name])"
### Score >= 2 but NO prior auto-approve for this pattern:
→ **Use AskUserQuestion** with this exact structure:
```
Question: "This task looks like a good fit for Gemini (large context / token savings). How should I handle it?"
… Author text anchors workflow facts; Fluxly only indexes current sections, terms, files, and commands.
sections -> Step 1: Read the Experience Log → Step 2: Score the Task → Strong Gemini signals (+2 each) → Mild Gemini signals (+1 each) → Disqualifiers (skip Gemini entirely) → Step 3: Decision Branch
terms -> always evaluate FIRST, then decide — never start a big task without checking · Go straight to Gemini · Use AskUserQuestion · Important · single-shot · Signals · When detected · Pattern
files/cmd -> [AUTOAPPROVE] · [AVOID] · [Gemini Response] · .claude/skills/gemini/experience.md · read/analysis · experience.md · path/to/large/file · Large/complex
body sha256 -> 0832dd8ddd04
Decide Fit First
Design Intent
How To Use It
Boundaries And Review