Reference
The Claude Code skills glossary
26 terms you run into the moment you open your first SKILL.md —
defined in plain English, checked against the official docs and against the skills we've
actually installed. Where a term is easier to see than explain, we link a tested skill.
Nothing matches. Try a broader word — or browse the guides.
A
4 terms- Agent Skill An Agent Skill is a folder containing a SKILL.md and supporting files, extending AI agent capabilities.
- AGENTS.md AGENTS.md is a convention for repository instructions for coding agents.
- allowed-tools SKILL.md frontmatter field granting Claude permission to use specific tools without asking.
- Auto memory Auto memory stores Claude's notes to itself across sessions in markdown files.
C
5 terms- CLAUDE.md CLAUDE.md is a markdown file of persistent instructions Claude reads at the start of every session.
- .claude/rules/ The .claude/rules/ directory holds project-specific instructions, splitting CLAUDE.md into smaller topic files.
- Compaction Compaction summarizes conversations to free context window space, automatically or on command.
- Context window The context window is the total span of tokens the model can see at once, including prompts, definitions, history, and file contents.
- context: fork Runs a skill in isolation within a subagent, using only the skill's content as the prompt.
D
1 termF
1 termH
1 termM
3 terms- MCP (Model Context Protocol) MCP (Model Context Protocol) is an open source standard enabling Claude Code to access external tools, databases, and APIs directly.
- MCP vs skill MCP servers grant Claude new capabilities by connecting to external systems; skills provide knowledge and procedures.
- Model invocation Model invocation is Claude loading a skill automatically when your request matches the skill's description.
P
4 terms- Personal vs project skills Skills can live locally for personal use, within a project, or as part of a plugin.
- Plugin A plugin bundles Claude Code extensions like skills, agents, and servers into a distributable package.
- Plugin marketplace A catalog distributing plugins, offering discovery, version tracking, and updates from sources like git.
- Progressive disclosure Progressive disclosure loads skill content on demand, reducing initial context cost.
S
5 terms- Skill description The description frontmatter field tells Claude Code when to apply a skill.
- Skill vs prompt A skill is a saved, reusable prompt; a prompt is a one-off instruction for a single turn.
- SKILL.md SKILL.md is a markdown file defining a Claude Code skill's behavior, comprising YAML frontmatter and markdown instructions.
- Slash command A slash command is what you type to invoke a skill directly, like /skill-name.
- Subagent A subagent is a specialized assistant with its own context, prompt, tools, and permissions for specific tasks.