How this command is triggered — by the user, by Claude, or both
Slash command
/gemini:plan <description of what to plan>This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
Generate an implementation plan using Google Gemini. Gemini has a built-in plan mode that analyzes the codebase and produces a structured plan for the requested change. Raw slash-command arguments: `$ARGUMENTS` Argument handling: - If no arguments are provided, use `AskUserQuestion` exactly once to ask what the user wants planned. - The user may provide a feature description, bug reference, or refactoring goal. - If file paths are mentioned, use `Read` to load them as additional context. Execution flow: 1. Gather context: - If the user references specific files, read them for context....
Generate an implementation plan using Google Gemini. Gemini has a built-in plan mode that analyzes the codebase and produces a structured plan for the requested change.
Raw slash-command arguments:
$ARGUMENTS
Argument handling:
AskUserQuestion exactly once to ask what the user wants planned.Read to load them as additional context.Execution flow:
Glob and Grep to locate relevant files.git status --short to understand the current working-tree state.node "${CLAUDE_PLUGIN_ROOT}/scripts/gemini-companion.mjs" task --prompt "/plan $ARGUMENTS" --context-from-stdin
/plan prefix activates Gemini's internal plan mode.node "${CLAUDE_PLUGIN_ROOT}/scripts/gemini-companion.mjs" task --prompt "/plan $ARGUMENTS"
Error handling:
/gemini:setup.npx claudepluginhub bsmi021/ai-plugins-cc --plugin gemini/planCreates a step-by-step implementation plan from requirements or a PRD markdown file, then waits for user confirmation before any code changes.
/planBreaks project into small verifiable tasks with acceptance criteria, dependencies, checkpoints. Reads spec/codebase, presents plan for review, saves to tasks/plan.md and tasks/todo.md.
/planStarts Manus-style file-based planning: creates task_plan.md, findings.md, progress.md if missing, invokes planning skill, and guides through workflow.
/planInteractively builds Goal, Scope, Metric, and Verify command for an autoresearch run from provided goal description.
/planRestates requirements, assesses risks, creates step-by-step implementation plan with phases, dependencies, complexity estimates, and waits for user confirmation.
/planCaptures user intent, analyzes requirements, and generates a weighted execution plan saved to .claude/session-plan.md. Does not execute — plans are saved for review or later execution via /octo:embrace.