opsx-apply-resume

opsx-apply-resume is a command for Claude Code from hmj1026/dhpk. It costs 25 tokens per session (3,668 once invoked), scanned A, original, MIT.

A handoff command for saving and resuming long-running opsx:apply work across a new session. It detects whether to save the current worktree and task state or continue from a saved handoff.

In plain words
What is it for?
Use it before starting a new session or fork to save state, then use it afterward to resume unfinished work.
Why use it?
It reduces the risk of losing progress when a session is interrupted or its context becomes full.

Command for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: names the AskUserQuestion tool.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the dhpk plugin — 65 skills, 31 commands, 37 agents, 4 hooks shipped together

Good fit Use it before starting a new session or fork to save state, then use it afterward to resume unfinished work.

Compare 6 commands from other repositories ↓
View source ↗ hmj1026/dhpk
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add hmj1026/dhpk
Claude Code
/plugin install dhpk

Made for: Claude Code.

Or install dhpk, the plugin that ships this one along with the rest of its 65 skills, 31 commands, 37 agents, 4 hooks.

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 opsx-apply-resume

README.md
[![agentmods](https://agentmods.dev/badge/commands/hmj1026/dhpk/opsx-apply-resume/github.svg)](https://agentmods.dev/commands/hmj1026/dhpk/opsx-apply-resume)
Your own site
<a href="https://agentmods.dev/commands/hmj1026/dhpk/opsx-apply-resume"><img src="https://agentmods.dev/badge/commands/hmj1026/dhpk/opsx-apply-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 opsx-apply-resume

Your own site · 80×15
<a href="https://agentmods.dev/commands/hmj1026/dhpk/opsx-apply-resume"><img src="https://agentmods.dev/badge/commands/hmj1026/dhpk/opsx-apply-resume.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,668 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.
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.00025 $0.03668
Opus 5 $0.00013 $0.01834
Sonnet 5 $0.00005 $0.00734
Haiku 4.5 $0.00003 $0.00367

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

Security

Grade A, and why

opsx-apply-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 4d 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.

commands/opsx-apply-resume.md · 369 lines

How it starts

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

Cross-session handoff for interrupted /opsx:apply sessions. Run when context is ~70% full to save state, then run again after /fork or /new to resume.

Input: Optionally specify a change name (e.g., /opsx-apply-resume add-auth). Used to skip interactive change selection.


Phase Detection

Run the detection script — it outputs a single token:

bash .claude/scripts/opsx-apply-resume/detect-phase.sh
Output Action
save Save Phase
resume Resume Phase
warn-recent → warn: 剛建立的存檔(< 60 秒)。是否要覆寫?(y/n)。y → Save Phase;n → 停止並提示先執行 /fork 或 /new
consuming → 上次 Resume 啟動了 opsx:apply 但未完成。是否重新嘗試?(y/n)。y → 跳至 Resume Phase Step 5;n → 停止

Save Phase

Goal: Snapshot the live worktree and task artifacts, write a resumable handoff, and recommend the next action. The live worktree is the source of truth; a commit is never required to save or resume.

Step 1 — Optional commit gate

Commit only when the user explicitly requests a commit as a separate action. The smart-commit capability is optional and is not a prerequisite for the handoff.

  • If there are unstaged changes, list them and ask whether to include
  • If the user skips or the capability is unavailable: record commit: SKIPPED and continue from the live worktree
  • Do not revert, delete, stash, or claim loss of uncommitted task artifacts (uncommitted files remain available to Resume in the same worktree)

Step 2 — Optional precommit gate

Run precommit-fast only when the user or project explicitly enables that optional gate. Its result is evidence, not a save/resume prerequisite.

  • PASS → continue
  • FAIL → warn with failure details, ask: "仍要存檔繼續?(y/n)"
    • yes → record precommit: FAILED in handoff and continue
    • no → stop, let user fix first

Step 3 — Optional compact-provider gate

Use the optional compact-save provider when it is installed and enabled. It writes a JSON file to ./compact-notes/; absence of the provider or its output does not invalidate the live-state handoff.

Read the full file on GitHub · 369 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. 4d ago First seen · 369 lines · 25 tokens per session scan A be7448f06cdc

Subscribe to this mod's changes

opsx-apply-resume is a command published in the GitHub repository hmj1026/dhpk (2 stars, last pushed today), licensed MIT. It adds 25 tokens to every session and 3,668 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-09-05.