template-skill

Provides a starter scaffold for authoring new Claude Code skills.

8|3|Updated Oct 20, 2025
One-click install
npx skills add https://github.com/chongdashu/claude-code-skills-demo --skill template-skill-chongdashu
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: template-skill
Source: https://github.com/chongdashu/claude-code-skills-demo/tree/main/.claude/skills/template-skill
Command: npx skills add https://github.com/chongdashu/claude-code-skills-demo --skill template-skill-chongdashu

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Creating a new Claude Code skill from scratch requires knowing the expected directory structure and SKILL.md frontmatter format, and this template removes that guesswork by providing a ready-to-fill starting point. ## Core Features & Use Cases - Standard Skill Structure: Ships with the mandatory SKILL.md file containing the required name and description YAML frontmatter. - Authoring Placeholder: Includes clearly marked placeholder text indicating where to write the skill description and operational instructions. - Use Case: When building a custom skill for your project, copy this directory, rename it, and replace the placeholder frontmatter and instructions with your own workflow logic. ## Quick Start Copy the template-skill directory, rename it, and replace the placeholder name, description, and instructions in SKILL.md with your own skill definition.

Frequently Asked Questions about template-skill

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

FAQPage Schema
How do I create a new Claude Code skill?

Copy this template directory, rename it to your skill name, and edit SKILL.md. Replace the name and description in the YAML frontmatter, then write your operational instructions in the Markdown body below it.

What is required in a SKILL.md file?

A SKILL.md file must contain YAML frontmatter with at least a name and description field, followed by a Markdown body with instructions. The frontmatter enables discovery while the body provides the operational guidance loaded on activation.

Can I add scripts or references to a skill?

Yes, a skill may include optional scripts, references, and assets directories alongside SKILL.md. Scripts are executed for deterministic tasks, references are read for detailed information, and assets store document resources.

Why is my skill not being discovered by Claude Code?

Discovery fails when SKILL.md is missing, misnamed, or lacks valid YAML frontmatter with name and description fields. Verify the file sits at the skill directory root and the frontmatter is properly delimited.