flame-harness-resume

flame-harness-resume is a skill for Claude Code from tjdrhs90/flutter-flame-harness. It costs 32 tokens per session (1,821 once invoked), scanned A, original, MIT.

A resume handler for the Flutter Flame Harness, a workflow that builds Flutter games. It reads the workflow state and continues a paused run when the pause condition is resolved.

In plain words
What is it for?
It resumes paused game-building runs, records the resume attempt, clears the pause state, and dispatches the next workflow phase when ready.
Why use it?
It prevents you from manually working out which workflow step should run next after a rate-limit wait, user confirmation, or reported error.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Part of the flutter-flame-harness plugin — 14 skills shipped together

Good fit It resumes paused game-building runs, records the resume attempt, clears the pause state, and dispatches the next workflow phase when ready.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tjdrhs90/flutter-flame-harness/flame-harness-resume
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.

Any agent
npx skills add tjdrhs90/flutter-flame-harness --skill flame-harness-resume
Clone the repo
git clone --depth 1 https://github.com/tjdrhs90/flutter-flame-harness

Made for: Claude Code.

Or install flutter-flame-harness, the plugin that ships this one along with the rest of its 14 skills.

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 flame-harness-resume

README.md
[![agentmods](https://agentmods.dev/badge/skills/tjdrhs90/flutter-flame-harness/flame-harness-resume/github.svg)](https://agentmods.dev/skills/tjdrhs90/flutter-flame-harness/flame-harness-resume)
Your own site
<a href="https://agentmods.dev/skills/tjdrhs90/flutter-flame-harness/flame-harness-resume"><img src="https://agentmods.dev/badge/skills/tjdrhs90/flutter-flame-harness/flame-harness-resume/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for flame-harness-resume

Your own site · 80×15
<a href="https://agentmods.dev/skills/tjdrhs90/flutter-flame-harness/flame-harness-resume"><img src="https://agentmods.dev/badge/skills/tjdrhs90/flutter-flame-harness/flame-harness-resume.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,821 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00032 $0.01821
Opus 5 $0.00016 $0.00911
Sonnet 5 $0.00006 $0.00364
Haiku 4.5 $0.00003 $0.00182

Measured 11d ago against content hash eb526c59dd3b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

flame-harness-resume scanned grade A with 0 findings 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 11d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/flame-harness-resume/SKILL.md · 220 lines

How it starts

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

flame-harness-resume

Resume handler for the flutter-flame-harness pipeline. Reads state.md, branches on pause_reason, and re-dispatches the next phase skill when ready to continue.

All file schemas (state.md, pipeline-log.md) and state transition rules (including the requirement that pause_reason is cleared to "" when status is restored to running) are defined in docs/harness-protocol.md — refer to §2 (state.md schema) and §7 (state transition rules) as the single source of truth. Do not redefine schemas here.


Input

Read docs/harness/state.md per the schema in docs/harness-protocol.md §2. If state.md does not exist, abort with:

flame-harness-resume: nothing to resume — docs/harness/state.md not found.
Run /flame-harness <idea> to start a new pipeline.

Extract:

  • status — expected paused; if running or completed, print a note and exit (nothing to resume).
  • pause_reasonrate_limit | manual_action | error
  • next_role — role to dispatch after resuming
  • resume_attempts — integer; will be incremented on successful resume
  • current_phase, updated_at — for logging

If status is running:

flame-harness-resume: pipeline is already running (status: running, next_role: <next_role>).
No resume needed.

If status is completed:

flame-harness-resume: pipeline is already completed. Nothing to resume.

Branch on pause_reason

rate_limit

pause_reason: rate_limit means the pipeline hit an API rate limit and paused automatically.

Procedure:

  1. Print:
    Pipeline paused due to rate limit (rate_limit).
    Checking whether the rate-limit window has passed...
    
  2. Read updated_at from state.md. Calculate elapsed time since that timestamp using Bash (date command). If elapsed time is less than 60 seconds, print a warning:
    Warning: only <N> seconds have elapsed since the pause. The rate-limit window may not
    have passed yet. Proceeding anyway — if another rate limit is hit, the pipeline will
    pause again.
    
  3. Proceed to Resume execution below.

Read the full file on GitHub · 220 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. 11d ago First seen · 220 lines · 32 tokens per session scan A eb526c59dd3b

Subscribe to this mod's changes

flame-harness-resume is a skill published in the GitHub repository tjdrhs90/flutter-flame-harness (60 stars, last pushed 9d ago), licensed MIT. It adds 32 tokens to every session and 1,821 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

achievements

Steam-style achievement system with XP, levels, streaks, and skill trees. Gamifies the development workflow. 25 achievements across 5 categories.

vibeeval/vibecosystem · 33 tokens

variable-rewards

Generates a variable reward system with randomized rewards, daily bonuses, mystery box mechanics, and ethical engagement caps. Use when user wants daily spins, mystery boxes, random rewards, or gamification reward systems.

rshankras/claude-code-apple-skills · 45 tokens

game-development

Game development with Unity, Unreal Engine, and Godot. Use when building games, implementing game mechanics, physics, AI, or working with game engines.

travisjneuman/.claude · 34 tokens

ar-vr-xr

AR/VR/XR development with Unity XR, WebXR, ARKit, ARCore, Meta Quest SDK, and spatial computing. Use when building augmented reality, virtual reality, mixed reality applications, or spatial experiences.

travisjneuman/.claude · 50 tokens

fabrik-validate

Use when operating as the Fabrik Validate stage agent. This skill guides final validation of an implementation, verifying requirements are met, tests pass, and the PR is ready to merge.

handarbeit/fabrik · 36 tokens

architecture-foundations

Interviews the technical architect about the foundations a project is built on — the immovable constraints, the shared domain model and which feature owns each field, the interface contracts between features, and the authority model governing who can do what. Runs early, before experience design, and is re-run as…

handarbeit/fabrik · 148 tokens