skill-creation-walkthrough

skill-creation-walkthrough is a skill for Claude Code from rampstackco/claude-skills. It costs 135 tokens per session (3,061 once invoked), scanned A, original, MIT.

A step-by-step guide to creating reusable Claude Skills: instruction files that teach Claude how to follow a particular workflow. It covers deciding whether a skill fits, writing its SKILL.md file, organizing references, and testing its triggers.

In plain words
What is it for?
Use it to design, write, review, publish, and improve a Claude Skill for yourself or other users.
Why use it?
It helps turn repeated prompts or domain-specific procedures into something reusable. It also addresses skills that fail to activate reliably or contain poorly organized guidance.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the rampstack-skills plugin — 103 skills shipped together

Good fit Use it to design, write, review, publish, and improve a Claude Skill…

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

Made for: Claude Code.

Or install rampstack-skills, the plugin that ships this one along with the rest of its 103 skills.

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 skill-creation-walkthrough

README.md
[![agentmods](https://agentmods.dev/badge/skills/rampstackco/claude-skills/skill-creation-walkthrough.svg)](https://agentmods.dev/skills/rampstackco/claude-skills/skill-creation-walkthrough)
Your own site
<a href="https://agentmods.dev/skills/rampstackco/claude-skills/skill-creation-walkthrough"><img src="https://agentmods.dev/badge/skills/rampstackco/claude-skills/skill-creation-walkthrough.svg" alt="Measured on agentmods" height="20"></a>
Per session 135 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,061 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.00135 $0.03061
Opus 5 $0.00068 $0.01530
Sonnet 5 $0.00027 $0.00612
Haiku 4.5 $0.00014 $0.00306

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

Security

Grade A, and why

skill-creation-walkthrough 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 3d 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.

Origin

Copies of this mod

2 near-identical copies found in the catalogue:

skills/skill-creation-walkthrough/SKILL.md · 262 lines

How it starts

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

A walkthrough for designing, writing, and maintaining your own Claude Skills. Covers when a skill is the right shape for your problem, how to write a description that actually triggers, how to structure SKILL.md and references, and how to test and iterate.

When to use

  • You catch yourself writing the same prompt or instructions repeatedly.
  • You want to package a workflow or framework for reuse.
  • An existing skill of yours is not triggering when it should.
  • You are publishing skills for others to use.
  • You want to teach Claude a domain-specific way of working.
  • You are reviewing a skill someone wrote and need a quality bar.

When NOT to use

  • For one-off prompts (just write the prompt).
  • For information that should live in system context, not progressive disclosure.
  • For changing Claude's general behavior across all conversations (use Claude.ai settings or system prompts, not skills).
  • For replacing tool calls (skills are instructions, not tools).

Required inputs

  • The task or workflow you want to encode.
  • The audience: who will trigger this skill, in what kind of conversation.
  • Existing artifacts: prompts you have used, docs you have written, examples of good output.

The framework: how skills work

A Skill is a folder with a SKILL.md file. The SKILL.md has YAML frontmatter (name and description) and a body with instructions. It can also include reference files, scripts, or templates that get loaded when needed.

The key property: progressive disclosure. Claude does not read every skill on every turn. The skill description lives in the system prompt. The SKILL.md body and references load only when the skill is triggered. This is what lets a user have hundreds of skills without polluting context.

What this means for you:

  • The description is everything for triggering. Get it right or the skill never loads.
  • The SKILL.md body is for the workflow itself.
  • The references are for content that does not need to be in every invocation: long checklists, templates, examples, deep reference material.

Read the full file on GitHub · 262 lines

Files

What ships with it

3 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. 3d ago First seen · 262 lines · 135 tokens per session scan A d9562ff1d9ee

Subscribe to this mod's changes

skill-creation-walkthrough is a skill published in the GitHub repository rampstackco/claude-skills (822 stars, last pushed 9d ago), licensed MIT. It adds 135 tokens to every session and 3,061 once invoked, about $0.0007 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-09-03.

Related

Other skills, from other repositories

academic-pptx

Use this skill whenever the user wants to create or improve a presentation for an academic context — conference papers, seminar talks, thesis defenses, grant briefings, lab meetings, invited lectures, or any presentation where the audience will evaluate reasoning and evidence. Triggers include: 'conference talk'…

Gabberflast/academic-pptx-skill · 164 tokens

career-path-planner

Career goal mapping with skill gap analysis, actionable development plans, and milestone tracking. Use when planning career transitions, identifying skill gaps, setting professional development goals, or evaluating career options.

travisjneuman/.claude · 41 tokens

case-interview-practice

Interactive consulting case interview practice with structured frameworks, feedback mechanisms, and progressive difficulty. Use when preparing for management consulting interviews, case competitions, or business problem-solving exercises.

travisjneuman/.claude · 39 tokens

debate-practice-coach

Interactive debate and argument practice with structured feedback, counterargument generation, logical fallacy identification, and scoring rubrics. Use when preparing for debates, improving persuasion skills, or practicing argumentation.

travisjneuman/.claude · 45 tokens

course-material-creator

Create custom educational materials including syllabi, lesson plans, assessments, reading lists, and learning objectives. Use when building course curricula, training programs, workshops, or educational content.

travisjneuman/.claude · 40 tokens

stuck

Diagnoses a broken course setup by reading the folder, so the student never has to describe the problem in English. Takes no argument. Reports which class they are on and which files are filled, then names one blocker and one fix: Claude Code opened at the wrong level, .claude/skills/ missing, skills not loading…

mshadmanrahman/claude-for-designers · 161 tokens