main
LLM Skills
A collection of reusable skill prompts and behavioral guidelines for LLM agents.
Each skill lives in its own directory and is described in a SKILL.md file.
Structure
llm-skills/
└── senior-coder/
└── README.md
└── SKILL.md
senior-coder/— Behavioral guidelines to reduce common LLM coding mistakes.
Adding a new skill
- Create a directory named after the skill (e.g.
my-skill/). - Add a
SKILL.mdfile with YAML frontmatter containing at leastname,description, andlicense. - Write the skill content in Markdown.
Example SKILL.md:
---
name: my-skill
description: What this skill does and when to use it.
license: MIT
---
# SKILL.md
Skill content here.
Usage
Reference skills by their directory name. Tools that load skills expect a SKILL.md file inside the skill directory.
License
MIT unless a skill specifies otherwise.
Languages
Markdown
100%