skills: Instructions file for Claude Code

CLAUDE.md

skills CLAUDE.md is an instructions file for Claude Code from matt-w-horn/skills. It costs 1,128 tokens per session, scanned A, original, MIT.

A contributor guide for a repository of Claude Code skills, with one skill stored in each directory. It also explains that the repository is a Claude Code plugin marketplace and lists its validation and testing commands.

In plain words
What is it for?
It helps maintain skill directories, marketplace metadata, simulation scripts, validation tools, tests, and repository hooks.
Why use it?
It tells contributors how skills are structured, installed, checked, and tested. This reduces mistakes when adding or changing skill files and supporting scripts.

Instructions file for Claude Code

Written for Claude Code: Claude Code plugin machinery. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

This is matt-w-horn/skills's own configuration. It tells Claude Code how to work on skills itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything skills configures →

Reuse

Borrowing it

Nothing to install: this file belongs to matt-w-horn/skills. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/matt-w-horn/skills/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/matt-w-horn/skills

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 skills CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/matt-w-horn/skills/claude-md/github.svg)](https://agentmods.dev/instructions/matt-w-horn/skills/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/matt-w-horn/skills/claude-md"><img src="https://agentmods.dev/badge/instructions/matt-w-horn/skills/claude-md/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 skills CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/matt-w-horn/skills/claude-md"><img src="https://agentmods.dev/badge/instructions/matt-w-horn/skills/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 1,128 This file is loaded in full into every session.
When invoked 1,128 The same file — it is already loaded in full.
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.01128 $0.01128
Opus 5 $0.00564 $0.00564
Sonnet 5 $0.00226 $0.00226
Haiku 4.5 $0.00113 $0.00113

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

Security

Grade A, and why

skills CLAUDE.md 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 10d 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.

CLAUDE.md · 80 lines

How it starts

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

CLAUDE.md

Guidance for Claude Code working in this repository.

What this is

Personal Claude skills, one per directory under skills/. The repo is also a Claude Code plugin marketplace (.claude-plugin/marketplace.json + plugin.json), so others can /plugin marketplace add matt-w-horn/skills; I load them myself by symlinking each into ~/.claude/skills/. A skill is a directory with a SKILL.md (frontmatter: name matching the directory, description) plus optional references/, scripts/, and tests/. The simulation scripts (skills/life-paths/scripts/fi_model.py, skills/financial-planning/scripts/simcore.py) are pure standard library; keep them that way, since CI installs nothing.

Commands

python3 tools/validate_skills.py   # structure + path-reference validation
tools/run_tests.sh                 # every tests/ suite (skills and tools)
sh tools/install-hooks.sh          # git pre-commit hook: both checks + gitleaks

Both checks run on commit (hook) and on push/PR (CI). Keep them green.

Evals (see tools/eval/README.md; only the first is gated by CI, via tools/eval/tests/):

python3 tools/eval/lint_evals.py          # corpus quality gate, stdlib only
python3 tools/eval/grade.py --calibrate   # judge must separate good.md from bad.md
python3 tools/eval/run_trigger.py --split graded    # ~144 `claude -p` runs
python3 tools/eval/run_exec.py --runs 2             # 32 long runs; hours

Conventions & gotchas

  • Adding a skill: create skills/<skill>/ with a SKILL.md, then activate it from the repo root with ln -s "$PWD/skills/<skill>" ~/.claude/skills/<skill>. Nothing else to wire up: the marketplace auto-discovers everything under skills/ (no manifest edit), and the validator finds skills at any depth by their SKILL.md.
  • Path references are validated. Any dir/file token in a skill's Markdown whose first segment is a real subdirectory of that skill must resolve, fenced commands included; runtime artifacts (dirs that don't exist in the repo, like finances/config.json) are ignored. Files under references/ or scripts/ that no Markdown mentions draw a warning.
  • Scripts must ship with tests (tests/test_*.py, unittest, run from the skill directory). Degenerate inputs should raise ValueError with a clear message, never crash deep in the math — see the guards in simcore.py and fi_model.py for the pattern.
  • Eval corpora live in skills/<skill>/evals/ and are authored blind: a trigger query or rubric assertion must not paraphrase the SKILL.md body, and lint_evals.py rule 5 fails the corpus if one shares a five-word phrase with the body that is absent from the description. When editing evals, work from the description and domain knowledge, not the skill's own instructions. Trigger queries must also be self-contained: runs happen in an empty directory, so a query naming a file misfires for a fixture reason that reads like a description failure.
  • Never put a SKILL.md under evals/. validate_skills.py treats any SKILL.md at any depth as a skill and would try to validate the fixture. Same trap for scripts/-, references/-, tests/- or evals/-prefixed path tokens in eval prose: the validator resolves them against the real directories. Both are linted.
  • Never set version in plugin.json or a marketplace plugin entry. Claude Code resolves a plugin's version from plugin.json, then the marketplace entry, then the source commit SHA, and skips the update when the resolved version matches what a user already has. A literal version nobody remembers to bump freezes every existing install however many commits land, and it fails silently — nothing local can tell. With the field omitted, each commit is its own version. tools/tests/test_plugin_manifests.py enforces this.
  • This repo is public, so it may not depend on anything outside itself. A skill here must stand alone: no references to system-wide skills, to ~/.claude, or to a project that isn't public. Skills needing any of those live as real directories under ~/.claude/skills/ instead, which is where apps-script-deploy went on 2026-07-26. The ~/.claude/skills/ paths below are install instructions for a reader, not a dependency.
  • No secrets belong here, ever; gitleaks runs in the hook and CI as a backstop.

Read the full file on GitHub · 80 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. 10d ago First seen · 80 lines · 1,128 tokens per session scan A 2225256d797a

Subscribe to this mod's changes

skills CLAUDE.md is an instructions file published in the GitHub repository matt-w-horn/skills (6 stars, last pushed 1mo ago), licensed MIT. It adds 1,128 tokens to every session, about $0.0056 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 instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens