skills

Reusable Claude Code skills collection

Language
Markdown
License
MIT
Category
Ecosystem

A collection of 18 Claude Code skills distributed via skills.sh. Incident triage, static PR review, parallel hypothesis debugging, competing-design brainstorms, structural refactoring, module-boundary auditing, response shaping, cross-model delegation to Codex or Claude, raster-to-SVG recreation, fork syncing and branch restacking.

Features

01

firestop — triage an operational alert from a Slack, alert, incident, Linear or GitHub reference, posting an opening update before investigating rather than going quiet until it has an answer

02

pr-issue-review — statically judge whether a PR solves its stated issue, across passive, neutral, assertive and aggressive profiles, leaving inline comments and suggestions without ever running code

03

competing-hypotheses — debug by investigating rival theories in parallel, then comparing evidence to find the likeliest root cause

04

brainstorm — parallel proposers each design an independent approach, peer-review each other, then compare in a trade-off matrix

05

improve-code-structure — structural refactoring only: decompose long functions, reduce nesting, replace ill-fitting abstractions, sweep dead code

06

seam-audit — map a codebase's module boundaries and import edges into a layered topology diagram, flagging accidental hubs, cycles and layer violations

07

repeat-until-settled — re-invoke any skill until its output stops changing, handling oscillation and stalls, then chain to a follow-up

08

use-codex and use-claude — delegate across model families for second opinions, token-heavy scoped work, or long-horizon bug fixing

09

lucid and lucid-doc — shape a chat response, or a written deliverable, for a reader who was not in the conversation

10

restack — manage stacked branches without Graphite, inferring the stack from git history

11

sync-fork — reset shared branches to upstream, re-merge local-only work, prune what already landed

12

ask-me-about — interview the user to extract and sharpen their mental model of an idea or plan

13

image-to-svg — recreate a raster image as SVG by isolating features, building each as a layer, then compositing

14

create-profile-atlas — generate, chroma-key and split profile emoji atlases, with readability checks and manifests

15

dotfiles-mac — create, update or apply a macOS dotfiles repo with GNU Stow

16

quotespeak — pop-culture quotes that substitute for plain prose rather than decorate it

17

Distributed via skills.sh — one-command install into any project

Install

Skills CLI

>_
$ npx skills add shhac/skills

Usage

>_ Install into a project
$ npx skills add shhac/skills
>_ Triage a production fire
$ /firestop https://acme.slack.com/archives/C123/p1770165109628379
>_ Investigate competing hypotheses
$ /competing-hypotheses why are tests flaky on CI
>_ Design several approaches and compare them
$ /brainstorm how should we shard the events table
>_ Review a PR against its issue
$ /pr-issue-review 4821 --profile assertive
>_ Map the module boundaries
$ /seam-audit