Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Skill Template (skill-template)

A copy-and-edit SKILL.md scaffold for authoring a new Claude Code skill.

UtilitiesBeginner5,864568AI score 5/10Last updated: Aug 27, 2026

What it does

  • Gives you the standard SKILL.md skeleton for a brand-new Claude Code skill.
  • Ships with complete frontmatter (name, description, version, author, tags, license) plus a body outline.
  • The outline covers Goal / Usage (inputs & outputs) / 3-step core logic / Caveats / 2 examples, nudging you to document the trigger conditions people usually forget.
  • Demonstrates useful conventions: input parameters as a markdown table, output described as a JSON block.
  • Note: every field is a <placeholder> — installing it as-is does nothing until you fill it in. Docs are written in Chinese.

Who it's for

  • First-time Claude Code skill authors.
  • Teams that want a consistent document format across many internal skills.
  • Anyone unsure what sections a SKILL.md should contain.

Examples

  1. Build a meeting-notes summarizer — copy the folder to meeting-summary, set the trigger to "user pastes a meeting transcript", and fill the core logic with "split speakers → extract decisions → output an action-item table".
  2. Team code-review rules skill — declare diff and language in the input table, define the output JSON as an array of findings, then share it with the team.
  3. Use it as an audit checklist — compare an existing skill against the template's sections (trigger, caveats, examples) and patch whatever is missing.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/anbeime/skill/HEAD/skills/_template/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the skills/_template folder from the GitHub repo anbeime/skill into my ~/.claude/skills/skill-template/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/anbeime/skill.git && cp -r skill/skills/_template ~/.claude/skills/my-new-skill

This is a third-party skill. Check the source repository before installing.

  1. Open your terminal.
  2. Clone the repo: git clone https://github.com/anbeime/skill.git
  3. Create the skills folder if needed: mkdir -p ~/.claude/skills
  4. Copy the template under a new name: cp -r skill/skills/_template ~/.claude/skills/my-new-skill
  5. Open ~/.claude/skills/my-new-skill/SKILL.md in your editor.
  6. Change the frontmatter name to match the folder, and write a description that states exactly when Claude should invoke the skill.
  7. Replace every <...> placeholder with real content — especially the two worked examples.
  8. Restart Claude Code and mention the matching scenario to verify the skill triggers.