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/planning-with-files/skills/error-logging" ~/.claude/skills/a5c-ai-babysitter-error-logging && rm -rf "$T"
manifest:
library/methodologies/planning-with-files/skills/error-logging/SKILL.mdsource content
Error Logging
Log all errors with full context, detect patterns, and suggest approach mutations to avoid repeated failures.
Agent
Error Analyst -
pwf-error-analyst
Workflow
- Log ALL errors immediately to progress.md (Rule 3)
- Include error context, stack traces, and reproduction steps
- Tag errors with severity: critical, warning, informational
- Analyze error patterns across phases and iterations
- Suggest approach mutations for known failure patterns (Rule 4)
- Track error resolution status for verification
Inputs
- Root path for planning filesprojectPath
- Phase where error occurredphaseName
- Array of error objectserrors
- Previous errors for pattern detectionerrorHistory
Outputs
- Updated progress.md error section
- Approach mutations with alternative strategies
- Error resolution report for verification
Process Files
- Error logging during phasesplanning-orchestrator.js
- Immediate error logging, pattern analysisplanning-execution.js
- Error resolution checkingplanning-verification.js