https://github.com/devitools/skills
Coding agents skills
https://github.com/devitools/skills
agentskills ai skills skillshare
Last synced: about 2 months ago
JSON representation
Coding agents skills
- Host: GitHub
- URL: https://github.com/devitools/skills
- Owner: devitools
- License: mit
- Created: 2026-01-28T03:01:00.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-01-28T03:19:38.000Z (2 months ago)
- Last Synced: 2026-01-28T18:58:00.034Z (2 months ago)
- Topics: agentskills, ai, skills, skillshare
- Homepage: https://agentskills.io
- Size: 32.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Coding Agent Skills
A collection of skills for [Coding Agents](https://agentskills.io) that extend AI capabilities for software development workflows.
## What are Skills?
Skills are auto-invoked prompts that guide the coding agents to use specialized tools and follow best practices for specific tasks. Each skill is a self-contained module with documentation, setup instructions, and workflows.
## Available Skills
| Skill | Description |
|-------|-------------|
| [read-codebase](read-codebase/) | Semantic code exploration using Serena MCP for intelligent navigation |
## Installation
1. Clone this repository:
```bash
git clone https://github.com/devitools/skills.git
```
2. Copy the desired skill folder to your project's `.claude/skills/` directory:
```bash
cp -r skills/read-codebase /path/to/your-project/.claude/skills/
```
3. Follow the skill's `setup.md` for any additional configuration.
## Skill Structure
Each skill follows this structure:
```
skill-name/
├── SKILL.md # Main skill definition with frontmatter
├── setup.md # Installation and configuration guide
└── workflows.md # Detailed usage workflows (optional)
```
### SKILL.md Frontmatter
```yaml
---
name: skill-name
description: Brief description of what the skill does
user-invocable: false # true if can be triggered via /skill-name
---
```
## Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines on creating and submitting new skills.
## License
MIT License - see [LICENSE](LICENSE) for details.