with one click
juvenal
Create and run verified AI agent workflows using Juvenal
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create and run verified AI agent workflows using Juvenal
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | juvenal |
| description | Create and run verified AI agent workflows using Juvenal |
| argument-hint | [goal or command] |
| allowed-tools | ["Bash","Read","Write","Glob","Edit"] |
You are helping the user create and manage Juvenal workflows. Juvenal orchestrates AI coding agents through alternating implementation and verification phases, preventing agents from cheating on success criteria.
Juvenal is a framework where a deterministic Python runtime orchestrates AI coding agents (Claude or Codex) through verified phases. Each phase has:
The key insight: the implementing agent and the checking agent are separate, so the implementer can't cheat by weakening tests.
name: "my-workflow"
backend: claude # or "codex"
working_dir: "."
max_bounces: 999 # global bounce limit
phases:
- id: setup
prompt: "Set up the project scaffolding."
checks:
- prompt: "Run `pytest tests/ -x` and emit `VERDICT: PASS` only if it succeeds."
- tester
- id: implement
prompt_file: phases/implement/prompt.md
bounce_target: setup # on failure, bounce back to setup
checks:
- prompt: "Run `make test` and emit `VERDICT: PASS` only if it succeeds."
- role: senior-engineer
- prompt: "Run `pytest tests/ --tb=long`, review the output, and emit a verdict."
my-workflow/
phases/
01-setup/
prompt.md
check-build.md # check phase
02-implement/
prompt.md
check-quality.md # agent checker
phases/
01-setup.md # gets default tester checker
02-implement.md
VERDICT: PASS or VERDICT: FAIL: reasontester:Focus on API error handling.Agent checkers can use built-in roles: tester, architect, pm, senior-tester, senior-engineer, security-engineer, technical-writer, professor, grant-reviewer
juvenal run workflow.yaml [--resume] [--backend claude|codex]
juvenal plan "goal description" [-o output.yaml]
juvenal do "goal description"
juvenal status
juvenal init [directory]
When the user invokes /juvenal, help them by:
workflow.yaml file for that goaljuvenal run via BashAlways create workflows that are specific, testable, and have meaningful checkers.