A collection of reusable skills for AI agents. Compatible with skills.sh.
Install any skill using the skills CLI:
npx skills add https://github.com/CodeLab614/agent-skills --skill <skill-name>| Skill | Description |
|---|---|
| typescript-best-practices | TypeScript best practices and patterns for clean, type-safe code |
These skills work with:
- Claude Code
- Cursor
- GitHub Copilot
- Windsurf
- Gemini
- Cline
- Goose
- Roo
- OpenCode
- And more...
Each skill follows this structure:
skills/
└── my-skill/
├── SKILL.md # Main skill instructions (required)
├── AGENTS.md # Expanded version for LLMs (required)
├── README.md # Human documentation (recommended)
├── metadata.json # Skill metadata (required)
└── rules/ # Individual rule files (optional)
{
"name": "my-skill",
"version": "1.0.0",
"description": "Short description of the skill",
"author": "CodeLab614",
"tags": ["tag1", "tag2"],
"agents": ["claude", "cursor", "gemini", "copilot", "windsurf"]
}---
name: my-skill
description: When this skill should be activated
---
# Skill Title
Instructions for the AI agent...- Fork this repository
- Create a new skill in
skills/your-skill-name/ - Follow the structure above
- Submit a pull request
MIT