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/completion-verification" ~/.claude/skills/a5c-ai-babysitter-completion-verification && rm -rf "$T"
manifest:
library/methodologies/planning-with-files/skills/completion-verification/SKILL.mdsource content
Completion Verification
Verify all phases are complete with weighted quality scoring before allowing session exit.
Agent
Completion Verifier -
pwf-completion-verifier
Workflow
- Read all three planning files in parallel
- Parse checkbox completion state from task_plan.md
- Cross-reference plan, findings, and progress for consistency
- Check error resolution status
- Calculate weighted quality score (phases 40%, errors 25%, findings 20%, continuity 15%)
- Generate recommendations if threshold not met
- Write verification report to progress.md
Inputs
- Root path for planning filesprojectPath
- Original task descriptiontaskDescription
- Minimum score to pass (default: 80)qualityThreshold
- Require 100% checkbox completion (default: false)strictMode
Outputs
- Quality score with component breakdown
- Phase completion report
- Unresolved error list
- Prioritized improvement recommendations
Process Files
- Completion assessment and final verificationplanning-orchestrator.js
- Full verification pipelineplanning-verification.js