archive

archive is a command for coding agents from koolamusic/claudefiles. It costs 50 tokens per session (1,087 once invoked), scanned A, original, MIT.

A command that moves a finished project's Studio workspace into an archive and tidies the local checkout. It keeps the files and their Git history instead of deleting them.

In plain words
What is it for?
Use it when a project is completed or put on hold. It archives the project and helps other checkouts recognize that the workspace has moved.
Why use it?
It keeps the workspace store focused on active projects while preserving completed work. It also removes local links and settings that are no longer needed.

Command

Part of the studio plugin — 4 commands 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 commands/koolamusic/claudefiles/archive
Clone the repo
git clone --depth 1 https://github.com/koolamusic/claudefiles

Or install studio, the plugin that ships this one along with the rest of its 4 commands.

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 archive

README.md
[![agentmods](https://agentmods.dev/badge/commands/koolamusic/claudefiles/archive.svg)](https://agentmods.dev/commands/koolamusic/claudefiles/archive)
Your own site
<a href="https://agentmods.dev/commands/koolamusic/claudefiles/archive"><img src="https://agentmods.dev/badge/commands/koolamusic/claudefiles/archive.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,087 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 $0.00050 $0.01087
Opus 5 $0.00025 $0.00544
Sonnet 5 $0.00010 $0.00217
Haiku 4.5 $0.00005 $0.00109

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

Security

Grade A, and why

archive 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.

plugins/studio/commands/archive.md · 79 lines

How it starts

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

/studio:archive

For projects that are completed or wound down. The workspace moves out of the ~/.studio/ root into ~/.studio/_archive/<slug>/ — a fixed convention, like .workspacerc and _index.md, not a studio.yaml value — so the store root lists only active work. Git history preserves everything; nothing is deleted.

Archiving is a store-side move plus a machine-local cleanup. Other machines with checkouts of the same project clean themselves up on their next session (their session-start hook fails to resolve the workspace and points here).

Steps

  1. Resolve slug. If $ARGUMENTS names a slug, use it. Otherwise run git rev-parse --show-toplevel and read $PROJECT_ROOT/.workspacerc — the workspace field's basename is the slug. If neither yields a slug, stop and ask.

  2. Verify the workspace. Confirm ~/.studio/.git exists, then branch on where the slug lives:

    • ~/.studio/$SLUG exists, _archive/$SLUG does not — normal case; continue with step 3.
    • ~/.studio/$SLUG does not exist but _archive/$SLUG does — already archived (another machine or collaborator did the store-side move, e.g. after a git pull in ~/.studio). Skip steps 3–5 and jump straight to step 6: this machine only needs its local cleanup. Say so in the report.
    • Both exist — STOP. A previous archive of the same slug is in place and a live workspace has reappeared beside it; never overwrite. Surface via AskUserQuestion (suffix the new archive, or cancel).
    • Neither exists — STOP; nothing to archive under that slug.
  3. Confirm intent. Archiving is meant for completed work. Use AskUserQuestion to confirm: show the slug, its last workspace commit touching it (cd ~/.studio && git log -1 --format='%h %ad %s' --date=short -- $SLUG/), and proceed/cancel. Skip the question only if the user's invocation already named the slug explicitly.

  4. Move. In ~/.studio: mkdir -p _archive && git mv "$SLUG" "_archive/$SLUG". git mv only carries tracked files — afterwards check [[ -e "$SLUG" ]] for untracked leftovers; if any remain, mv them into _archive/$SLUG/ preserving relative paths, then remove the empty source dir.

Read the full file on GitHub · 79 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 · 79 lines · 50 tokens per session scan A 82c4c2e20801

Subscribe to this mod's changes

archive is a command published in the GitHub repository koolamusic/claudefiles (132 stars, last pushed 4d ago), licensed MIT. It adds 50 tokens to every session and 1,087 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.