Skill2Web
  • Skills
  • Convert a Skill
  • Pricing
Explore Skills
Skill2Web

Turn public source material and Agent Skills into searchable, source-backed conversations.

Product
HomePricingConvert a SkillWhat are Agent Skills?Claude Code SkillsSupportConversationsFeedback
© 2026 Skill2Web, All rights reserved
Privacy PolicyTerms of ServiceCookie settings

Claude Code Skills: What They Are and How to Share Them

Claude Code Skills are folders of instructions, scripts, and resources that extend what Claude Code can do. When a task matches a Skill's description, Claude Code loads that Skill and follows its playbook instead of improvising. Claude Code Skills follow the SKILL.md format of the Agent Skills open standard, and Claude Code adds its own extensions on top.

Anatomy of a Claude Code Skill

Each Skill is a directory containing a SKILL.md file. A minimal Skill is just frontmatter plus instructions:

my-skill/
├── SKILL.md          # required: frontmatter + instructions
├── scripts/          # optional: deterministic helpers
├── references/       # optional: docs Claude may consult
└── assets/           # optional: templates and files
  • ✓Claude Code treats every frontmatter field as optional: name defaults to the directory name, and description is only recommended. Claude uses the description to decide when the Skill applies, falling back to the first markdown paragraph when it is missing. The Agent Skills open standard requires both fields, so write them anyway if you want the Skill to stay portable.
  • ✓The markdown body holds the working instructions: steps, constraints, output formats, and examples.
  • ✓Larger Skills add folders: scripts/ for deterministic operations, references/ for documentation Claude can consult, and assets/ for templates or files used in the output.

Loading is progressive. Claude Code sees only each Skill's metadata at startup, expands the full SKILL.md when the Skill seems relevant, and opens bundled files on demand. You can install many Skills without paying their context cost up front.

Where Claude Code Skills live

Two scopes cover most workflows:

Personal: ~/.claude/skills

Available in every project on your machine. Good for your own routines: commit conventions, review checklists, preferred report formats.

Project: .claude/skills

Checked into the repository and shared with everyone who clones it. Good for team knowledge: deploy runbooks, coding standards, domain playbooks.

Claude Code invokes a matching Skill on its own, and you can also call one explicitly with /skill-name in the prompt.

Using a Skill vs. sharing what it knows

Project Skills spread easily among developers: they ride along with the git repository. But every recipient still needs Claude Code, a terminal, and the habit of working in repos. That excludes most clients, stakeholders, and readers who simply want the answers inside your Skill.

A browser version removes that barrier. Skill2Web converts a public Skill into a web app: a focused chat page whose answers cite the Skill's own material, shareable as a URL with nothing to install. The conversion reads files only and never executes repository scripts.

Turn your Claude Skill into a web app

Keep reading

What are Agent Skills? The open SKILL.md standardExplore live AI web apps built from Agent Skills

Official documentation

  • Claude Code Skills documentation
  • Agent Skills open standard