skill-creator
Installation
Summary
Comprehensive guide for creating effective Agent Skills for Apollo GraphQL and GraphQL development.
- Provides complete skill structure requirements including mandatory
SKILL.mdfrontmatter, naming conventions, and optional reference file organization - Covers best practices for writing skill descriptions with numbered trigger conditions, body content with progressive disclosure, and reference file management
- Includes Apollo Voice style guidelines emphasizing approachable, opinionated, action-oriented language with specific formatting rules for headings, code, and lists
- Details semantic versioning strategy and pre-publication checklist covering metadata validation, line limits, code accuracy, and ground rules formatting
SKILL.md
Skill Creator Guide
This guide helps you create effective skills for Apollo GraphQL and GraphQL development following the Agent Skills specification.
What is a Skill?
A skill is a directory containing instructions that extend an AI agent's capabilities with specialized knowledge, workflows, or tool integrations. Skills activate automatically when agents detect relevant tasks.
Directory Structure
A skill requires at minimum a SKILL.md file:
skill-name/
├── SKILL.md # Required - main instructions
├── references/ # Optional - detailed documentation
│ ├── topic-a.md
│ └── topic-b.md
├── scripts/ # Optional - executable helpers
Related skills