feature-resume

feature-resume is a skill for Claude Code from Langerrr/zforge. It costs 23 tokens per session (922 once invoked), scanned A, original, MIT.

An interactive runner for continuing an existing zforge feature plan one phase at a time. It reviews the plan's current state before implementing the next phase.

In plain words
What is it for?
Use it to resume a feature plan, verify unfinished phases, resolve open decisions, implement the next phase, and check its result.
Why use it?
It keeps the user involved between phases and ensures reported, paused, or interrupted work is handled in the right order.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the zforge plugin — 13 skills, 8 commands, 2 agents shipped together

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 skills/langerrr/zforge/feature-resume
Any agent
npx skills add Langerrr/zforge --skill feature-resume
Clone the repo
git clone --depth 1 https://github.com/Langerrr/zforge

Made for: Claude Code.

Or install zforge, the plugin that ships this one along with the rest of its 13 skills, 8 commands, 2 agents.

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 feature-resume

README.md
[![agentmods](https://agentmods.dev/badge/skills/langerrr/zforge/feature-resume.svg)](https://agentmods.dev/skills/langerrr/zforge/feature-resume)
Your own site
<a href="https://agentmods.dev/skills/langerrr/zforge/feature-resume"><img src="https://agentmods.dev/badge/skills/langerrr/zforge/feature-resume.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 922 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.1 $0.00023 $0.00922
Opus 5 $0.00012 $0.00461
Sonnet 5 $0.00005 $0.00184
Haiku 4.5 $0.00002 $0.00092

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

Security

Grade A, and why

feature-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 6d 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.

codex/skills/feature-resume/SKILL.md · 59 lines

How it starts

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

Interactive Feature Implementation

Continue a feature plan with the planner implementing in-session and checking in with the user between phases.

Load $zforge:feature-execution. It owns phase state, recovery, and acceptance. This skill supplies the interactive intent only.

Arguments

  • $1: Feature name (snake_case, or will be converted)

Pre-flight

Same as $zforge:feature-orchestrate: resolve the feature directory, read the overview, context, plan, Doc Map, decision ledger and session log, append this session's row, and note inherited standing flags.

Then scan the phase files and report the current state to the user before doing anything: which phases are complete, which is next, what is REPORTED, PAUSED or INTERRUPTED, and which standing flags are open.

Order of work

  1. REPORTED — a previous session took a report and never verified it. Run acceptance before anything else; do not resume that phase's agent and do not trust the report.
  2. PAUSED — answer the question first. Present it with enough context for the user to decide, or resolve it from the plan and say that you did. A REASON: USAGE_LIMIT_95 pause has no question in it — pick up from the phase's ## Resume Point.
  3. INTERRUPTED — resume per the skill's recovery procedure. Re-orient against disk before continuing; the phase may be further along than the checklist claims.
  4. FAILED — present the error and ask whether to fix, skip, or stop.
  5. READY — start the next phase in order.

Executing a phase

The planner implements directly rather than spawning. The phase file's contract still governs:

  • Read the phase file and everything in its ## Required Context before starting.
  • Work the checklist, marking items as they complete.
  • Record decisions in ## Decisions as they are made — including the ones settled with the user in conversation, which are otherwise lost when the session ends.
  • Fill each ## Evidence Required row when its command runs, from the artifact that command wrote — the command's captured output for an E row, the method walked and the referent it was walked against for a J row. Name artifacts per run, so a re-run does not overwrite the file an earlier row quotes. Writing rows at the end of the phase, from what the console said, is what makes a correct implementation fail its own acceptance.
  • Keep ## Files Created/Modified current.

Read the full file on GitHub · 59 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. 6d ago First seen · 59 lines · 23 tokens per session scan A e2519eaeb495

Subscribe to this mod's changes

feature-resume is a skill published in the GitHub repository Langerrr/zforge (10 stars, last pushed 5d ago), licensed MIT. It adds 23 tokens to every session and 922 once invoked, about $0.0001 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-31.

Related

Other skills, from other repositories

loop-setup

Session 0. Sets up the loop in this project - detects the stack, checks which connections actually work (git, database, browser, payments sandbox), asks the few decisions only the owner can make, and writes the .loop/ files. Run this once per project, before any planning or building.

cbdreamer11/CB-loop-kit-claude-plugin · 65 tokens

loop-plan

The planning session. Turns a goal into an ordered list of thin complete slices, decides which role and model runs each following session, and writes it all to the plan file. Use at the start of an epic, before any code.

cbdreamer11/CB-loop-kit-claude-plugin · 50 tokens

dist-design

This skill should be used when choosing between architectural options for how independently-deployed processes or services will communicate, share state, or scale — stream vs. queue vs. RPC, splitting a monolith into services, a replication/partitioning strategy, or cross-service retry and circuit-breaker design. Runs…

Langerrr/distributed-architect · 95 tokens

loop

The build loop - locate yourself, investigate the real code, build one slice completely, verify it for real, fix and re-verify, then close and hand off. Use for any session that is implementing something from the plan.

cbdreamer11/CB-loop-kit-claude-plugin · 48 tokens

loop-close

Closes a slice or a session - adversarial audit of the diff, ledger entry, selective commit, honest report, and the handoff for the next session. Use before considering anything finished.

cbdreamer11/CB-loop-kit-claude-plugin · 42 tokens

loop-verify

Runs this project's verification contract and decides honestly whether something is verified, a gap, or a lie. Use before calling anything done, and whenever a report says "should work".

cbdreamer11/CB-loop-kit-claude-plugin · 39 tokens