A small collection of Agent Skills and a Claude Code plugin marketplace, served from one repository.
| Skill | What it does |
|---|---|
shipit |
Deploy Laravel projects to ShipIt via Artisan (php artisan shipit:deploy). Pairs with the sydgren/laravel-shipit package. |
npx skills add sydgren/skills --skill shipit # one skill
npx skills add sydgren/skills --list # see what's available
npx skills add sydgren/skills --skill '*' # everything/plugin marketplace add sydgren/skills
/plugin install shipit@sydgren-skills
Each skill's canonical file lives at skills/<name>/SKILL.md (what the skills
CLI discovers). The Claude Code marketplace exposes the same skills as plugins
under plugins/<name>/, whose skills/ directory symlinks back to the canonical
file — so there is a single source of truth, no duplicated content.
.
├── .claude-plugin/marketplace.json # Claude Code marketplace catalog
├── plugins/
│ └── shipit/
│ ├── .claude-plugin/plugin.json
│ └── skills/shipit -> ../../../skills/shipit # symlink to canonical
└── skills/
└── shipit/SKILL.md # canonical skill
MIT