skillator — reusable Claude Code skills
A dedicated home for reusable Claude Code skills, kept out of individual project repos and packaged as an installable plugin.
Each directory under skills/ is one skill (a SKILL.md plus any support
files).
Install (plugin marketplace)
In Claude Code, add this repo as a marketplace and install the plugin:
/plugin marketplace add bodish-coder/skillator
/plugin install skillator
That's it — the skills below become available in every project. Update later
with /plugin marketplace update skillator.
Skills in this repo
- skillator-handoff — generate an in-depth, verified session-handoff
document so a different person or AI can continue the work with no loss of
context, plan, or intent. Invoke with
/skillator-handoff [output-path|focus]. - skillator-handoff-resume — the execution counterpart: read handoff docs
(from
skillator-handoff) and do the pending work, stamping a marker in each so finished handoffs are skipped. Marker-aware and idempotent (safe to re-run //loop). Invoke with/skillator-handoff-resume. - skillator-func-ui — turn an existing UI-only mockup/prototype into a real,
working system: scan the code, interview the user, emit workflow specs to
confirm, then a dependency-ordered plan to wire the UI to a real backend
(stops at the confirmed plan). Invoke with
/skillator-func-ui. - brainstorm-build family — three tiers of the "brainstorm then build" flow;
pick by how much model firepower and ceremony you want:
- skillator-brainstorm-build-prime — design tier plans · build tier
implements · full ceremony: session
.mdon disk · handoff before context checkpoints · rework · clean reset. Cross-platform viareferences/platforms.md: Claude Code (Fable → Opus, auto/compact//clear), Cursor (GPT-5.6-Sol → Claude Opus, fresh-chat checkpoints), Codex (Sol high-reasoning design → Sol build, auto-compaction aware). - skillator-brainstorm-build-mid — Opus plans · Opus builds. All-Opus, autonomous, no ceremony.
- skillator-brainstorm-build-lite — Opus plans · Opus + Sonnet builds (Opus core, Sonnet the simple tasks). Autonomous, no ceremony.
- skillator-brainstorm-build-prime — design tier plans · build tier
implements · full ceremony: session
- skillator-merge-prep — prepare a branch for a clean merge: rebuild its
changes on top of the current base as a new
<branch>-merge-ready, keeping only the intended edits (auto-drops no-ops, escalates suspicious ones) so no stale or untouched parts get merged. Never rewrites the original or force-pushes. Runs beforeskillator-merge-agent. Invoke with/skillator-merge-prep. - skillator-merge-agent — analyse GitHub branches with agents and merge them
by risk: Haiku summarizes each branch + builds an overlap/conflict map, then
merges on a throwaway integration branch (trivial conflicts auto-resolve via
Sonnet, semantic ones escalate to you with an Opus-proposed fix). Optional
test-verify and PR, both asked at run time. Invoke with
/skillator-merge-agent. - skillator-design-arwen — ultimate UI/UX design skill for native and web:
fuses production craft (contrast, type, layout, motion, a11y, iOS/Android/RN
conventions) with a committed aesthetic and a systematic method for forging one
unique, ownable signature element. Invoke with
/skillator-design-arwen.
Add a new skill
mkdir skills/<skill-name> # a dir with a SKILL.md
# ...author SKILL.md...
git add skills/<skill-name>
git commit -m "add <skill-name>"
git push