Babysitter hotfix-triage
Urgent issue classification, root cause analysis, and fast-path routing for production hotfixes
install
source · Clone the upstream repo
git clone https://github.com/a5c-ai/babysitter
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/a5c-ai/babysitter "$T" && mkdir -p ~/.claude/skills && cp -r "$T/library/methodologies/maestro/skills/hotfix-triage" ~/.claude/skills/a5c-ai-babysitter-hotfix-triage && rm -rf "$T"
manifest:
library/methodologies/maestro/skills/hotfix-triage/SKILL.mdsource content
Hotfix Triage
Capabilities
Rapidly classifies production issues by severity, locates root causes from logs and stack traces, and routes to the appropriate fix path. Simple fixes skip planning entirely for maximum speed.
Tool Use Instructions
- Use Read to examine log files and error reports
- Use Grep to search for error patterns and stack trace references in code
- Use Glob to find affected source files
- Use Bash to reproduce issues and check system state
- Use Write to generate triage reports
Process Integration
- Used in
(Triage and Root Cause)maestro-hotfix.js - Agent: Hotfix Specialist
- Severity levels: critical (immediate), high (same-day), medium (next-sprint)
- Simple fixes skip planning phase
- High-risk fixes require human approval breakpoint