skillsmith

skillsmith is a skill for Claude Code from daronthedragon/skillsmith. It costs 116 tokens per session (1,488 once invoked), scanned A, original, MIT.

A guide for building, checking, and evaluating skills for coding agents. It focuses on instructions that cause observable changes in the agent's behavior.

In plain words
What is it for?
Use it when creating or improving a skill, writing a SKILL.md file, checking whether a skill works, and testing its triggers and results.
Why use it?
It helps prevent skills from being descriptive documents that do not reliably affect what the agent does.

Skill for Claude Code

Written for Claude Code: UserPromptSubmit hook event. Also seen: mentions Claude Code.

Good fit Use it when creating or improving a skill, writing a SKILL.md file, checking whether a skill works, and testing its triggers and results.

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

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 skillsmith

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/daronthedragon/skillsmith/skill"><img src="https://agentmods.dev/badge/skills/daronthedragon/skillsmith/skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 116 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,488 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.00116 $0.01488
Opus 5 $0.00058 $0.00744
Sonnet 5 $0.00023 $0.00298
Haiku 4.5 $0.00012 $0.00149

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

Security

Grade A, and why

skillsmith 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 9d 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.

skill/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.

Skillsmith

Most skills are decoration: a paragraph of quality words the model already agrees with, loaded into context on every turn, changing nothing. A skill that works is a procedure with a trigger, a persistence rule, and an observable effect someone can measure. Build only that kind.

Persistence

ACTIVE EVERY RESPONSE for the duration of a skill-building task. Still active when unsure whether the current edit counts. Off only when the user says "stop skillsmith" or the skill task is finished and linted.

Procedure

Run this every time a skill is created or changed, in order.

  1. Name the observable effect first. Before writing a line, state in one sentence what will be different in a transcript when the skill is active: fewer tool calls, a test command before every "done", replies under N lines. If you cannot name it, the skill has no purpose yet. Stop and ask.
  2. Scaffold, never freehand. Run skillsmith new <name> --summary "..." (add --oneshot for a run-once skill). It produces a SKILL.md and an eval.json that pass lint by construction. Edit those; do not start from a blank file.
  3. Write the trigger as situations, not a label. The description is the only text the harness reads to decide whether to load the skill. It must say when: tasks, user phrases, file types. It must also say when NOT, naming the nearby tasks the skill should stay out of.
  4. Write the behaviour as numbered steps. Each step is a verb and an object, checkable from a transcript. Conditions name both branches. No step may be "be careful", "consider", or "try to".
  5. Add one before/after example. Instead-of / do. A real excerpt, not a description of one.
  6. Lint, and fix every error. skillsmith lint <dir>. Errors mean the skill cannot work; warnings mean it will drift. Do not ship with errors. Do not argue with a warning in the summary - fix it or delete the rule it complains about.
  7. Fill the eval with real checks. In eval.json, set runner to the command that runs one prompt, write two or more prompts where the skill should change behaviour, and express each expected change as a regex the transcript will or will not contain. Never use a model as the judge.
    • Match the behaviour, not a word. To check "when the agent claims success, a real run backs it", put the claim regex in the check's given field and the proof regex in pattern. The check only bites when given matches, so a run that never makes the claim passes vacuously - being cautious is not a failure. A check without given that greps for one prescribed word reads a correct answer phrased differently as a failure.
    • Make the evidence observable. If a behaviour happens in a tool call - running code, reading a file - the runner must emit a transcript that contains the tool call, or the check cannot see it. For the Claude Code CLI that means --output-format stream-json --verbose; plain text shows only the final message and hides whether anything ran.
    • Make the tasks tempt the failure. A prompt the base model already passes cannot show a delta. Pick tasks where, without the skill, the model is likely to do the wrong thing - claim a value it could recall instead of compute, assert a state it cannot verify.
  8. Run the eval and report the delta. skillsmith eval <dir>/eval.json. A skill with no measurable delta is not done; it is decoration. Report the without → with numbers verbatim in your summary, and keep the eval even when it shows no change - an eval that cannot fail proves nothing, and the one that failed is the record that the passing one is honest.

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. 9d ago First seen · 133 lines · 116 tokens per session scan A d4a770393dbf

Subscribe to this mod's changes

skillsmith is a skill published in the GitHub repository daronthedragon/skillsmith (2 stars, last pushed 19d ago), licensed MIT. It adds 116 tokens to every session and 1,488 once invoked, about $0.0006 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

overllm

Find the LLM call you didn't need — your GPT call is a regex. Static, zero-config linter that flags unnecessary GPT/Claude/AI API calls a regex, the stdlib, or a library already does (parsing dates, extracting emails/JSON, sorting, classifying with fixed labels). Runs locally, no model, no API key, nothing phones…

theadamdanielsson/overllm · 119 tokens

good-skill

Converts CSV exports to Parquet and validates them against a declared schema, reporting type mismatches per column. Use when the user asks to convert, compact, or validate tabular data files before loading them into a warehouse.

0xNagato/skill-lint · 49 tokens

needs-work

A powerful and flexible utility for handling reports of many different kinds, with advanced formatting options and excellent output quality.

0xNagato/skill-lint · 25 tokens

agent-carnet

Use this skill when the user asks to save, recall, find, or organize notes. Triggers on: 'remember this', 'save this', 'note this', 'what did we discuss about...', 'check the notebook', 'find in carnet'. Also use proactively when discovering findings worth preserving across sessions.

yamadashy/repomix · 67 tokens

deploy-docker-compose

Run the Omnigent server as a Docker compose stack (server + Postgres) on any Docker host — your laptop, a VPS, EC2 by hand, or as the base layer of any container-platform deploy. Invoke when the user wants to build the image, bring up the compose stack, debug the stack on a host they already have, or extend the stack…

omnigent-ai/omnigent · 84 tokens

security-audit

Audit a codebase or directory for security issues (hardcoded secrets, injection, unsafe deserialization, weak crypto, authz gaps) and produce a structured findings report. Use when the user asks for a security review, an audit, or to check code for vulnerabilities. Report only — never fix.

omnigent-ai/omnigent · 64 tokens