template-skill

Provides a starter template structure for authoring new agent skills.

Updated Feb 17, 2026
One-click install
npx skills add https://github.com/wolfmanstout/agent-skills --skill template-skill-wolfmanstout
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: template-skill
Source: https://github.com/wolfmanstout/agent-skills/tree/main/subtrees/skills/template
Command: npx skills add https://github.com/wolfmanstout/agent-skills --skill template-skill-wolfmanstout

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Creating a new agent skill from scratch requires knowing the correct SKILL.md structure, frontmatter fields, and directory conventions, which this template provides as a ready-made starting point. ## Core Features & Use Cases - Standardized Frontmatter: Includes the mandatory name and description YAML fields required for skill discovery. - Instruction Placeholder: Offers a clearly marked section where skill authors insert operational instructions. - Use Case: A developer building a new skill for a coding agent copies this template, replaces the placeholder name and description, and writes the skill's instructions without worrying about structural requirements. ## Quick Start Copy this template directory and replace the placeholder name, description, and instructions with your new skill's content.

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 agent skill from scratch?

Copy this template directory, then edit the SKILL.md file to replace the placeholder name and description in the YAML frontmatter. Add your skill's operational instructions in the Markdown body below the frontmatter.

What fields are required in a SKILL.md file?

A valid SKILL.md requires YAML frontmatter containing at least a name and a description field. The Markdown body after the frontmatter holds the instructions loaded when the skill activates.

Can I add scripts or reference files 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 data.

Why is my skill not being discovered by the agent?

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 formatted.