https://github.com/bermudi/skills
https://github.com/bermudi/skills
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/bermudi/skills
- Owner: bermudi
- Created: 2026-04-13T21:42:04.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-12T18:59:21.000Z (about 1 month ago)
- Last Synced: 2026-05-12T20:39:06.267Z (about 1 month ago)
- Language: Python
- Size: 402 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# Skills Repository
A collection of [Agent Skills](https://agentskills.io) for extending AI agent capabilities.
## Strategy
Each skill lives on its own branch. This keeps skills isolated and makes it easy to:
- Review skills independently via PRs
- Test skills in isolation before merging
- Maintain version history per skill
- Delete or archive skills without affecting others
## Structure
```
skills/
├── main/ # Aggregation of all published skills
├── skill-name/ # Branch: contains skill directory
│ └── SKILL.md # Required: metadata + instructions
│ ├── scripts/ # Optional: executable code
│ ├── references/ # Optional: documentation
│ └── assets/ # Optional: templates, resources
```
## Adding a Skill
1. Create a new branch from `main`: `git checkout -b skill-name`
2. Create the skill directory: `mkdir skill-name`
3. Write `skill-name/SKILL.md` with required frontmatter
4. Add any supporting files in `scripts/`, `references/`, `assets/`
5. Open a PR to merge into `main`
## Current Skills
See [skills-ref](https://github.com/agentskills/agentskills/tree/main/skills-ref) for validation tool:
```bash
skills-ref validate ./skill-name
```