archive

archive is a skill for Claude Code, Codex from thewolffish/wolffish-app. It costs 37 tokens per session (2,567 once invoked), scanned A, original, MIT.

A tool for inspecting, reading, unpacking, and creating ZIP archives, which are files that bundle and often compress other files.

In plain words
What is it for?
Use it to list archive contents, read selected files, extract files or folders, and package files into a new ZIP.
Why use it?
It lets you see what an archive contains before changing files on disk, and can read individual files without unpacking everything.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to list archive contents, read selected files, extract files or folders, and package files into a new ZIP.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/thewolffish/wolffish-app/archive
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 thewolffish/wolffish-app --skill archive
Clone the repo
git clone --depth 1 https://github.com/thewolffish/wolffish-app

Made for: Claude Code, Codex.

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/skills/thewolffish/wolffish-app/archive/github.svg)](https://agentmods.dev/skills/thewolffish/wolffish-app/archive)
Your own site
<a href="https://agentmods.dev/skills/thewolffish/wolffish-app/archive"><img src="https://agentmods.dev/badge/skills/thewolffish/wolffish-app/archive/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 archive

Your own site · 80×15
<a href="https://agentmods.dev/skills/thewolffish/wolffish-app/archive"><img src="https://agentmods.dev/badge/skills/thewolffish/wolffish-app/archive.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,567 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.00037 $0.02567
Opus 5 $0.00018 $0.01283
Sonnet 5 $0.00007 $0.00513
Haiku 4.5 $0.00004 $0.00257

Measured 8d ago against content hash b811ce85c256, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, 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 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (plugin/index.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

src/defaults/workspace/brain/cerebellum/archive/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.

Archive

Four tools for .zip files: archive_list (what's inside), archive_read (one file out of it), archive_extract (unpack), archive_create (pack). They work in-process — no unzip or zip binary needed, same behaviour on macOS and Windows.

Look before you unpack

An archive is opaque until you list it, and unpacking is a side effect on the user's disk. So the order is always list → decide → act:

  1. archive_list — cheap on any size, tells you what you're dealing with.
  2. Decide with the user what they actually want (see below).
  3. archive_read if the answer is inside one or two files; archive_extract if they want the files on disk.

Never claim to know what an archive contains without listing it first, and never describe files you have not read.

When the user uploads a zip and says nothing

This is the common case, and unpacking by default is the wrong move — you don't know whether they want it extracted, read, converted, inspected for one file, or sent somewhere. Do this instead:

  1. archive_list it.
  2. Tell them what's in there in one or two lines — the shape, not a file dump ("It's a 212-file React project — src/, public/, package.json, plus a 40 MB video in assets/").
  3. Ask what they want done with it, and offer the obvious options for what you just saw ("Unpack it somewhere? Read a specific file? Convert the CSVs?"). Use ask_user when a short list of choices covers it.

Skip the question only when the request already answers it — "unzip this", "what's the README say", "pull the invoices out of this". Then just do it.

Reading vs extracting

archive_read answers questions; archive_extract puts files on the user's disk. Prefer reading: it's faster, leaves nothing behind, and is usually what a question about an archive actually needs. Extract when the user wants the files, when you need to run tools over many of them, or when a file is binary (archive_read will tell you so rather than dumping bytes).

Read the full file on GitHub · 220 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 8d ago First seen · 220 lines · 37 tokens per session scan A b811ce85c256

Subscribe to this mod's changes

archive is a skill published in the GitHub repository thewolffish/wolffish-app (5 stars, last pushed yesterday), licensed MIT. It adds 37 tokens to every session and 2,567 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-31.

Related

Other skills, from other repositories

agent-computer-use

REQUIRED for any task that involves operating a desktop application — opening apps, clicking buttons, typing into fields, pressing keys, scrolling, dragging, reading what's on screen, moving or resizing windows, or verifying state after an action. Always use the agent-cu CLI commands (open, snapshot, click, type, key…

kortix-ai/agent-computer-use · 216 tokens

claude-api

Build, debug, and optimize Claude API / Anthropic SDK apps. Apps built with this skill should include prompt caching. Also handles migrating existing Claude API code between Claude model versions (4.5 → 4.6, 4.6 → 4.7, retired-model replacements). TRIGGER when: code imports anthropic/@anthropic-ai/sdk; user asks for…

warpdotdev/warp · 193 tokens

create-skill

Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.

warpdotdev/warp · 64 tokens

figma-create-design-system-rules

Generates custom design system rules for the user's codebase. Use when user says "create design system rules", "generate rules for my project", "set up design rules", "customize design system guidelines", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server…

warpdotdev/warp · 71 tokens

figma-generate-design

Use this skill alongside figma-use when the task involves translating an application page, view, or multi-section layout into Figma. Triggers: 'write to Figma', 'create in Figma from code', 'push page to Figma', 'take this app/page and build it in Figma', 'create a screen', 'build a landing page in Figma', 'update the…

warpdotdev/warp · 160 tokens

figma-generate-library

Build or update a professional-grade design system in Figma from a codebase. Use when the user wants to create variables/tokens, build component libraries, set up theming (light/dark modes), document foundations, or reconcile gaps between code and Figma. This skill teaches WHAT to build and in WHAT ORDER — it…

warpdotdev/warp · 95 tokens