| name | autoresearch-wrapper-flow |
| description | Show or plot recorded metric flow for an autoresearch-wrapper run. Use when the user wants the chronological metric sequence, best-so-far progression, or a terminal-friendly plot. |
Autoresearch Wrapper Flow
Use the launcher next to this skill:
if [ -n "${CLAUDE_SKILL_DIR:-}" ]; then
AUTORESEARCH_RUNNER="${CLAUDE_SKILL_DIR}/run.sh"
elif [ -n "${CLAUDE_PLUGIN_ROOT:-}" ]; then
AUTORESEARCH_RUNNER="${CLAUDE_PLUGIN_ROOT}/skills/autoresearch-wrapper-flow/run.sh"
elif [ -f ".claude/skills/autoresearch-wrapper-flow/run.sh" ]; then
AUTORESEARCH_RUNNER="$(readlink -f ".claude/skills/autoresearch-wrapper-flow/run.sh")"
elif [ -f "skills/autoresearch-wrapper-flow/run.sh" ]; then
AUTORESEARCH_RUNNER="$(readlink -f "skills/autoresearch-wrapper-flow/run.sh")"
else
echo "Could not resolve the autoresearch-wrapper-flow launcher" >&2; exit 1
fi
Use:
bash "$AUTORESEARCH_RUNNER" flow
When this skill is invoked:
- Show the recorded metric flow for the active run by default.
- Summarize:
- metric name
- goal
- chronological sequence
- best-so-far sequence
- latest metric
- best metric
-
Include the ASCII plot when presenting the result.
-
If the user asks for raw structured data, use:
bash "$AUTORESEARCH_RUNNER" flow --json
Example
/autoresearch-wrapper-flow