A collection of Claude Code agents, commands, and hooks for automated code review workflows.
An autonomous agent that runs Greptile code reviews on pull requests, fixes issues, and merges when the PR passes. It loops internally — detecting the PR, checking review status, spawning code-fixer agents, pushing fixes, and waiting for re-reviews — until the PR either passes or hits a hard stop.
Usage:
/greptile-review-loop
See skills/greptile-review-loop/README.md for full documentation.
Spawns a team of three parallel reviewer agents (security, performance, test coverage) to analyze all changes on the current branch and produce a unified review summary.
Usage:
/team-review
A supporting agent used by the greptile-review-loop. Handles precise, targeted fixes for individual files based on review feedback.
agents/
greptile-review-loop.md # Autonomous review-fix-merge agent
code-fixer.md # Per-file code fix agent
commands/
greptile-review-loop/ # /greptile-review-loop slash command
team-review/ # /team-review slash command
skills/
greptile-review-loop/ # Docs, prereqs, examples
hooks/
post-pr-greptile-hook.sh # Post-PR reminder (optional)
install.sh # Interactive installer
git clone https://github.com/startappdev/agents.git
cd agents
./install.shThe installer will show available agents, commands, and hooks and let you select which to install.
git clone https://github.com/startappdev/agents.git
cd agents
# Agents
cp agents/*.md ~/.claude/agents/
# Commands
cp -r commands/* ~/.claude/commands/
# Hook (optional)
cp hooks/post-pr-greptile-hook.sh ~/.claude/hooks/
chmod +x ~/.claude/hooks/post-pr-greptile-hook.shRestart Claude Code after installation.
- Claude Code CLI installed and configured
- GitHub CLI (
gh) — authenticated (gh auth status) - Greptile GitHub App — for greptile-review-loop (install)
- Greptile MCP Plugin — for greptile-review-loop (
claude mcp list | grep greptile)
MIT License — see LICENSE for details.