skills logo

skills

iammattburns-skills

OtherClaude Codeby iammattburns

Summary

My personal skills for Claude Code

Install to Claude Code

/plugin install skills@iammattburns-skills

Run in Claude Code. Add the marketplace first with /plugin marketplace add iammattburns/skills if you haven't already.

README.md

Personal agent skills

One shared skills/ tree for Claude Code, Codex, and Cursor. Agent-specific files are only thin manifests—do not duplicate SKILL.md content.

Layout

| Path | Role | |------|------| | skills/<skill-name>/SKILL.md | Single source of truth for every skill. | | .cursor-plugin/plugin.json | Cursor plugin manifest (creating plugins). Discovers skills/. | | .claude-plugin/marketplace.json | Claude Code marketplace catalog (owner, plugins[], source: "./"). | | .claude-plugin/plugin.json | Claude Code plugin metadata (name: skills). | | .codex-plugin/plugin.json | Codex plugin metadata + UI; points at ./skills/. | | .agents/plugins/marketplace.json | Codex marketplace catalog; plugin path is ./ (same root plugin). | | assets/ | Shared logos / icons for plugin UIs. |

Optional later at repo root (same level as skills/): rules/, agents/, commands/, hooks/, mcp.json.

---

Cursor

This repo is a Cursor plugin: .cursor-plugin/plugin.json plus the shared skills/ folder.

Local install (dev)

Symlink the repo into Cursor’s local plugins folder, then reload:

ln -s /Users/mattburns/Development/projects-personal/skills/skills ~/.cursor/plugins/local/skills

Then Developer: Reload Window (or restart Cursor). Skills should appear under Customize; invoke with /skill-name (for example /git-branch).

Per-skill fallback

You can still copy or symlink individual folders without the plugin:

  • Personal: ~/.cursor/skills/<skill-name>/
  • Project: .cursor/skills/<skill-name>/

Publish / team marketplace

For multi-plugin repos you would add .cursor-plugin/marketplace.json; this repo is a single root plugin, so only plugin.json is required. See the plugins reference.

---

Claude Code

Marketplace ≠ installed plugin. Adding a marketplace only registers the catalog. Install the plugin, then reload:

/plugin marketplace add iammattburns/skills
/plugin install skills@iammattburns-skills
/reload-plugins

Skills are namespaced by plugin id, e.g. /skills:git-branch.

Refresh after pushes: /plugin marketplace update iammattburns-skills.

Local path: /plugin marketplace add /absolute/path/to/this/repo.

---

Codex

Root .codex-plugin/plugin.json points at the same skills/ directory:

{
  "skills": "./skills/"
}

Marketplace install:

codex plugin marketplace add iammattburns/skills
codex plugin add skills@iammattburns-skills

After pushes:

codex plugin marketplace upgrade iammattburns-skills
codex plugin add skills@iammattburns-skills

Start a new Codex thread after reinstalling so the skill list refreshes.

---

Adding a skill

1. Create only skills/<skill-name>/SKILL.md (frontmatter + instructions). 2. Optionally bump version in .cursor-plugin/plugin.json, .claude-plugin/plugin.json, and .codex-plugin/plugin.json for a visible release. 3. Commit and push. Claude / Codex / Cursor all consume that same folder.

---

References

Related plugins

Browse all →