This skill should be used when the user asks to "use gemini", "ask gemini", "gemini review", "have gemini check", "compare with gemini", "gemini build", "both build", "gemini search", "ask gemini about", "plan together", "collaborative plan", "dual AI", or mentions using Gemini CLI as a collaborator.
Enables collaboration with Gemini CLI for reviews, web searches, parallel builds, and joint planning. Triggers when users ask to "use Gemini," "have Gemini review," "both build," "plan together," or mention Gemini as a collaborator.
/plugin marketplace add temasictfic/gemini-collab-plugin/plugin install temasictfic-gemini-collab@temasictfic/gemini-collab-pluginThis skill inherits all available tools. When active, it can use any tool Claude has access to.
examples/usage-examples.mdscripts/gemini-build.ps1scripts/gemini-review.ps1scripts/gemini-search.ps1This skill enables collaboration between Claude and Gemini CLI for enhanced AI-assisted development workflows.
Gemini CLI must be installed and authenticated:
gemini available in PATHUse when the user wants Gemini to review Claude's work.
Triggers: "gemini review", "have gemini check", "get gemini's opinion"
Procedure:
$content = @"
<plan or code content here>
"@
$content | powershell -File "skills/gemini-collab/scripts/gemini-review.ps1"
Direct Bash invocation:
echo "Review this plan critically. Identify issues, missing considerations, and suggest improvements: <content>" | gemini -o text
Use when current/recent information is needed that may be beyond Claude's knowledge.
Triggers: "gemini search", "ask gemini about recent", "gemini web search"
Procedure:
powershell -File "skills/gemini-collab/scripts/gemini-search.ps1" -Query "search query here"
Direct Bash invocation:
gemini "Search for and summarize: <query>" -o text
Use when the user wants both AIs to build the same project for comparison.
Triggers: "both build", "compare builds", "gemini build too", "parallel build"
Procedure:
claude-build/ - Claude's implementationgemini-build/ - Gemini's implementationpowershell -File "skills/gemini-collab/scripts/gemini-build.ps1" -PlanFile "plan.md" -TargetDir "gemini-build" -ApprovalMode "yolo"
claude-build/ simultaneouslyApproval Mode Options:
default - Gemini asks for approval (safer, requires separate terminal)yolo - Auto-approve all actions (faster, autonomous)Direct Bash invocation for Gemini build:
gemini -y "You are building a project. Read the plan and implement it in the gemini-build directory. Plan: <content>" --include-directories ./gemini-build -o text
Use when the user wants both AIs to contribute to planning.
Triggers: "plan together", "collaborative plan", "dual AI planning"
Procedure:
echo "Review this plan. Add missing considerations, suggest alternatives, identify risks: <plan>" | gemini -o text
Reviews content and returns structured feedback.
-Content parameterPerforms web search via Gemini.
-Query - The search queryExecutes autonomous build in specified directory.
-PlanFile - Path to plan file-TargetDir - Build directory-ApprovalMode - default or yolo-o json for structured data when parsing is neededIf Gemini CLI is not available:
$geminiPath = Get-Command gemini -ErrorAction SilentlyContinue
if (-not $geminiPath) {
Write-Error "Gemini CLI not found. Install with: npm install -g @anthropic/gemini-cli"
}
The skill respects user preferences for: