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 --listPython coding best practices for data and consulting projects. Covers code style, type hints, error handling, project structure, data handling, testing, logging, and security.
Use when:
- Writing new Python scripts or modules
- Reviewing or refactoring existing Python code
- Building data pipelines or ETL workflows
- Developing APIs or CLI tools
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