template-skill

Provides a starter template structure for authoring new Skill units.

Updated May 11, 2026
One-click install
npx skills add https://github.com/javierbadapalacio6-beep/TACTIUM --skill template-skill-javierbadapalacio6-beep
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: template-skill
Source: https://github.com/javierbadapalacio6-beep/TACTIUM/tree/main/TACTIUM/.agents/skills/template-skill
Command: npx skills add https://github.com/javierbadapalacio6-beep/TACTIUM --skill template-skill-javierbadapalacio6-beep

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Creating a new Skill from scratch requires knowing the correct 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 - Standardized Frontmatter: Includes the mandatory name and description YAML fields required for Skill discovery. - Instruction Placeholder: Provides a marked section where operational instructions for the AI are written. - Use Case: When building a new Skill, copy this template directory, replace the placeholder description with a real one, and write your instructions below the heading to produce a valid, discoverable Skill unit. ## Quick Start Copy this template and fill in the description and instructions to create my new Skill.

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 Skill from a template?▼

Copy the template directory, then edit SKILL.md to replace the placeholder name and description in the YAML frontmatter. Write your operational instructions in the Markdown body below the frontmatter.

What fields are required in SKILL.md frontmatter?▼

The YAML frontmatter must define at least a name and a description. These two fields are used for Skill discovery, and the Markdown body after the frontmatter provides the instructions loaded on activation.

Can a Skill include scripts or reference files?▼

Yes, a Skill may optionally include 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?▼

Discovery fails when SKILL.md is missing at the directory root or the frontmatter lacks a name or description. Verify the file is named SKILL.md and the YAML block is properly formatted with both required fields.