skills-guide

Create, organize, and maintain Claude Skills with structured SKILL.md files.

2|2|Updated Feb 22, 2026
One-click install
npx skills add https://github.com/mxzinke/atlas --skill skills-guide-mxzinke
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skills-guide
Source: https://github.com/mxzinke/atlas/tree/main/app/defaults/skills/skills-guide
Command: npx skills add https://github.com/mxzinke/atlas --skill skills-guide-mxzinke

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Skills are structured knowledge packs that teach the agent how to handle specific domains. This guide helps teams create, organize, and maintain Claude Skills with consistent naming, structure, and discovery, reducing confusion and ensuring reusability across projects.

Core Features & Use Cases

  • Frontmatter defines skill identity (name + description) used for discovery and activation.
  • SKILL.md body contains core instructions loaded into context upon activation.
  • Optional directories (references/, scripts/, assets/) load on demand as directed by SKILL.md.
  • Naming and structure rules ensure a uniform catalog and predictable loading.
  • Skills can be loaded on demand and combined with references/scripts/assets for richer behavior.

Quick Start

Create a new skill folder under skills/ named my-new-skill, add SKILL.md with proper frontmatter, and place any references, scripts, or assets as needed.

Frequently Asked Questions about skills-guide

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
What is a Claude Skill and how does its structure work?

A Claude Skill is a structured knowledge pack teaching the agent specific domains. Its structure relies on frontmatter for identity and discovery, a SKILL.md body for core instructions, and optional directories like references/ and scripts/ that load on demand.

How do I create a new Claude Skill for my project?

To create a Claude Skill, make a new folder under skills/, add a SKILL.md file with proper frontmatter defining the name and description, and place any required references, scripts, or assets in their respective optional directories.

How does frontmatter affect skill discovery and loading behavior?

Frontmatter defines a skill's identity through its name and description, which are used for agent discovery and activation. The SKILL.md body contains the core instructions loaded into context upon activation.

What is the best way to organize and maintain reusable Claude Skills?

The best way to organize reusable Claude Skills is to follow consistent naming and structure rules. This ensures a uniform catalog, predictable loading behavior, and reduces confusion across projects when updating existing skills.

Do I need to include optional directories like scripts and assets when building a skill?

No, directories like references/, scripts/, and assets/ are optional and load on demand as directed by SKILL.md. You only need to create them if your skill requires richer behavior combining these external resources.