Deploy, configure, and manage RL agents that improve your codebase
TENET agents are autonomous workers that make focused code changes, measure the results, and learn from the outcomes. They run on a reinforcement learning loop — keep what improves, revert what doesn’t.
# List configured agentsjfl peter agent list# Run a specific agent for 3 roundsjfl peter agent test-coverage --rounds 3# Run all agents (swarm mode)jfl peter agent swarm --rounds 10
The eval script is everything. If the eval measures the right thing, agents improve. If it measures the wrong thing, they waste compute.We learned this the hard way — 750 rounds with 2.5% keep rate because eval scripts were at ceiling (test pass rate was already 100%). The fix: eval scripts that measure metrics with real gradient.
Good eval = real gradient (12.8% coverage → 87% room to improve).
Bad eval = ceiling (100% test pass rate → nowhere to go).