AI Summarybug-start automates the end-to-end debugging workflow from root cause analysis to pull request creation, helping developers quickly identify and fix bugs with minimal manual intervention.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "bug-start" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (7 files) mkdir -p .claude/skills/commands && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/SKILL.md "https://raw.githubusercontent.com/ParkerRex/tec-claude-code-agents/dev/.claude/commands/bug-start.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/bug-implement.md "https://raw.githubusercontent.com/ParkerRex/tec-claude-code-agents/dev/.claude/commands/bug-implement.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/bug-rca.md "https://raw.githubusercontent.com/ParkerRex/tec-claude-code-agents/dev/.claude/commands/bug-rca.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/bug-solution.md "https://raw.githubusercontent.com/ParkerRex/tec-claude-code-agents/dev/.claude/commands/bug-solution.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/feat-resume.md "https://raw.githubusercontent.com/ParkerRex/tec-claude-code-agents/dev/.claude/commands/feat-resume.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/feat-status.md "https://raw.githubusercontent.com/ParkerRex/tec-claude-code-agents/dev/.claude/commands/feat-status.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/feature-start.md "https://raw.githubusercontent.com/ParkerRex/tec-claude-code-agents/dev/.claude/commands/feature-start.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Automated end-to-end debugging workflow from RCA to PR creation
Command Usage
`bash /bug-start <problem-report> <bug-name> [--auto] ` Examples: `bash /bug-start "Users are getting logged out unexpectedly after 5 minutes" auth-token-expiry /bug-start "Payment processing fails intermittently during high load" payment-race-condition --auto /bug-start "API returns 500 errors when database connection pool is exhausted" db-pool-exhaustion `
Workflow Overview
` User → /bug-start command → bug-orchestrator-agent ↓ bug-rca-agent ↓ [intervention point] ↓ bug-solution-agent ↓ [intervention point] ↓ bug-implement-agent ↓ [intervention point] ↓ Post-processing hooks: • biome lint/format • run tests • create branch & commit • push & create PR • generate PR description • update CHANGELOG • notify user `
Your Mission
Launch the debug orchestrator agent and manage the workflow based on configuration.
Step 1: Load Configuration
Read configuration from .claude/bug-config.json. If not found, use defaults.
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster