mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +08:00
2.1 KiB
2.1 KiB
name, description, usage, argument-hint, examples, allowed-tools, model
| name | description | usage | argument-hint | examples | allowed-tools | model | |||
|---|---|---|---|---|---|---|---|---|---|
| bug-index | Bug analysis and fix suggestions using specialized template | /gemini:mode:bug-index "bug description" | description of the bug or error you're experiencing |
|
Bash(gemini:*) | sonnet |
Bug Analysis Command (/gemini:mode:bug-index)
Overview
Systematic bug analysis and fix suggestions using expert diagnostic template.
Directory Analysis Rule: Intelligent detection of directory context intent - automatically navigate to target directory when analysis scope is directory-specific.
--cd Parameter Rule: When --cd parameter is provided, always execute cd [path] && gemini --all-files -p "prompt" to ensure analysis occurs in the specified directory context.
Usage
Basic Bug Analysis
/gemini:mode:bug-index "authentication null pointer error"
Bug Analysis with Directory Context
/gemini:mode:bug-index "authentication error" --cd "src/auth"
Save to Workflow Session
/gemini:mode:bug-index "API timeout issues" --save-session
Command Execution
Template Used: ~/.claude/prompt-templates/bug-fix.md
Executes:
# Basic usage
gemini --all-files -p "$(cat ~/.claude/prompt-templates/bug-fix.md)
Bug Description: [user_description]"
# With --cd parameter
cd [specified_directory] && gemini --all-files -p "$(cat ~/.claude/prompt-templates/bug-fix.md)
Bug Description: [user_description]"
Analysis Focus
The bug-fix template provides:
- Root Cause Analysis: Systematic investigation
- Code Path Tracing: Following execution flow
- Targeted Solutions: Specific, minimal fixes
- Impact Assessment: Understanding side effects
Session Output
saves to:
.workflow/WFS-[topic]/.chat/bug-index-[timestamp].md
Includes:
- Bug description
- Template used
- Analysis results
- Recommended actions