template-skill

Provides a placeholder SKILL.md scaffold for authoring new skill units.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? This Skill serves as a starting scaffold for developers creating new skill units, providing the mandatory SKILL.md structure with YAML frontmatter so new skills are discoverable and correctly formatted from the start. ## Core Features & Use Cases - Frontmatter Scaffold: Includes the required name and description YAML fields needed for skill discovery. - Instruction Placeholder: Contains a marked section where operational instructions for the AI are written. - Use Case: When bootstrapping a new skill inside a Next.js project's .agents/skills/ directory, copy this template and replace the placeholder name, description, and instructions with your skill's actual behavior. ## Quick Start Duplicate the template-skill directory, rename it, and replace the placeholder frontmatter and instructions with your new skill's details.

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-skill directory, rename the folder, then edit SKILL.md to replace the placeholder name and description in the YAML frontmatter and write your operational instructions in the Markdown body.

What fields are required in SKILL.md frontmatter?▼

The YAML frontmatter must define at least a name and a description. These fields are used for skill discovery, while the Markdown body below provides the instructions loaded when the skill activates.

Where should skill directories be placed in a project?▼

Skill directories are placed under the .agents/skills/ path, with each skill as a self-contained folder containing its own SKILL.md entry point and optional scripts, references, or assets subdirectories.

Can a skill include scripts or reference files?▼

Yes. A skill may include optional scripts/, references/, and assets/ directories alongside SKILL.md. Scripts handle deterministic tasks, references provide in-depth reading material, and assets store document resources.