Agent Skills for Claude Code, Codex, and other AI agents.
skills/
├── skills/ # Individual skill folders
│ └── [skill-name]/
│ ├── SKILL.md # Required: Instructions + metadata
│ ├── scripts/ # Optional: Executable code
│ ├── references/ # Optional: Documentation
│ └── assets/ # Optional: Templates, images
├── spec/ # Agent Skills specification
└── template/ # Starter template for new skills
- Copy the
template/folder and rename it - Edit
SKILL.mdwith your skill's instructions - Add any scripts, references, or assets as needed
---
name: my-skill-name
description: A clear description of what this skill does and when to use it
---
# My Skill Name
[Instructions that the agent will follow when this skill is active]
## Examples
- Example usage 1
- Example usage 2
## Guidelines
- Guideline 1
- Guideline 2# Install a skill from this repo
claude skill install isandrel/skills/skills/[category]/[skill-name]# Install for any agent that supports openskills
openskills install isandrel/skills/skills/[category]/[skill-name]AGPL-3.0