make-skill-template

Scaffolds new Agent Skills with SKILL.md frontmatter and directory structure.

Updated Aug 28, 2026
One-click install
npx skills add https://github.com/miyake-san/sogo-agent-platform --skill make-skill-template-miyake-san
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: make-skill-template
Source: https://github.com/miyake-san/sogo-agent-platform/tree/main/skills/core/make-skill-template
Command: npx skills add https://github.com/miyake-san/sogo-agent-platform --skill make-skill-template-miyake-san

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Creating a new Agent Skill requires knowing the exact SKILL.md frontmatter format, naming rules, and directory conventions, and mistakes in any of these prevent the skill from being discovered or validated. ## Core Features & Use Cases - Skill Scaffolding: Generates a new skill folder with a correctly formatted SKILL.md file including name and description frontmatter. - Frontmatter Guidance: Documents field constraints such as name length limits, description requirements, and optional fields like license and allowed-tools. - Directory Structure Support: Explains when and how to add optional scripts, references, assets, and templates folders. - Use Case: When you want to add a specialized capability to GitHub Copilot, ask to create a skill and receive a complete, valid skill directory ready to customize and validate. ## Quick Start Ask the agent to create a new skill named for your capability and it will scaffold the SKILL.md file with proper frontmatter and structure.

Frequently Asked Questions about make-skill-template

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

FAQPage Schema
How do I create a new Agent Skill for GitHub Copilot?

Create a lowercase hyphenated folder containing a SKILL.md file with YAML frontmatter defining name and description. The description must explain what the skill does and when to use it, since it drives automatic skill discovery.

What frontmatter fields are required in a SKILL.md file?

Only name and description are required. Name must be 1-64 lowercase characters matching the folder name, and description must be 1-1024 characters covering capabilities and triggers. Optional fields include license, compatibility, metadata, and allowed-tools.

Why is my Agent Skill not being discovered?

Discovery failures usually come from a weak description field. Add specific keywords, trigger phrases, and scenarios users might mention, and verify the name field exactly matches the folder name in lowercase with hyphens.

When should I add scripts, references, or assets folders to a skill?

Add scripts for executable automation, references for documentation the agent reads on demand, and assets for static files used as-is like images or templates. Only include them when the skill's instructions actually reference those resources.

What are the naming rules for an Agent Skill folder?

Folder names must be lowercase letters, numbers, and hyphens only, with no consecutive hyphens, and must exactly match the name field in the SKILL.md frontmatter. Validation fails if these constraints are violated.