Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
personal-skills logo

personal-skills

jburns-personal-skills

OtherClaude Codeby jburns24

Summary

jburns personal skill collection

Install to Claude Code

/plugin install personal-skills@jburns-personal-skills

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

README.md

jburns personal skills

Personal agent skills collection for the agentskills platform.

Quick Start

Install all skills:

npx skills add jburns24/skills --all

Install a specific skill:

npx skills add jburns24/skills --skill <name>

Skills

| Skill | Description | |-------|-------------| | commit | Creates a conventional-commit message with embedded generation metadata (model, plan file, unplanned changes) | | find-commit | Searches git history for instrumented commits to trace features back to their plans and understand why changes were made |

Structure

skills/
  commit/              # Commit skill
    SKILL.md
  find-commit/         # Find-commit skill
    SKILL.md
template/
  SKILL.md             # Boilerplate for new skills
.claude-plugin/
  marketplace.json     # Plugin bundle config

Remote skill catalog

catalog.yaml (repo root) is a human-readable manifest of remote agent skills that live in other GitHub repos and can later be vendored into skills/<name>/. It is the single source of truth — each entry pins a resolved commit sha so references stay reproducible.

Manage it with scripts/catalog.py (uses PyYAML and the gh CLI):

# Add a skill (resolves the ref → SHA via gh, then appends an entry)
uv run scripts/catalog.py add anthropics/skills --path skills/mcp-builder --ref main

uv run scripts/catalog.py list                 # aligned table (--json for machine output)
uv run scripts/catalog.py show mcp-builder      # full details for one entry
uv run scripts/catalog.py update mcp-builder    # re-resolve ref → latest SHA (--all for every entry)
uv run scripts/catalog.py edit mcp-builder --depends other-skill  # edit description/depends, no SHA change
uv run scripts/catalog.py remove mcp-builder    # delete an entry
uv run scripts/catalog.py validate              # schema check (non-zero exit on failure; CI-friendly)

Each entry requires name (the unique primary key), repo (owner/repo),

path, ref, and sha; description, depends, and updated are optional. Actual vendoring/copying is out of scope for this tool.

depends is a list of other catalog names a skill references (e.g. "install X before this one"). It's informational only — every entry vendors independently regardless of order, so there is no build-time resolution.

validate checks that every referenced name exists in the catalog and that no dependency cycle exists.

Annotated example entry:

- name: some-skill          # local name → maps to skills/<name>/ when vendored
  repo: owner/repo          # source GitHub repo
  path: skills/some-skill   # subpath of the skill within the source repo
  ref: main                 # requested branch/tag/ref
  sha: 1a2b3c4...           # resolved commit SHA (full 40-char, pinned)
  description: "short note"  # optional
  depends: [other-skill]      # optional, names of catalog skills this one references
  updated: "2026-07-23T00:00:00Z"  # optional, set when sha was last resolved

> Note: catalog.yaml is machine-managed — tool writes round-trip through > PyYAML and strip all comments, so keep field documentation here rather than > inline in the manifest.

Platform

  • Spec: https://agentskills.io/specification
  • GitHub reference: https://github.com/anthropics/skills

Related plugins

Browse all →