Claude Skills

September 6, 2026 · View on GitHub

License: MIT Plugins Version CI

Focused Claude Code plugin marketplace. 16 plugins covering everyday dev workflow, git, open-source contributions, Docker, dependency audits, repo hygiene, refactoring, FARM stack, context management, diff explanation, debug triage, Renovate triage, end-of-session audit, Python clean code, and animation/motion.

Plugins are individually installable. Pick the ones relevant to your stack.

Philosophy

This marketplace encodes an opinionated workflow developed across 60+ repos and active open-source contributions: terse commits, scoped PRs, no force-pushes to main, no git add ., no Co-Authored-By trailers, real feature verification over "type-check passes," and a 7+/10 quality bar before opening upstream PRs.

Most plugins are language-agnostic and adapt to your stack (Python, Node, Go, Rust, etc.). A few are intentionally narrow:

  • farm-stack -- FastAPI + React + MongoDB only. Skip if you're not on that stack.
  • oss-contrib -- assumes GitHub + gh CLI.
  • context-management, starter-session-audit -- about Claude Code itself. Useful if you use Claude Code. Not portable to other AI coding tools.

5.0.0 cull: this marketplace went from 25 plugins to 14 on 2026-05-13. Removed plugins that duplicated Anthropic-official skills (planning, methodology, verification), that sat idle (api-design, testing, database, ci-cd, infrastructure, performance, security-hardening, logging-observability), or that overlapped each other (documentation, session-management, claude-md-generator, monorepo). See CHANGELOG.md for the full list.

Plugins

Development Essentials

PluginCommandsAgentsHooksWhat It Does
dev-workflow/commit, /review, /test, /fix, /pr, /status, /check-prcode-reviewer, debuggerauto-formatEveryday dev commands. Commands use ! dynamic context injection for grounded first-attempt responses.
dev-rules(auto-activates)guardrail-checkersecret-guard, no-force-push, branch-guardGuardrails: git safety, security, PR workflow, context optimization, CLAUDE.md authoring
refactoring/refactorrefactorer-Code smell detection, extract/rename/move, migration patterns (JS->TS, CJS->ESM)
git-advanced/resolve-conflictgit-assistantcommit-lintRebase, cherry-pick, bisect, stash, conflict resolution, undo
diff-explain(skill only)--One-paragraph plain-English summary of a diff. Groups by concern, flags risks.
debug-triage(skill only)--Cause-fix-test triage from a pasted stack trace. No lectures.
clean-code(skill only)--Boy Scout Rule + Robert Martin's full Clean Code catalog for Python. Violations flagged by rule ID.

Stack-Specific

PluginCommandsAgentsHooksWhat It Does
farm-stack/scaffold-farmfarm-scaffolder-FastAPI + React + MongoDB patterns, project scaffolding, config, Docker
docker-deploy/dockerizedockerfile-optimizer-Multi-stage Dockerfiles, compose patterns, image optimization, security
motion/motion audit|add|fix--Animation in three modes: 12-principles audit, add micro-interactions, fix jank

Security & Dependencies

PluginCommandsAgentsHooksWhat It Does
deps-audit/audit-depsdependency-auditor-Vulnerability scanning, outdated packages, unused deps, update strategies
renovate-triage(skill only)--Batch-triage open Renovate PRs across all your repos into merge / close / defer

Open Source and Maintenance

PluginCommandsAgentsHooksWhat It Does
oss-contrib/sync-upstream, /prep-prpr-analyzerupstream-sync-checkFork sync, upstream compliance, CLA/DCO signing, AI disclosure, PR quality bar
repo-polish/polish-reporepo-auditor-.gitignore, .env.example, README, LICENSE generation, secret detection, CLAUDE.md auditing

Claude Code Meta

PluginCommandsAgentsHooksWhat It Does
context-management/manage-contextcontext-advisor-Context rot detection, compaction timing, branching strategy, sub-agent isolation
starter-session-audit(skill only)--End-of-session audit. Scans conversation for uncaptured corrections, preferences, decisions; proposes where to save each.

Component Types

TypeCountWhat It Does
Skills16Background knowledge that auto-activates based on context
Commands16User-invocable slash commands (/commit, /test, etc.)
Agents11Autonomous sub-conversations for code review, debugging, scanning
Hooks6Shell scripts registered in the plugin's hooks/hooks.json and run by Claude Code on tool events (block secrets, validate commits, etc.)

Installation

Add the full marketplace

/plugin marketplace add Sagargupta16/claude-skills

Install individual plugins

/plugin install dev-workflow@sagar-dev-skills
/plugin install dev-rules@sagar-dev-skills
/plugin install farm-stack@sagar-dev-skills
/plugin install docker-deploy@sagar-dev-skills
/plugin install deps-audit@sagar-dev-skills
/plugin install oss-contrib@sagar-dev-skills
/plugin install repo-polish@sagar-dev-skills
/plugin install refactoring@sagar-dev-skills
/plugin install git-advanced@sagar-dev-skills
/plugin install context-management@sagar-dev-skills
/plugin install diff-explain@sagar-dev-skills
/plugin install debug-triage@sagar-dev-skills
/plugin install renovate-triage@sagar-dev-skills
/plugin install starter-session-audit@sagar-dev-skills
/plugin install clean-code@sagar-dev-skills
/plugin install motion@sagar-dev-skills

Update, inspect, or remove

/plugin marketplace update sagar-dev-skills     # pull the latest marketplace and plugin content
/plugin update dev-rules@sagar-dev-skills       # update one installed plugin
/plugin uninstall dev-rules@sagar-dev-skills    # remove one plugin, keep the marketplace
/plugin marketplace remove sagar-dev-skills     # remove the marketplace entirely

Restart Claude Code after an update. Plugin hooks are loaded when a session starts, so a refreshed hooks/hooks.json does not apply to the session you updated from.

To see what you have installed and at which version, run claude plugin list from a shell, or claude plugin details <name>@sagar-dev-skills for a plugin's component inventory and token cost.

Structure

claude-skills/
├── .claude-plugin/
│   └── marketplace.json
├── .github/
│   ├── workflows/validate.yml
│   ├── ISSUE_TEMPLATE/
│   └── pull_request_template.md
├── scripts/
│   ├── validate-plugins.sh
│   └── check-links.sh
├── plugins/
│   ├── dev-workflow/
│   │   ├── .claude-plugin/plugin.json
│   │   ├── skills/dev-workflow/SKILL.md
│   │   ├── commands/{commit,review,test,fix,pr,status,check-pr}.md
│   │   ├── agents/{code-reviewer,debugger}.md
│   │   └── hooks/{hooks.json,auto-format.sh}
│   └── ... (15 more plugins with same structure)
├── configs/
│   ├── settings.template.json
│   └── recommended-plugins.md
├── CODEOWNERS
├── CONTRIBUTING.md
├── SECURITY.md
├── CHANGELOG.md
└── README.md

Language Support

Plugins marked Generic are language-agnostic -- they work the same way in any stack.

Stack-specific plugins

Languagedev-workflowfarm-stackdocker-deploydeps-auditrepo-polish
PythonYesPrimaryYesYesYes
Node.jsYesFrontendYesYesYes
GoYes-YesYesYes
RustYes-YesYesYes
HCL/Terraform----Yes

Generic plugins (any language or no language)

PluginScope
dev-rulesGeneric -- git safety, secrets, PR workflow, CLAUDE.md authoring
refactoringGeneric -- code smells, extract/rename/move across any language
git-advancedGeneric -- rebase, cherry-pick, bisect, conflict resolution
oss-contribGeneric -- fork sync, upstream compliance, PR quality bar (assumes GitHub + gh CLI)
diff-explainGeneric -- PR / branch / diff summary
debug-triageGeneric -- stack trace triage
renovate-triageGeneric -- batch Renovate PR triage
context-managementClaude Code only -- context rot, compaction, sub-agent isolation
starter-session-auditClaude Code only -- end-of-session audit for uncaptured learnings

Companion Plugins

These standalone plugin marketplaces complement this collection:

PluginInstallWhat It Does
claude-cost-optimizer/plugin marketplace add Sagargupta16/claude-cost-optimizerCost-mode skill that saves 30-60% through concise responses, model routing, and budget hooks

Not plugin marketplaces, but built for the same workflow. Each row quotes the repo's own GitHub description; where a row adds a sentence, it is a note about how that repo relates to this one.

RepoWhat It Does
skillcheckConformance suite for Agent Skills: lint SKILL.md against the spec, run against real agent runtimes, publish a compatibility matrix. This marketplace's CI runs it on every PR.
claude-code-recipes47 copy-paste recipes for Claude Code - commands, subagents, hooks, skills, MCP integration, and workflow patterns
craftsmanshipSkills that encode engineering discipline -- plan, guard, verify, review, audit, ship. Compatible with 45+ AI agents via skills.sh. Overlaps this marketplace on review and verification, so pick one rather than loading both.
agent-recipesCopy-paste AI agent workflows for real-world dev tasks - code review, testing, security scanning, DevOps automation
ai-git-hooksAI-powered git hooks - auto-review diffs, generate commit messages, scan for secrets. Supports Claude, OpenAI, and Ollama
mcp-toolkitTypeScript middleware toolkit for MCP servers - authentication, caching, rate limiting, CORS, logging (beta)
awesome-mcp-serversA curated list of MCP (Model Context Protocol) servers, tools, frameworks, and resources

Full Setup Guide

Want the complete curated Claude Code setup (plugins + permissions + recommended config)?

  1. Copy the template settings to get started:

  2. Read the recommended plugin stack for a tiered approach:

Contributing

See CONTRIBUTING.md for guidelines on adding new skills, agents, or hooks.

License

MIT