save-progress

save-progress is a skill for Claude Code from KimYx0207/Meta_Kim. It costs 65 tokens per session (1,183 once invoked), scanned A, original, Apache-2.0.

A task-progress saving skill that records the current task, completed work, and remaining work in a local JSON file. The next session can use that file to continue the task.

In plain words
What is it for?
Use it when you are asked to save progress, reach a major milestone, prepare to stop, or want to resume work later.
Why use it?
It prevents important context from being lost when a session ends, is interrupted, or moves to another project.

Skill for Claude Code

Written for Claude Code: SessionStart hook event. Also seen: reads .claude/ paths; mentions Claude Code.

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/kimyx0207/meta_kim/save-progress
Any agent
npx skills add KimYx0207/Meta_Kim --skill save-progress
Clone the repo
git clone --depth 1 https://github.com/KimYx0207/Meta_Kim

Made for: Claude Code.

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 save-progress

README.md
[![agentmods](https://agentmods.dev/badge/skills/kimyx0207/meta_kim/save-progress.svg)](https://agentmods.dev/skills/kimyx0207/meta_kim/save-progress)
Your own site
<a href="https://agentmods.dev/skills/kimyx0207/meta_kim/save-progress"><img src="https://agentmods.dev/badge/skills/kimyx0207/meta_kim/save-progress.svg" alt="Measured on agentmods" height="20"></a>
Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,183 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.00065 $0.01183
Opus 5 $0.00032 $0.00592
Sonnet 5 $0.00013 $0.00237
Haiku 4.5 $0.00006 $0.00118

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

Security

Grade A, and why

save-progress 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.

canonical/runtime-assets/claude/commands/save-progress/SKILL.md · 133 lines

How it starts

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

Save Progress

Saves current task progress to .claude/project-task-state.json in the project directory so the next session can automatically load it and resume where you left off.

What to Save

Before invoking this command, you should know:

  • Current task: What are you working on RIGHT NOW?
  • Completed tasks: What has been finished in this session? (Be specific, not "various things")
  • Remaining tasks: What still needs to be done?

How to Invoke

# Detect the Python hook path — it lives in ~/.claude/hooks/
python "$HOME/.claude/hooks/mcp_memory_global.py" \
  --mode save \
  --task "Describe current task in one sentence" \
  --done "Task 1 completed" "Task 2 completed" \
  --remaining "Next task to do" "Another remaining task"

Or use the Claude Code hooks path from the user profile if HOME is not set:

python "%USERPROFILE%/.claude/hooks/mcp_memory_global.py" ^
  --mode save ^
  --task "..." ^
  --done "..." ^
  --remaining "..."

When to Save

Trigger this when:

  • User explicitly asks to save progress
  • Session is being interrupted (detected via hook or user signal)
  • A major milestone is completed
  • Before switching to a different project
  • End of a work session

What NOT to Save

  • Generic "worked on project" — be specific: "completed dependency license audit for 4 READMEs"
  • Session noise — only save meaningful task state
  • Duplicate entries — if nothing meaningful changed, don't overwrite

Output

The command returns JSON with:

  • saved: boolean
  • file: path to the state file
  • total_sessions: number of sessions recorded
  • total_completed: total completed tasks across all sessions
  • last_session_completed: how many tasks completed this session
  • last_session_remaining: remaining tasks as of this save

Show the user a brief summary after saving.

Example

User says: "save progress"

python "$HOME/.claude/hooks/mcp_memory_global.py" \
  --mode save \
  --task "Audit Meta_Kim dependencies and update 4 READMEs" \
  --done "Audited npm dependency licenses" "Audited GitHub skill repositories" "Wrote English README dependency section" \
  --remaining "Update localized READMEs" "Push to GitHub" \
  --note "Found CLI-Anything is Apache 2.0, not MIT"

Read the full file on GitHub · 133 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 · 133 lines · 65 tokens per session scan A a42cd2179360

Subscribe to this mod's changes

save-progress is a skill published in the GitHub repository KimYx0207/Meta_Kim (268 stars, last pushed yesterday), licensed Apache-2.0. It adds 65 tokens to every session and 1,183 once invoked, about $0.0003 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.