Skip to content
Development
Skill

/status

Use when the user asks about evolution progress, current scores, best version, how many iterations ran, or whether the loop is stagnating.

From plugin
harness-evolver
509 skills6 agents1 hook
Install
$ npx -y skills add raphaelchristi/harness-evolver --skill status --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/status

Context preview

The summary Claude sees to decide when to auto-load this skill.

Use when the user asks about evolution progress, current scores, best version, how many iterations ran, or whether the loop is stagnating.

SKILL.md

status.SKILL.md
name: harness:status
description: "Use when the user asks about evolution progress, current scores, best version, how many iterations ran, or whether the loop is stagnating."
allowed-tools: [Read, Bash]

/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 `/harness:evolve` with architect trigger.
  • Detect regression: if current best is lower than a previous best, warn.
  • Print LangSmith experiment URL for the best experiment if available.
Ships withharness-evolver

Point at any LLM agent codebase. Harness Evolver will autonomously improve it — prompts, routing, tools, architecture — using multi-agent evolution with LangSmith as the evaluation backend.

Get the whole plugin

Other skills on harness-evolver.