A collection of reusable AI agent skills for Yuma projects. Skills follow the skills.sh open format and can be installed into any compatible AI coding agent (Claude, Cursor, Copilot, etc.).
Install all skills from this repository:
npx skills add b12consulting/skillsInstall a specific skill:
npx skills add b12consulting/skills --skill python-best-practicesPreview available skills before installing:
npx skills add b12consulting/skills --listSee the skills/ directory for a full list of available skills, each with its own SKILL.md documentation.
Each skill is a folder under skills/ containing:
SKILL.md— Instructions and guidelines for the agent (required)scripts/— Helper scripts (optional)references/— Supporting documentation (optional)
To add a new skill:
- Create a new folder under
skills/using kebab-case (e.g.skills/my-new-skill/) - Add a
SKILL.mdfile with the following frontmatter:
---
name: my-new-skill
description: A clear description of what this skill does and when to use it.
---
# My New Skill
...- The
namefield must match the directory name exactly.
MIT