██████╗ ███╗ ███╗███████╗ ███████╗██╗ ██╗██╗██╗ ██╗ ███████╗
██╔══██╗████╗ ████║██╔════╝ ██╔════╝██║ ██╔╝██║██║ ██║ ██╔════╝
██████╔╝██╔████╔██║███████╗ ███████╗█████╔╝ ██║██║ ██║ ███████╗
██╔══██╗██║╚██╔╝██║╚════██║ ╚════██║██╔═██╗ ██║██║ ██║ ╚════██║
██████╔╝██║ ╚═╝ ██║███████║ ███████║██║ ██╗██║███████╗███████╗███████║
╚═════╝ ╚═╝ ╚═╝╚══════╝ ╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝╚══════╝
Reusable AI agent skills for our engineering team — composable instructions that extend coding agents (Claude Code, Cursor, Codex CLI, etc.) with company-specific workflows and best practices.
| Skill | Description |
|---|---|
| codeunit-analyzer | Comprehensive C-AL performance analyzer for Classic Microsoft Dynamics NAV (Navision). Targets Classic NAV anti-patte… |
| coding-guidelines | Apply and enforce project coding standards during any code generation, review, or refactoring session. Use this skill… |
| coding-guidelines-python | Apply and enforce Python-specific coding standards. Use alongside coding-guidelines for any Python file — covers typi… |
| coding-guidelines-typescript | Apply and enforce TypeScript-specific coding standards. Use alongside coding-guidelines for any TypeScript file — cov… |
| databricks-cli | Databricks CLI operations: auth, profiles, data exploration, bundles, and notebook execution. Use this skill for ANY… |
| deslop | Remove AI slop from code and pull requests. Use this skill whenever the user wants to clean up AI-generated code, rev… |
| fabricks-glossary | Use this skill whenever company-specific jargon, acronyms, or domain terminology is needed to answer correctly. |
| fabricks-sql-analyzer | Analyzes all SQL files in the Fabricks.Runtime repository, builds a dependency DAG, runs performance heuristics, and… |
| fastapi-guideline | Use this skill whenever working with FastAPI — building APIs, adding routes, structuring projects, streaming response… |
| init-app-stack | Use this skill whenever the user wants to bootstrap, scaffold, or initialize a new full-stack app with a Nuxt + Nuxt… |
| postgres-best-practices | PostgreSQL coding standards for Python projects using psycopg (no ORM). Use this skill whenever the user is writing o… |
| postgres-test-setup | Set up and work with a local PostgreSQL test database in Docker for integration/e2e tests. Use this skill whenever th… |
| scientific-revision | Use this skill whenever the user wants to verify, revise, or improve a scientific essay, academic paper, or any writt… |
| sql-optimization | "Universal SQL performance optimization assistant for comprehensive query tuning, indexing strategies, and database p… |
The skills CLI reads directly from GitHub — no registration needed.
npx skills add https://github.com/bmsuisse/skills --skill <skill-name>npx skills add https://github.com/bmsuisse/skillsThe CLI auto-detects your agent platform and installs into the right directory:
| Platform | Directory |
|---|---|
| Claude Code | .claude/skills/ |
| Cursor | .cursor/rules/ |
| Codex CLI | ~/.codex/skills/ |
| Antigravity | .agents/skills/ or .agent/skills/ |
| Gemini CLI | auto-detected |
https://skills.sh/bmsuisse/skills/<skill-name>
Skills appear on the skills.sh leaderboard automatically based on install telemetry — no manual registration required.
Start a new session and ask your agent something that should trigger the skill.
Use skill-creator to guide you through the full lifecycle — drafting, test cases, evaluation, and iteration:
npx skills add https://github.com/anthropics/skills --skill skill-creatorThen ask your agent: "Help me create a skill for X" and it will walk you through intent capture, writing the SKILL.md, running test cases, reviewing results, and iterating until the skill is ready.
Each skill lives in its own directory under skills/:
skills/
└── your-skill-name/
├── SKILL.md ← required: instructions + YAML frontmatter
├── scripts/ ← optional: helper scripts
├── references/ ← optional: reference documentation
└── assets/ ← optional: templates, icons, etc.
---
name: your-skill-name
description: What the skill does and when to trigger it. Be specific — this is how the agent decides whether to use it.
---
# Your Skill
Instructions for the agent to follow...- Create a branch:
git checkout -b skill/<skill-name> - Create
skills/<skill-name>/SKILL.md - Merge to
main— CI auto-updates the Available Skills table above
.
├── skills/ ← canonical skill sources
│ └── <skill-name>/
│ ├── SKILL.md
│ ├── scripts/
│ └── references/
├── .agents/skills/ ← runtime: Antigravity (git-ignored)
├── .claude/skills/ ← runtime: Claude Code (git-ignored)
├── scripts/update_readme.py ← auto-generates the skills table in README.md
└── .github/workflows/ ← CI: auto-updates README on push to main
The
Available Skillstable is auto-generated by CI on every push tomain. Never edit it manually.
npx skills update