---
url: "https://www.reddit.com/r/ClaudeAI/comments/1vnpprh/13_claude_code_skills_packaged_as_an_installable/"
title: 13 Claude Code skills packaged as an installable plugin (free, MIT)
source_kind: reddit
subreddit: ClaudeAI
author: Wilddocofficial
score: 3
captured: "2026-08-17T00:37:47+00:00"
comment_tree: false
topics: [ai-tools]
summary: A free, MIT-licensed Claude Code plugin pack with 13 skills covering git, testing, code quality, and infrastructure audits, installable in one command.
status: ok
---

Built with Claude Code, for Claude Code: a set of skills packaged as a plugin so they install in one command instead of copying folders around.

```
/plugin marketplace add wilddoc/claude-code-skills-pack

```

then install skills-pack from it.
What's in it
Git workflow — commit-message (drafts from your staged diff, and tells you when a diff spans unrelated concerns and should be split instead of writing one message that papers over it), changelog-entry , pr-description , regression-bisect (sets up git bisect with an automated predicate script, including exit 125 for commits that won't build)
Testing — test-coverage-gaps (ranks untested paths by actual risk rather than chasing a coverage percentage), flaky-test-triage (works out whether it's leaked state, order dependence, timing, or a genuine race condition in the code under test — and says plainly when a retry wrapper would be hiding a real bug), refactor-safety-net (characterization tests capturing current behavior before you refactor, including the parts that look wrong)
Code quality — todo-sweep , error-message-audit , log-noise-audit (logged tokens/passwords, error level used for expected conditions, failures logged with no request id)
Infrastructure — ci-workflow-audit ( pull_request_target with an untrusted checkout exposing secrets to fork code, actions pinned to mutable tags, || true on the test command making CI green while verifying nothing), dockerfile-review (secrets baked into layers, COPY . . before the dependency install busting your cache), n-plus-one-queries (including the ones hidden behind serializers and computed properties)
The part I actually cared about
Most skill files are just happy-path steps, and the useful part is what happens when reality doesn't cooperate. So each one specifies the judgment calls explicitly, and bans failure modes directly rather than hoping — e.g. don't claim a CVE number you didn't actually find, don't invent a convention the codebase doesn't demonstrate, don't silently "fix" a suspected bug while writing characterization tests around it.
All free, MIT, use in commercial projects. The repo also has a SKILL-REFERENCE.md covering the format — every frontmatter field including allowed-tools scoping, how triggering actually keys off the description field, and how to debug a skill that won't fire.
https://github.com/wilddoc/claude-code-skills-pack
There's also an optional paid pack of production-safety skills, but everything above is free and complete on its own — happy to take suggestions for what's missing.