filesystem

filesystem is a skill for Claude Code, Codex from thewolffish/wolffish-app. It costs 13 tokens per session (1,478 once invoked), scanned A, original, MIT.

A tool for reading, creating, and editing files on a local computer. It includes file checks before reading and careful patching for targeted changes.

In plain words
What is it for?
Reading source files, creating directories and files, applying small edits, and viewing local images.
Why use it?
It helps developers inspect project files and make controlled edits while reducing the risk of changing the wrong file or overwriting unrelated work.

Skill for Claude CodeCodex

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

Good fit Reading source files, creating directories and files, applying small edits, and viewing local images.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/thewolffish/wolffish-app/filesystem
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 filesystem
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 filesystem

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/thewolffish/wolffish-app/filesystem"><img src="https://agentmods.dev/badge/skills/thewolffish/wolffish-app/filesystem.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 13 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,478 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.00013 $0.01478
Opus 5 $0.00006 $0.00739
Sonnet 5 $0.00003 $0.00296
Haiku 4.5 $0.00001 $0.00148

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

Security

Grade A, and why

filesystem 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/filesystem/SKILL.md · 194 lines

What it actually says

Filesystem

Interface

  • Tools: file_read, file_write, file_patch, image_view
  • Paths may use ~ for the user's home directory.
  • Writes always create parent directories as needed.

Rules

  • Verify before reading. Before calling file_read, confirm the file exists — use a directory listing, file_read on the parent dir, or prior context that proves the path is real. Skip the check only when you have high certainty the file exists (e.g. you just created it, it appeared in a recent directory listing, or the user pasted its path). Never guess a path and attempt the read blind.
  • Read before you write. Use file_read to see what's there before editing.
  • Prefer file_patch for surgical edits — it preserves the rest of the file exactly as the user wrote it.
  • For file_patch, the find string must match exactly (whitespace included).
  • Never write to system paths (/etc/, /usr/, /private/) without asking — the safety gate will prompt the user, but be transparent about what you're doing first.
  • When showing file contents back to the user, format them as a code block.
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 · 194 lines · 13 tokens per session scan A ad8d79e6bb30

Subscribe to this mod's changes

filesystem is a skill published in the GitHub repository thewolffish/wolffish-app (5 stars, last pushed 2d ago), licensed MIT. It adds 13 tokens to every session and 1,478 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

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