A bundle of Skills for AI coding tools — drop-in workflows that any agent (Claude Code, Codex CLI, Gemini CLI, Cursor, OpenCode, GitHub Copilot CLI) can read.
Each skill lives under skills/<name>/ and ships its own SKILL.md, install docs, templates, and assets. The Claude Code plugin marketplace at .claude-plugin/marketplace.json exposes them as installable plugins.
| Skill | What it does | Docs |
|---|---|---|
| sprint | Scrum/kanban-aware development workflow on top of GitHub Projects v2. Issues are requirements; Project fields are state; ADRs in .dev/decisions/. |
SKILL.md · README |
Install the bundle once; every skill in it becomes available:
/plugin marketplace add leverj/ai-skills
/plugin install leverj@leverj-ai-skills
Skills are then invoked as /leverj:<skill> — for example, /leverj:sprint pick 42.
To uninstall:
/plugin uninstall leverj@leverj-ai-skills
/plugin marketplace remove leverj-ai-skills
Skills are filesystem artifacts. Clone the bundle once, then point each tool at the per-skill discovery file.
git clone https://github.com/leverj/ai-skills ~/ai-skillsPer-skill, per-tool install instructions (Codex CLI, Gemini CLI, Cursor, OpenCode, Copilot CLI) live under skills/<skill>/docs/install/<tool>.md — for example, skills/sprint/docs/install/.
-
Copy the scaffold into a new skill directory:
cp -r template/ skills/<new-skill>/
-
Fill in the frontmatter in
skills/<new-skill>/SKILL.md— setnameanddescription, then write the skill body. Reference assets via<SKILL DIR>/<subdir>/<file>so paths resolve regardless of where the skill is installed. -
(Optional) Add per-tool install docs under
skills/<new-skill>/docs/install/<tool>.mdif the skill needs tool-specific setup. -
Register the skill in
.claude-plugin/marketplace.jsonby appending its directory to theleverjplugin'sskillsarray:"skills": [ "./skills/sprint", "./skills/<new-skill>" ]It will then be invokable as
/leverj:<new-skill>. -
Add a row to the Skills in this bundle table above with a one-line description and links to the skill's
SKILL.mdandREADME.md(if present).
.
├── skills/
│ └── <skill>/ # SKILL.md, AGENTS.md, GEMINI.md, docs/, setup/, templates/, …
├── template/ # Minimal SKILL.md scaffold for new skills
├── .claude-plugin/
│ └── marketplace.json # Bundle manifest for the Claude Code plugin marketplace
├── .dev/ # This repo's own sprint state (decisions, sprint-config.json)
├── README.md
└── LICENSE
MIT