Who guards the agents? A framework for orchestrating AI coding agents through verified implementation phases.
Project description
Juvenal
Quis custodiet ipsos custodes? — Who guards the agents?
Juvenal is a framework for orchestrating AI coding agents through verified implementation phases. It prevents agents from cheating on success criteria by separating implementation from verification, helps agents implement complex projects in phases, etc.
How It Works
A non-agentic Python script orchestrates AI coding agents (Claude or Codex) through alternating steps:
- Implementation — an agent executes a prompt to build/modify code
- Verification — separate checkers (scripts, agents, or both) verify the work
- Bounce — if verification fails, the pipeline bounces back (to a configurable target phase or the most recent implement phase) with failure context injected. A global bounce limit (
max_bounces) prevents infinite loops.
The implementing agent and the checking agent are separate processes, so the implementer can't cheat by weakening tests.
Other Such Frameworks
Juvenal is conceptually similar to ralph, but it works slightly better for my exact purposes and reinventing the wheel is cheap now!
Install
pip install -e ".[dev]"
Claude Code Skill
Juvenal ships as a Claude Code plugin, so you can use it directly from Claude Code with /juvenal.
Install the plugin
From the marketplace (pending approval):
/plugin install juvenal
From source (works now):
claude --plugin-dir /path/to/juvenal/plugin
Usage
Once installed, invoke the skill in Claude Code:
/juvenal add authentication to the Flask app
Claude will create a Juvenal workflow for your goal and run it. You can also ask for help with workflow formats or run existing workflows.
Quick Start
# Scaffold a workflow
juvenal init my-project
# Run a workflow
juvenal run workflow.yaml
# Generate a workflow from a goal
juvenal plan "implement a REST API with tests" -o workflow.yaml
# Plan and immediately run
juvenal do "add authentication to the Flask app"
Workflow Formats
YAML
name: "my-workflow"
backend: claude
max_bounces: 999
phases:
- id: implement
prompt: "Implement the feature."
checkers:
- type: script
run: "pytest tests/ -x"
- type: agent
role: tester
Directory Convention
my-workflow/
phases/
01-setup/
prompt.md # implementation prompt
check-build.sh # script checker (exit 0 = pass)
check-quality.md # agent checker
02-implement/
prompt.md
check-tests.sh # paired with .md = composite
check-tests.md # gets {script_output} injected
Bare Markdown
phases/
01-setup.md # single phase, default tester checker
Checker Types
| Type | Description |
|---|---|
script |
Shell command; exit 0 = PASS, nonzero = FAIL |
agent |
AI agent that emits VERDICT: PASS or VERDICT: FAIL: reason |
composite |
Script runs first, output fed to agent via {script_output} |
Built-in Roles
Agent checkers can use built-in verification personas:
tester— runs tests, checks for build errorsarchitect— validates design, checks for circular dependenciespm— confirms requirements are met, no TODOs remainsenior-tester— checks test integrity, looks for cheatingsenior-engineer— reviews code quality, completeness, security
CLI
juvenal run <workflow> [--resume] [--phase X] [--max-retries N] [--backend claude|codex] [--dry-run]
juvenal plan "goal" [-o output.yaml] [--backend claude|codex]
juvenal do "goal" [--backend claude|codex] [--max-retries N]
juvenal status [--state-file path]
juvenal init [directory] [--template name]
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file juvenal-0.4.0.tar.gz.
File metadata
- Download URL: juvenal-0.4.0.tar.gz
- Upload date:
- Size: 37.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
665d47c1dc12e1ade53d782be87cc87af36af80725506b5f59eeaaeb9a26ef04
|
|
| MD5 |
b4328f236b1a0bdc0f3b695002a2f41d
|
|
| BLAKE2b-256 |
4795388167a8f078c63896212fcf3a608bc56a05a5aa2936290d19c0e460db40
|
File details
Details for the file juvenal-0.4.0-py3-none-any.whl.
File metadata
- Download URL: juvenal-0.4.0-py3-none-any.whl
- Upload date:
- Size: 43.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db841c115e0d14c17af6e184380b7a96f090657f5cede71b515339b48a5a5e7f
|
|
| MD5 |
30bdfaf72061b3d574a757539f4d892a
|
|
| BLAKE2b-256 |
e57750ac51052d34f11d6c86bebbe045a829fe60da9dd7f25742cc172f49d243
|