| name | hypercode-self-improver |
| description | Runs the HyperCode Skills 2.0 self-improvement loop. Tests, scores, and rewrites agent skills and prompts automatically using binary eval criteria. Use when asked to improve a skill, run evals, benchmark performance, or trigger the Karpathy autoresearch loop. This is the evolutionary pipeline trigger. |
HyperCode Self-Improver
4 modes
- Eval — pass/fail test suite against a skill
- Benchmark — track score across model versions
- Improve — rewrite skill description + instructions to fix failures
- Trigger Optimizer — fix false-positive/negative skill activations
Run eval
python scripts/skill_eval.py --skill <skill-name> --mode eval
Run improve loop
python scripts/skill_eval.py --skill <skill-name> --mode improve --iterations 5
Loop:
- Run evals → get pass/fail results
- Analyze failures → identify pattern
- Rewrite
SKILL.md description + instructions
- Re-run evals → confirm improvement
- Commit if score improved
Eval format
{
"skill": "hypercode-agent-spawner",
"query": "Create a new memory agent on port 8090",
"expected_behavior": [
"Generates valid agent_spec.json",
"Registers agent in Crew Orchestrator",
"Adds health check endpoint"
]
}
See EVAL_EXAMPLES.md for full test suite.