Harness-evolver harness:status
Use when the user asks about evolution progress, current scores, best version, how many iterations ran, or whether the loop is stagnating.
install
source · Clone the upstream repo
git clone https://github.com/raphaelchristi/harness-evolver
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/raphaelchristi/harness-evolver "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/status" ~/.claude/skills/raphaelchristi-harness-evolver-harness-status && rm -rf "$T"
manifest:
skills/status/SKILL.mdsource content
/harness:status
Show current evolution progress.
What To Do
Resolve Tool Path
TOOLS="${EVOLVER_TOOLS:-$([ -d ".evolver/tools" ] && echo ".evolver/tools" || echo "$HOME/.evolver/tools")}" EVOLVER_PY="${EVOLVER_PY:-$([ -f "$HOME/.evolver/venv/bin/python" ] && echo "$HOME/.evolver/venv/bin/python" || echo "python3")}"
Display Chart
$EVOLVER_PY $TOOLS/evolution_chart.py --config .evolver.json
Additional Analysis
After displaying the chart:
- Detect stagnation: if last 3 scores within 1% of each other, warn and suggest
with architect trigger./harness:evolve - Detect regression: if current best is lower than a previous best, warn.
- Print LangSmith experiment URL for the best experiment if available.