Manage agent skills
Personal Agent Skills for AI coding agents — install and update with gh skill
npx -y skills add dbmrq/agent-skills --skill manage-agent-skillsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Create, update, release, and sync skills in the dbmrq/agent-skills repository (source of truth for personal Agent Skills). Use when the user asks to create a new skill, update an existing skill from a conversation or another repo, improve skill authoring practices, publish/release skills, or run install-all / gh skill sync — not when merely using a skill for its domain task.
SKILL.md
7.5 KB, ~1.9k tokens by cl100k_base, as published. Nobody here has run it
Manage agent-skills
Source of truth: dbmrq/agent-skills (skills/<name>/).
Installed copies under agent home dirs are read-only mirrors. Never invent or edit skills there. Never commit install trees (e.g. repo-local .agents/) into git.
Authoring detail (what to include/exclude, update heuristics, templates): references/authoring.md · skeleton: assets/SKILL.template.md
Hard rules
- Edit only in this repo —
skills/<skill-name>/SKILL.md(and siblings). Locate or clonedbmrq/agent-skills; do not patch install paths. - Never write skills into
~/.agents/skills,~/.cursor/skills,~/.claude/skills,~/.codex/skills,~/.pi/agent/skills, or any other agent skills directory (including symlinked hubs under dotfiles). Sync overwrites those. - Never vendor upstream skills listed in
external-skills.jsonor Apple Xcode exports. Update manifests/install only. - Default: ship — validate, commit on
main, pushmain, publish a tag, sync installs. If the user says draft / don’t release / hold, stop after the edit (optional local commit only — no push/tag/sync). - No PRs — push commits directly to
main. Do not open pull requests for skill changes unless the user explicitly asks.
Find the edit target
Resolve in order; stop at the first that is a git checkout of dbmrq/agent-skills with a skills/ directory:
- Current workspace (cwd / git root is this repo)
- An already-open clone elsewhere on the machine
gh repo clone dbmrq/agent-skills(orgit clone https://github.com/dbmrq/agent-skills.git) into a sensible working location, then edit there
Not valid edit targets (even if they contain SKILL.md files): anything under ~/.agents, ~/.cursor/skills, ~/.claude/skills, ~/.codex/skills, ~/.pi/agent/skills, or a dotfiles skills hub that is only an install mirror.
Project-local skills in other repos (e.g. .cursor/skills/ inside an app) only when the user explicitly wants a project-scoped skill — default remains this personal collection.
When not to create a skill
Prefer no new skill when:
- The request is a one-off task or machine-specific note
- An existing skill in
skills/,external-skills.json, or the Xcode set already covers it — update or point users at that instead - Content would only restate what a capable model already knows (see authoring)
Overlap check (before create)
skills/and the README catalogexternal-skills.json(must not vendor; may document install-only)- Apple Xcode skills (see README /
external-skills.jsonxcode_skills) — do not fork into this repo - Optional:
gh skill preview dbmrq/agent-skills <name>andgh skill list
Near-duplicate of a local skill → update that skill (or split/rename deliberately), don’t add a twin.
Create or update
Create
- Pass overlap check and when not to create.
- Choose kebab-case
name(max 64 chars, no consecutive hyphens; must match directory). - Copy assets/SKILL.template.md →
skills/<name>/SKILL.mdand fill it in. Authoring rules: references/authoring.md. - Add a README catalog row.
- Run Release workflow (or draft stop if requested).
Update from a conversation or another repo
- Open the skill under
skills/<name>/in the agent-skills clone. - Distill durable rules — see Update heuristics. Omit secrets, one-off debugging, and chat noise.
- Prefer patching existing sections; add
references/when SKILL.md would bloat. Avoid duplicating another local or external skill. - Run Release workflow (or draft stop if requested).
Release workflow
From the agent-skills repo root, on main (no feature branch / no PR):
gh skill publish --dry-run
git status # skills/** and README.md; never stage .agents/ or other install trees
# commit with a why-focused message, then:
git push -u origin main
# Next tag from REMOTE (local tags are often stale):
latest="$(gh release list --limit 1 --json tagName -q '.[0].tagName')"
# bump per Semver below → e.g. v1.5.0 → v1.6.0
gh skill publish --tag vX.Y.Z
./scripts/install-all.sh
Semver (this repo):
| Bump | When |
|---|---|
patch (v1.5.0 → v1.5.1) | Copy tweaks, small fixes, no new skill |
minor (v1.5.0 → v1.6.0) | New skill, material behavior/content change, new workflow |
| major | Only if intentionally breaking how consumers should use the collection (rare) |
Resolve latest with gh release list or git ls-remote --tags origin — not git tag alone.
- Prefer
./scripts/install-all.shover per-agentgh skill install. - Apple Xcode skills are sourced only from
xcrun agent skills export. If the active Xcode toolchain exports no skills (for example no Xcode beta on this machine yet),./scripts/install-all.shshould warn and skip them without failing the overall sync. - Skill commits may ship without re-asking even when other projects say “ask before commit.” Still: no force-push, no amending others’ commits, no skipping hooks.
Post-sync verification
After ./scripts/install-all.sh:
# Canonical shared hub (often ~/.agents/skills; may be a symlink into dotfiles)
hub="${HOME}/.agents/skills"
test -f "${hub}/<name>/SKILL.md"
# Description / title matches what you just published (not a stale copy)
grep -q '<distinctive-phrase-from-new-description>' "${hub}/<name>/SKILL.md"
If the hub path differs on this machine, use the path install-all.sh printed under targets:. Also fine: gh skill list showing the skill for expected agents.
Layout
skills/<skill-name>/
SKILL.md # required — name MUST equal directory name
references/ # optional
scripts/ # optional
assets/ # optional
Frontmatter: name, description (spec). Keep SKILL.md under ~500 lines; references one level deep.
Related files in this repo
| Path | Role |
|---|---|
README.md | Catalog + install docs — keep catalog rows current |
scripts/install-all.sh | Sync this repo + externals + Xcode skills |
external-skills.json | Upstream deps — do not vendor |
.gitignore | Must ignore .agents/ (install trees must not be committed) |
Done checklist
- Changes under
skills/<name>/in dbmrq/agent-skills (not an install dir) - Overlap check done; no accidental upstream fork
-
namematches directory; description has what + when - README catalog updated if new skill
-
gh skill publish --dry-runpasses; no.agents/staged - Committed and pushed to
main(no PR) - Tag chosen from remote latest + Semver;
gh skill publish --tagsucceeded -
./scripts/install-all.shrun; post-sync verification passed
— or stopped at draft per user request