🎯

gemini-system

🎯Skill

from del-taiseiozaki/claude-code-orchestra

VibeIndex|
What it does

Proactively researches and analyzes complex topics using Gemini's 1M token context, multimodal capabilities, and Google Search integration.

📦

Part of

del-taiseiozaki/claude-code-orchestra(13 items)

gemini-system

Installation

git cloneClone repository
git clone --depth 1 https://github.com/DeL-TaiseiOzaki/claude-code-orchestra.git .starter && cp -r .starter/.claude .starter/.codex .starter/.gemini .starter/CLAUDE.md . && rm -rf .starter && claude
npm installInstall npm package
npm install -g @anthropic-ai/claude-code
npm installInstall npm package
npm install -g @openai/codex
npm installInstall npm package
npm install -g @google/gemini-cli
uv runRun with uv
uv run pytest -v

+ 1 more commands

📖 Extracted from docs: del-taiseiozaki/claude-code-orchestra
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

|

Overview

# Gemini System — Research & Multimodal Specialist

Gemini CLI (gemini-3-pro-preview) is your research specialist with 1M token context.

> 詳細ルール: .claude/rules/gemini-delegation.md

Context Management (CRITICAL)

サブエージェント経由を推奨。 Gemini出力は大きくなりがちなため。

| 状況 | 方法 |

|------|------|

| コードベース分析 | サブエージェント経由(推奨) |

| ライブラリ調査 | サブエージェント経由(推奨) |

| マルチモーダル | サブエージェント経由(推奨) |

| 短い質問 (1-2文回答) | 直接呼び出しOK |

Gemini vs Codex

| Task | Gemini | Codex |

|------|--------|-------|

| リポジトリ全体理解 | ✓ | |

| ライブラリ調査 | ✓ | |

| マルチモーダル (PDF/動画/音声) | ✓ | |

| 最新ドキュメント検索 | ✓ | |

| 設計判断 | | ✓ |

| デバッグ | | ✓ |

| コード実装 | | ✓ |

When to Consult (MUST)

| Situation | Trigger Examples |

|-----------|------------------|

| Research | 「調べて」「リサーチ」 / "Research" "Investigate" |

| Library docs | 「ライブラリ」「ドキュメント」 / "Library" "Docs" |

| Codebase analysis | 「コードベース全体」 / "Entire codebase" |

| Multimodal | 「PDF」「動画」「音声」 / "PDF" "Video" "Audio" |

When NOT to Consult

  • Design decisions (use Codex)
  • Debugging (use Codex)
  • Code implementation (use Codex)
  • Simple file operations (do directly)

How to Consult

Recommended: Subagent Pattern

Use Task tool with subagent_type='general-purpose' to preserve main context.

```

Task tool parameters:

  • subagent_type: "general-purpose"
  • run_in_background: true (optional, for parallel work)
  • prompt: |

Research: {topic}

gemini -p "{research question}" 2>/dev/null

Save full output to: .claude/docs/research/{topic}.md

Return CONCISE summary (5-7 bullet points).

```

Direct Call (Short Questions Only)

For quick questions expecting brief answers:

```bash

gemini -p "Brief question" 2>/dev/null

```

CLI Options Reference

```bash

# Codebase analysis

gemini -p "{question}" --include-directories . 2>/dev/null

# Multimodal (PDF/video/audio)

gemini -p "{prompt}" < /path/to/file.pdf 2>/dev/null

# JSON output

gemini -p "{question}" --output-format json 2>/dev/null

```

Workflow (Subagent)

  1. Spawn subagent with Gemini research prompt
  2. Continue your work → Subagent runs in parallel
  3. Receive summary → Subagent returns key findings
  4. Full output saved.claude/docs/research/{topic}.md

Language Protocol

  1. Ask Gemini in English
  2. Receive response in English
  3. Synthesize and apply findings
  4. Report to user in Japanese

Output Location

Save Gemini research results to:

```

.claude/docs/research/{topic}.md

```

This allows Claude and Codex to reference the research later.

Task Templates

Pre-Implementation Research

```bash

gemini -p "Research best practices for {feature} in Python 2025.

Include:

  • Common patterns and anti-patterns
  • Library recommendations (with comparison)
  • Performance considerations
  • Security concerns
  • Code examples" 2>/dev/null

```

Repository Analysis

```bash

gemini -p "Analyze this repository:

  1. Architecture overview
  2. Key modules and responsibilities
  3. Data flow between components
  4. Entry points and extension points
  5. Existing patterns to follow" --include-directories . 2>/dev/null

```

Library Research

See: references/lib-research-task.md

Multimodal Analysis

```bash

# Video

gemini -p "Analyze video: main concepts, key points, timestamps" < tutorial.mp4 2>/dev/null

# PDF

gemini -p "Extract: API specs, examples, constraints" < api-docs.pdf 2>/dev/null

# Audio

gemini -p "Transcribe and summarize: decisions, action items" < meeting.mp3 2>/dev/null

```

Integration with Codex

| Workflow | Steps |

|----------|-------|

| New feature | Gemini research → Codex design review |

| Library choice | Gemini comparison → Codex decision |

| Bug investigation | Gemini codebase search → Codex debug |

Why Gemini?

  • 1M token context: Entire repositories at once
  • Google Search: Latest information and docs
  • Multimodal: Native PDF/video/audio processing
  • Fast exploration: Quick overview before deep work
  • Shared context: Results saved for Claude/Codex

More from this repository10

🎯
update-lib-docs🎯Skill

Automatically updates library documentation in .claude/docs/libraries/ by searching web for latest version, features, and changes.

🎯
startproject🎯Skill

Kickstart new software projects with multi-agent collaboration, guiding requirements, design review, and quality assurance across research, planning, and implementation phases.

🎯
design-tracker🎯Skill

Proactively tracks and documents project design decisions, automatically recording architecture discussions, implementation choices, and technical decisions in a structured design log.

🎯
research-lib🎯Skill

I apologize, but I cannot generate a description without seeing the actual content or context of the "research-lib" skill. Could you provide more details about what this specific skill does in the ...

🎯
init🎯Skill

Initializes project configuration by analyzing tech stack, generating project overview, and updating AGENTS.md with detected settings and commands.

🎯
tdd🎯Skill

I apologize, but I cannot generate a description without seeing the actual content or context of the "tdd" skill in the repository. Could you provide more details about what the skill does, its pur...

🎯
simplify🎯Skill

Simplifies complex code by breaking it down into more readable, modular, and understandable components.

🎯
plan🎯Skill

Generates a comprehensive, step-by-step implementation plan for software features, breaking down requirements, steps, and potential risks.

🎯
update-design🎯Skill

Explicitly updates the project's DESIGN.md with key decisions and implementation details from the current conversation.

🎯
context-loader🎯Skill

Loads and manages project-specific context and configuration details for Claude Code agents, enabling efficient context preservation and task delegation across different project environments.