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/automaker/skills/code-review-gate" ~/.claude/skills/a5c-ai-babysitter-code-review-gate && rm -rf "$T"
manifest:
library/methodologies/automaker/skills/code-review-gate/SKILL.mdsource content
Code Review Gate
Perform code review with quality scoring and configurable threshold enforcement.
Agent
Code Reviewer -
automaker-code-reviewer
Workflow
- Review all changed files for correctness
- Check for security vulnerabilities
- Identify performance issues
- Verify test coverage adequacy
- Check code style consistency
- Detect dead code and debug artifacts
- Verify no secrets in code
- Assign quality score (0-100)
- Make approve/reject decision
- Enforce quality threshold gate
Inputs
- Project nameprojectName
- Feature identifierfeatureId
- Feature branch namebranch
- Files to reviewchangedFiles
- Policy: 'auto', 'manual', 'hybrid'reviewPolicy
- Minimum score (0-100)qualityThreshold
Outputs
- Review with approval, score, comments, security issues, quality gate pass/fail
Process Files
- Phase 4automaker-orchestrator.js
- Stages 1-2automaker-review-ship.js