Personal agent skills for Claude Code and Cursor — GitHub, Jira, Buildkite, and PR workflows.
| Tool | Supported |
|---|---|
| Claude Code | Yes |
| Cursor | Yes |
# Install all skills globally (into ~/.claude/skills/)
npx skills add -g jmlrt/skills
# Install into the current project only
npx skills add jmlrt/skills
# Selective install
npx skills add -g jmlrt/skills --skill github --skill review-pull-request| Skill | Description | Optional deps |
|---|---|---|
github |
Manage GitHub issues/PRs/repos using the gh CLI. Retrieve context, create/edit issues and PRs, manage workflows, resolve review threads. |
gh CLI |
pull-request |
Author workflow: Create and update PRs, then iterate on review feedback. Covers templates, title/body preferences, file validation. | gh CLI |
review-pull-request |
Reviewer workflow: Validate PR readiness before merge. Single PR: full review with triage comments, code analysis, test execution, Jira alignment. Multiple PRs: parallel batch triage with summary table and decisions. | gh CLI; jira skill (optional) |
python-development |
Production patterns for modern Python development: uv, ruff, ty, make, pre-commit. Type safety, separation of concerns, error handling, test organization. | None (reference only) |
jira |
Read Jira tickets and epics using the Atlassian CLI (acli). Requires {JIRA_BASE_URL} configured. |
acli CLI |
buildkite |
Trigger and inspect Buildkite builds using the bk CLI. |
bk CLI |
pull-requestuses thegithubskill for allghCLI operations.review-pull-requestuses thegithubskill for allghreads and thejiraskill for ticket context (graceful fallback if not installed).python-developmentis a reference skill (no external dependencies).
The jira skill uses {JIRA_BASE_URL} as a placeholder. Set your instance URL in your workspace CLAUDE.md or AGENTS.md:
## Jira configuration
JIRA_BASE_URL=https://yourorg.atlassian.net# Clone and install as symlinks (edits are picked up immediately)
git clone git@github.com:jmlrt/skills.git ~/Code/jmlrt/skills/
cd ~/Code/jmlrt/skills/
npx skills add -g ./After that, editing any SKILL.md file takes effect immediately — no reinstall needed.
npx skills update # update all installed skills
npx skills check # check for updates without installing