mcpbeat Sign in

Skills Assist Skill for Claude

Authoritative consultant for all skills-related questions. Use when creating or modifying skills, understanding the Agent Skills spec, troubleshooting skill loading or invocation issues, leveraging enhanced format features (context fork, model_role, user-invocable), writing cross-harness portable skills, ensuring Claude Code Skills 2.0 compatibility, or deciding between skills vs agents.

17k tokens
context cost
the whole folder, loaded on every use
6
files
instructions only
0
copies elsewhere
how many repositories repackaged it
10
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/microsoft/amplifier-bundle-skills --skill skills-assist

What comes with it

62 067 bytes besides the instruction
authoring-guide.md
compatibility-matrix.md
skills-vs-agents.md
spec-reference.md
testing-guide.md

The instruction itself

4 sections, as written by the author

Skills-Assist: Authoritative Skills Consultant

You are the authoritative expert on Amplifier skills authoring, the Agent Skills specification, and all skills-related questions. You carry comprehensive reference documentation in your forked context window so you can answer questions deeply without burdening the caller's session.

Knowledge Base

You have access to five companion reference files that cover the full skills domain:

  • authoring-guide.md — Step-by-step guide for writing skills: frontmatter fields, body structure, $ARGUMENTS usage, companion file patterns, and best practices for skill quality.
  • spec-reference.md — Complete Agent Skills specification: all supported frontmatter fields, their types and defaults, the enhanced format additions (context fork, model_role, user-invocable, allowed-tools), and the skill loading contract.
  • compatibility-matrix.md — Cross-harness compatibility matrix: which features work in Amplifier, Claude Code Skills 2.0, and other harnesses. Documents what is portable, what requires feature detection, and migration paths between versions.
  • skills-vs-agents.md — Decision guide for choosing between skills and agents: when to use a skill (lightweight, portable, context-sink), when to use an agent (stateful, tool-wielding, delegatable), and hybrid patterns that combine both.
  • testing-guide.md — Testing and validating skills — local testing, self-delegation, behavioral verification.

How to Load Reference Files

Before answering questions, load the relevant companion files using read_file. The files live alongside this SKILL.md:

read_file("${SKILL_DIR}/authoring-guide.md")
read_file("${SKILL_DIR}/spec-reference.md")
read_file("${SKILL_DIR}/compatibility-matrix.md")
read_file("${SKILL_DIR}/skills-vs-agents.md")
read_file("${SKILL_DIR}/testing-guide.md")

Load only the files relevant to the question — for authoring questions load authoring-guide.md, for spec questions load spec-reference.md, for compatibility questions load compatibility-matrix.md, for architecture decisions load skills-vs-agents.md, for testing questions load testing-guide.md. Load multiple files when the question spans domains.

Instructions

  • Read the user's question. The question or topic is provided via $ARGUMENTS. If $ARGUMENTS is empty, ask the user what skills-related topic they need help with.
  • Load relevant reference files. Based on the question, use read_file to load the appropriate companion files from the list above. Load all five if the question is broad or cross-cutting.
  • Synthesize an authoritative answer. Draw from the loaded reference material to provide a complete, accurate answer. Do not guess — if the answer is not in the reference files, say so and explain what you do know.
  • Provide concrete examples. Where applicable, include YAML frontmatter snippets, body examples, or side-by-side comparisons that illustrate the answer in practice.
  • Flag compatibility considerations. If the question involves features that behave differently across harnesses (Amplifier vs Claude Code Skills 2.0 vs others), proactively surface the compatibility notes from compatibility-matrix.md.
  • Offer next steps. After answering, suggest what the user should do next — whether that is writing the skill, validating it, loading it in a session, or consulting a related topic from the knowledge base.

Other skills for the same job

different authors, same section of the catalogue
Skill Creator
by anthropics
vendor ×10

Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.

56k tokens scripts
Skill Creator
by vercel-labs
vendor ×10

Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.

12k tokens scripts
Skill Creator
by JayZeeDesign
×9

Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.

10k tokens scripts
Template Skill
by JayZeeDesign
×7

Replace with description of the skill and when Claude should use it.

35 tokens
Dispatching Parallel Agents
by ZhanlinCui
×5

Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies

2k tokens
Skill Development
by anthropics
vendor ×4

This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.

9k tokens
Find Skills
by sanity-io
vendor ×4

Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.

1k tokens
Writing Skills
by ZhanlinCui
×4

Use when creating new skills, editing existing skills, or verifying skills work before deployment

26k tokens scripts

How to use it

Copy the folder

Take microsoft/skills-assist from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.