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.
Scanned 5/28/2026
Install via CLI
openskills install HenryCai11/autoresearch-wrapper---
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:
```bash
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
bash "$AUTORESEARCH_RUNNER" flow
```
When this skill is invoked:
1. Show the recorded metric flow for the active run by default.
2. Summarize:
- metric name
- goal
- chronological sequence
- best-so-far sequence
- latest metric
- best metric
3. Include the ASCII plot when presenting the result.
4. If the user asks for raw structured data, use:
```bash
bash "$AUTORESEARCH_RUNNER" flow --json
```
## Example
- `/autoresearch-wrapper-flow`
No comments yet. Be the first to comment!