Verploy is an opinionated Claude Code orchestration tool aiming to maximize developer productivity. Verploy treats manual verification, such as code review, as the primary bottleneck of development.
"Claude, set up https://github.com/Peter-Lavigne/verploy for my project, and explain how to use it."
Verploy allows defining deploy-gating and fine-grained manual checks on a per-project basis. Manual checks are more effective when developers commit more working memory to them, so Verploy aims to minimize the number of agents running in parallel by making the CI/CD process as fast as possible.
To that end, additional features include:
- Everything is local-first to minimize latency compared to remote agents and CI/CD systems
- Multi-agent support, so the developer is never waiting for an agent to finish
- A fast-forward-only workflow prevents silent merge conflicts
- Worktree support enables agents to work independently
- Works with Docker to sandbox agent execution and isolate deployment credentials
Verploy is available as verploy on PyPI.
Because Verploy uses other tools you have installed, it's recommended to install it per-project instead of globally:
uv add --dev verployVerploy expects changes to be committed and worktrees to be rebased onto main before it runs. Add verploy-hook as a Claude Code Stop hook to enforce this automatically.
.claude/settings.json:
{
"hooks": {
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "uv run verploy-hook",
"timeout": 600
}
]
}
]
}
}The hook checks that there are no uncommitted changes, the branch is rebased onto main (in worktrees), and runs the verify script if one exists.
Add a .verploy/ directory to your project with any of these executable scripts:
verify(optional) -- runs automated quality checks on Stop (e.g. linting, type checking, tests)manual-- runs manual checks (e.g. human review, expensive tests)deploy-- runs after pushing (e.g. publishing to PyPI)
.verploy/verify:
#!/bin/bash
set -euo pipefail
uv run ruff format .
uv run ruff check --fix .
uv run pyright
uv run pytest --cov --cov-fail-under=100.verploy/deploy:
#!/bin/bash
set -euo pipefail
uv build --no-sources
uv publish.verploy/manual:
#!/bin/sh
read -p "Review the code. Is it acceptable? (y/n) " answer
[ "$answer" = "y" ]uv run verployLicensed under the Apache License 2.0. See LICENSE.