DEV Community

Cover image for Claude Code Skills Pack — 15 Production Skills, 5 Hooks, 7 Slash Commands ($99 lifetime)
manja316
manja316

Posted on • Originally published at skills.protodex.io

Claude Code Skills Pack — 15 Production Skills, 5 Hooks, 7 Slash Commands ($99 lifetime)

I've been running Claude Code as my daily IDE for 6+ months. The Anthropic docs are great, but going from "I installed it" to "I have a workflow that actually compounds across sessions" took ~200 hours of trial and error.

I packaged everything I learned. Today it's available as a single zip.

👉 skills.protodex.io — $99 lifetime, single-developer license, 7-day refund

What's in the pack

15 production skills — not toy examples, things I use weekly:

  • session-start-gate — 60-second orientation at session start (reads journal, git state, open todos, daemons)
  • commit-quality — writes real commit messages from your staged diff
  • pr-author — generates PR descriptions: summary, why, test plan, risks, rollback
  • diff-reviewer — pre-commit review for security, bugs, missing tests
  • test-gap-finder — finds missing test cases by branch analysis
  • dependency-safety — before any dep bump: changelog, CVEs, call-site impact
  • secret-scanner — high-confidence + heuristic patterns, triages false positives
  • onboarding-orient — land in a new repo, get a 1-page brief in 60s
  • flaky-test-detector — static analysis for time deps, randomness, race conditions
  • debug-systematic — four-phase root-cause protocol, no fix until cause is named
  • daily-digest — EOD: shipped, decided, blocked, next
  • dead-code-finder — language-aware tooling + false-positive triage
  • migration-planner — expand → migrate → contract → verify, kill switches each phase
  • config-doctor — audits settings.json, hooks, MCP servers, CLAUDE.md for issues
  • slash-command-builder — scaffolds new /commands from a brief

5 hooks that automate the boring parts:

  • session-start-brief — fires at session start, summarizes recent changes + git + todos
  • pre-commit-quality — scans staged diff for secrets and red flags before any commit
  • post-edit-summary — per-session edit log that survives context compaction
  • stop-event-handoff — when session ends, appends summary to journal (anti-amnesia)
  • subagent-stop-budget — tracks subagent invocations, warns at 75%, blocks at 100%

7 slash commands:

/ship /review /audit /triage /digest /orient /onboard-new-repo

1 battle-tested CLAUDE.md template — generalized from the operating manual that runs my own daily workflow.

A sample skill in full

Here's debug-systematic — the iron-law debug protocol I run every time something breaks:

# Debug Systematic

Iron law: no fixes until the root cause is named.
Most "fixes" are pattern-matched changes that suppress
one symptom and create two more.

## Four-phase protocol

### Phase 1 — Investigate (no hypotheses yet)

Goal: gather facts. Resist the urge to guess.

- Exact error message + full stack trace (copy verbatim)
- Reproduction steps — every time, or intermittent?
- Recent changes — last commit on affected path, last deploy time
- Environment — local? staging? prod?
- Frequency — first occurrence? regression? always-broken?
- Related signals — logs, metrics, recent alerts

If you don't have one of these facts, ASK before proceeding.

### Phase 2 — Analyze (build the timeline)

Map what should happen vs what does happen, step by step.
Identify the EXACT point where actual diverges from expected.

### Phase 3 — Hypothesize (then disprove)

State it precisely:
"The bug is caused by X because Y happens when Z."

Design the test that would DISPROVE it.
Run it. ONE hypothesis at a time.

### Phase 4 — Implement (only after RC is named)

The fix must:
1. Reference the named root cause in the commit message
2. Add a test that fails without the fix and passes with it
3. State the regression risk
Enter fullscreen mode Exit fullscreen mode

If that's the quality bar you want for all 15 skills, the pack is for you. If it's not, don't buy.

Why it costs money

The whole pack is 32 files, ~60 KB zipped. I could open-source it and get GitHub stars. I'm not, because:

  1. The free version would attract contributions of varying quality and dilute the bar. The pack works because every file has gone through real-world use.
  2. $99 once means you actually install it and use it. Free downloads sit in your ~/Downloads/ forever.
  3. Honest economics — I want to keep building these full-time. Selling beats begging for sponsorships.

Install in 5 minutes

  1. Unzip into ~/.claude/
  2. chmod +x ~/.claude/hooks/*.sh
  3. Merge one block into ~/.claude/settings.json (full snippet in INSTALL.md)
  4. Restart Claude Code

Full guide: INSTALL.md in the zip.

License

Single-developer license. Use on every machine YOU work on. Fork and modify freely. Don't redistribute the pack itself. Team license (up to 10 devs) is a separate listing.

Lifetime updates included — when I ship new skills, you get the new zip via your Gumroad library.

Refund

7 days, no questions. If it doesn't compound your workflow, email me and I refund.


👉 Buy on Gumroad — $99 lifetime

👉 Browse the full pitch at skills.protodex.io

Built by @manja316 · I maintain protodex.io, an index of 9,600+ MCP servers with security scores · I publish here daily.

If you have a skill you'd want in v2, drop a comment. Buyer suggestions go to the front of the queue.

Top comments (0)