flywheel CLAUDE.md

flywheel CLAUDE.md is an instructions file for coding agents from wsauret/flywheel. It costs 2,942 tokens per session, scanned C, original, MIT.

Project instructions for Flywheel, a plugin for Claude Code and OpenCode. They describe how to reinstall the plugin and run its integration tests, including a full end-to-end test against the Anthropic API.

In plain words
What is it for?
For changing Flywheel and then installing it, running its smaller tests, or launching and monitoring the full autonomous-flow test.
Why use it?
They make long-running integration checks repeatable and record the prerequisites, expected duration, and test output procedure.

Instructions file

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/wsauret/flywheel/claude-md
Clone the repo
git clone --depth 1 https://github.com/wsauret/flywheel

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for flywheel CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/wsauret/flywheel/claude-md.svg)](https://agentmods.dev/instructions/wsauret/flywheel/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/wsauret/flywheel/claude-md"><img src="https://agentmods.dev/badge/instructions/wsauret/flywheel/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,942 This file is loaded in full into every session.
When invoked 2,942 The same file — it is already loaded in full.
Security scan C 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.02942 $0.02942
Opus 5 $0.01471 $0.01471
Sonnet 5 $0.00588 $0.00588
Haiku 4.5 $0.00294 $0.00294

Measured 5d ago against content hash 9f3f56a6af4c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade C, and why

flywheel CLAUDE.md scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

- **Don't clean up before debugging.** `rm -rf` the sandbox and log in the next-run setup; the previous run's evidence is gone forever.
CLAUDE.md · 163 lines

How it starts

The opening of the file, as written. The whole thing — 163 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Flywheel — claude.md

This repo develops the Flywheel plugin for Claude Code and OpenCode. Source lives in flywheel/ (plugin contents); integration tests live in tests/integration/. Architectural philosophy: @docs/adrs/0001-skill-design-as-negotiation.md

Running integration tests

The end-to-end test (tests/integration/cases/03-pipeline-end-to-end.test.sh) drives the full /yolo autonomous flow against the real Anthropic API. Prerequisites:

  • ANTHROPIC_API_KEY set
  • tmux, claude, jq, bunx on PATH
  • The plugin installed via bash install_claude_code.sh < /dev/null (stdin redirected to skip the Context7 prompt)

A typical run takes 25–45 minutes. Cost: real API tokens.

# Reinstall plugin first if any plugin file changed
bash install_claude_code.sh < /dev/null 2>&1 | tail -3

# Run e2e test in background, capture output
bash tests/integration/cases/03-pipeline-end-to-end.test.sh \
  > /tmp/yolo-test.log 2>&1; echo "TEST EXITED: $?" >> /tmp/yolo-test.log

Smaller tests:

  • 00-plugin-loads.test.sh — palette discovery, no model call (~30s)
  • 01-fly-work-resumes.test.shwork skill against seeded session (~1–3min)
  • 02-fly-plan-creates-spec.test.shplan skill end-to-end (~3–10min)

Monitoring a long-running test

Don't sit and watch the log. Use the Monitor tool with a script that emits events on milestones, deadlocks, and silent stops. Skeleton:

last_log=0; last_prompt=0; last_log_time=$(date +%s); stall_warned=0
while true; do
  now=$(date +%s)

  # 1. Test progress: emit each new PASS/FAIL/INFO line
  cur_log=$(wc -l < /tmp/yolo-test.log 2>/dev/null || echo 0)
  if [ "$cur_log" -gt "$last_log" ]; then
    tail -n $((cur_log - last_log)) /tmp/yolo-test.log \
      | grep --line-buffered -E "^(PASS|FAIL|INFO|Summary|TEST EXITED):" || true
    last_log=$cur_log
    last_log_time=$now
    stall_warned=0
  fi

  # 2. Deadlock detection: AskUserQuestion prompt visible in tmux
  pane=$(tmux capture-pane -t flywheel-int-yolo -p 2>/dev/null || echo "")
  prompt=$(echo "$pane" | grep -cE "Enter to select|Submit answers|Ready to submit" 2>/dev/null || echo 0)
  if [ "$prompt" -gt 0 ] && [ "$last_prompt" -eq 0 ]; then
    echo "DEADLOCK_DETECTED: AskUserQuestion in pane"
    echo "$pane" | tail -12
  fi
  last_prompt=$prompt

  # 3. Silent-stop detection: log idle >5min while test still running
  log_idle=$((now - last_log_time))
  if [ "$log_idle" -gt 300 ] && [ "$stall_warned" -eq 0 ] && [ "$last_log" -gt 0 ]; then
    echo "STALL_DETECTED: log idle ${log_idle}s — agent may have silent-stopped"
    echo "$pane" | tail -10
    stall_warned=1
  fi

  # 4. Completion: break on test exit (Summary OR TEST EXITED)
  if grep -q "^Summary:\|^TEST EXITED:" /tmp/yolo-test.log 2>/dev/null; then
    grep "^Summary:\|^TEST EXITED:" /tmp/yolo-test.log | tail -3
    break
  fi
  sleep 30
done

Read the full file on GitHub · 163 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 163 lines · 2,942 tokens per session scan C 9f3f56a6af4c

Subscribe to this mod's changes

flywheel CLAUDE.md is an instructions file published in the GitHub repository wsauret/flywheel (14 stars, last pushed yesterday), licensed MIT. It adds 2,942 tokens to every session, about $0.0147 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.