My personal collection of Claude Code extensions, distributed as a shadcn GitHub registry.
Items install into the current project under .claude/, so run the install command from your project root. (shadcn writes into the project you run it in; its ~ means "project root", not your home directory, so a skill lands in <project>/.claude/skills/<name>/.)
Skills, agents, commands, and hooks
If you are new to Claude Code extensions, here is what each kind is and when you would reach for it. They differ mainly in who or what sets them off.
- Skill. A reusable procedure Claude loads on its own when your request matches what the skill is for. You do not have to ask for it by name. Reach for a skill when you keep repeating the same multi-step task and want Claude to just know how to do it well (for example, writing a good commit or scanning for leaked secrets).
- Agent. A specialist Claude can hand a whole side task to, working in its own separate context and handing back just the result. Reach for an agent when a job would otherwise flood the main conversation with noise, like deep web research or a focused code review.
- Command. A shortcut you trigger yourself by typing
/name. Reach for a command when you want to kick something off deliberately, on your timing, rather than leaving it to Claude to decide.
- Hook. A script that runs automatically on an event in Claude Code, such as before a tool runs or when a session ends. Reach for a hook when you want something to happen every single time, with no model judgment involved, like logging or a safety check.
The table under What installs where shows where each one lands on disk and what triggers it.
Install
There are two ways to get these items: plugins (bundles, managed by Claude Code, hooks pre-wired) or the shadcn CLI (one item at a time, copied into your project).
As Claude Code plugins (recommended)
Add the marketplace once, then install any bundle:
/plugin marketplace add KhaledSaeed18/dotclaude
/plugin install security@dotclaude
A good starter set is engineering + git + security-hooks โ the daily workflow skills, the branch lifecycle, and the deterministic guardrails. From a terminal you can install all three in one line (the CLI takes one plugin per call):
for p in engineering git security-hooks; do claude plugin install "$p@dotclaude"; done
Prefer browsing? After adding the marketplace, open /plugin and pick from the Discover tab โ no typing needed.
Plugins update with the repo (/plugin marketplace update dotclaude), namespace their commands (/security:security-audit), and โ unlike the shadcn route โ hook plugins activate immediately, with no manual settings.json editing.
| Plugin | What you get | Install |
|---|
| engineering | Engineering workflow skills and review agents: planning, test-driven development, systematic debugging, code review, completion verification, and performance work. (15 skills, 6 agents, 1 command) | /plugin install engineering@dotclaude |
| security | Security review toolkit: OWASP-aligned code review, dependency and secret auditing skills, a security-auditor agent, and a full-codebase /security-audit command. (3 skills, 1 agent, 1 command) | /plugin install security@dotclaude |
| security-hooks | Deterministic guardrails, active immediately after install: a compound-command deny list, sensitive-file protection, and prompt-injection screening. (3 hooks) | /plugin install security-hooks@dotclaude |
| git | Version-control skills for the whole branch lifecycle: committing, worktrees, merge conflicts, undo/recovery, PR descriptions, changelogs, releases, and branch cleanup. (9 skills, 1 command) | /plugin install git@dotclaude |
| productivity | Session productivity skills: collaborative brainstorming, plan stress-testing, session handoff documents, and a /prime command that loads project context. (5 skills, 2 commands) | /plugin install productivity@dotclaude |
| testing | Testing toolkit: browser-based end-to-end verification with Playwright and a /write-tests command that generates a suite matching project conventions. (2 skills, 1 command) | /plugin install testing@dotclaude |
| research | A deep-research subagent for multi-source investigation with citations: comparisons, fact-checking, and sourced writeups. (1 agent) | /plugin install research@dotclaude |
| format-on-edit | Automation hook that runs the project's own formatter (Biome, Prettier, gofmt, rustfmt, or ruff) on every file Claude edits, so changes land already formatted. (1 hook) | /plugin install format-on-edit@dotclaude |
| notify | Desktop notifications for Claude Code: surfaces permission requests and attention prompts as native macOS/Linux notifications so long sessions can run in the background. (1 hook) | /plugin install notify@dotclaude |
The four create-* authoring skills are intentionally not in any plugin; they exist to author items for this repository and install via shadcn only.
With the shadcn CLI (single items)
Install any single item with the shadcn CLI:
npx shadcn@latest add KhaledSaeed18/dotclaude/<item>
For example, run this from your project root and the handoff skill lands in .claude/skills/handoff/:
npx shadcn@latest add KhaledSaeed18/dotclaude/handoff
What installs where
Each item installs under .claude/, by type:
| Type | Installs to | Triggered by |
|---|
| Skills | .claude/skills/<name>/ | Claude, automatically, when the description matches the task |
| Agents | .claude/agents/<name>.md | Claude delegating to the subagent, or you invoking it |
| Commands | .claude/commands/<name>.md | You, by typing /<name> |
| Hooks | .claude/hooks/<name>/ | A settings.json event you wire up (see below) |
Hooks need one extra step. shadcn copies the hook's script and its HOOK.md, but it can't edit your settings.json. After installing a hook, open its HOOK.md and add the documented block to .claude/settings.json to activate it.
Want an item available globally (in every project)? Install it into a project as above and copy it into your home config โ folders for skills and hooks, single files for agents and commands:
cp -R .claude/skills/handoff ~/.claude/skills/ # skills & hooks: folders
cp .claude/agents/code-reviewer.md ~/.claude/agents/ # agents & commands: single files
Skills and hooks that bundle companion files install them in the same folder, and the cp -R above carries them across automatically.
Catalog
The catalog below lists every item in this repository, grouped by type and then category.
Skills
Engineering
| Skill | Description | Install |
|---|
| adversarial-reviewer | Review code through three hostile personas - the Saboteur, the New Hire, and the Security Auditor - each required to find at least one issue. Use when a standard review feels too comfortable, when code is going into a critical path, when a previous review missed bugs that later surfaced, or when you want coverage across correctness, clarity, and security in a single pass. | npx shadcn@latest add KhaledSaeed18/dotclaude/adversarial-reviewer |
| api-design-review | Review an API contract (REST or GraphQL) before or while it is implemented, checking resource naming, HTTP semantics, status codes, error shape, pagination, versioning, idempotency, and backward compatibility, and producing concrete revisions rather than abstract advice. Use when designing new endpoints, changing an existing API's surface, or reviewing a PR that adds or modifies API routes. | npx shadcn@latest add KhaledSaeed18/dotclaude/api-design-review |
| code-review-response | Process code-review feedback with technical rigour โ understand each point, check it against the actual codebase, and respond with reasoning or implementation rather than reflexive agreement. Use when you receive review comments (from a human, the code-reviewer agent, or any reviewer) and are about to act on them, especially if any feedback seems unclear or wrong. | npx shadcn@latest add KhaledSaeed18/dotclaude/code-review-response |
| create-agent | Author a new subagent for this repository end to end by scaffolding it with pnpm new, curating its tool allowlist, setting model, color, and memory in frontmatter, then writing a focused system prompt and regenerating the registry. Use when creating, scaffolding, or reviewing an agent or subagent in this repo. | npx shadcn@latest add KhaledSaeed18/dotclaude/create-agent |
| create-command | Author a new slash command for this repository end to end by scaffolding it with pnpm new, writing the frontmatter and argument handling, drafting the prompt body, then regenerating the registry. Use when creating, scaffolding, or reviewing a slash command in this repo. |
Productivity
| Skill | Description | Install |
|---|
| brainstorming | Turn a rough idea into a fully formed, written design through collaborative dialogue โ exploring intent, requirements, and trade-offs one question at a time, then proposing approaches and capturing the agreed design in a spec before any code is written. Use at the start of any creative or feature work, when the idea isn't yet concrete enough to plan or build. | npx shadcn@latest add KhaledSaeed18/dotclaude/brainstorming |
| grill-me | Relentlessly stress-test a plan, design, architecture, idea, or strategy until all critical decisions are resolved. Use when a plan, design, or decision needs adversarial stress-testing before committing to it. | npx shadcn@latest add KhaledSaeed18/dotclaude/grill-me |
| handoff | Compact the current conversation into a handoff document for another agent to pick up. Use when ending a session, switching agents, or preserving context before compaction. | npx shadcn@latest add KhaledSaeed18/dotclaude/handoff |
| issue-writer | Turn a rough bug report, idea, or complaint into a well-formed, actionable issue - investigating the codebase first to add reproduction steps, expected vs actual behaviour, suspected location, and acceptance criteria - then filing it with gh or emitting paste-ready markdown. Use when the user says "file an issue for this", "write this up", describes a bug in passing that should be tracked, or wants a feature request made concrete. | npx shadcn@latest add KhaledSaeed18/dotclaude/issue-writer |
| standup-summary | Generate a standup or weekly-review update from actual work evidence - commits, branches, PRs, and issues across one or more repositories - grouped into done / in progress / blocked / next, written in plain human sentences rather than commit-message-speak. Use when preparing a daily standup, a weekly review, a sprint update, or answering "what did I work on this week". | npx shadcn@latest add KhaledSaeed18/dotclaude/standup-summary |
Security
| Skill | Description | Install |
|---|
| dependency-audit | Audit a project's dependencies for outdated and vulnerable packages and surface breaking-change notes for upgrades. Works with any ecosystem, including npm/pnpm/yarn, pip/Poetry/uv, Cargo, Go modules, Maven/Gradle, Bundler, Composer, and others. Use when checking a project's dependency health, planning upgrades, or responding to a vulnerability report. | npx shadcn@latest add KhaledSaeed18/dotclaude/dependency-audit |
| owasp-security | Review code being written or modified against the OWASP Top 10:2025 and ASVS secure-coding requirements, catching vulnerability classes before they ship. Works in any language or stack. Use when writing authentication or authorization logic, handling user input, adding API endpoints, choosing cryptographic operations, processing file uploads, or making any change that touches a trust boundary. Complements secret-scan (which finds credentials) and dependency-audit (which checks packages) with line-level vulnerability review. | npx shadcn@latest add KhaledSaeed18/dotclaude/owasp-security |
| secret-scan | Scan code or a diff for hardcoded secrets (API keys, tokens, passwords, private keys, and other exposed credentials) before they get committed or shipped. Use before committing, during review, or when auditing a repository. | npx shadcn@latest add KhaledSaeed18/dotclaude/secret-scan |
Testing
| Skill | Description | Install |
|---|
| accessibility-audit | Audit UI code or a running page against WCAG 2.2 AA, covering semantics, keyboard access, focus management, labels, contrast, ARIA misuse, and motion, verifying in a real browser with axe-core when one is available and by code review when not. Produces findings ranked by user impact with concrete fixes. Use when building or reviewing UI components, before shipping user-facing pages, or when accessibility compliance is required. | npx shadcn@latest add KhaledSaeed18/dotclaude/accessibility-audit |
| webapp-testing | Verify a web application works correctly in a real browser using Playwright. Covers page navigation, form submission, user interactions, console error detection, screenshot capture, and responsive layout checking. Use when you need to confirm a UI feature actually works end-to-end, catch regressions after a change, verify a form flow completes, or check that the page is free of console errors. Requires Node.js; installs Playwright if not already present. | npx shadcn@latest add KhaledSaeed18/dotclaude/webapp-testing |
Version Control
| Skill | Description | Install |
|---|
| changelog | Generate a changelog or release notes from Git history, grouped by change type, written in user-facing language, with issue/PR links and breaking changes called out. Conventional-Commits aware and Keep a Changelog formatted; respects any existing CHANGELOG or tooling. Use when preparing release notes or updating CHANGELOG.md. | npx shadcn@latest add KhaledSaeed18/dotclaude/changelog |
| finish-branch | Wrap up a completed development branch by verifying tests pass, detecting the workspace state, then presenting clear merge / PR / keep / discard options and executing the chosen one safely โ including correct worktree and branch cleanup. Use when implementation is done, tests should be green, and you need to integrate or put away the work. | npx shadcn@latest add KhaledSaeed18/dotclaude/finish-branch |
| git-commit | Commit work the right way by gathering full repo state, respecting the project's commitlint/pre-commit/branch rules, staging only understood files, and writing a conventional-commit message whose body explains why. Use when committing, branching, or pushing changes. | npx shadcn@latest add KhaledSaeed18/dotclaude/git-commit |
| git-undo | Recover safely from Git mistakes such as discard, unstage, amend, reset, revert, restore lost commits via reflog, recover deleted branches, and fix bad rebases. Chooses the least-destructive fix and protects against data loss. Use when something in Git went wrong and needs undoing. | npx shadcn@latest add KhaledSaeed18/dotclaude/git-undo |
| git-worktrees | Set up an isolated workspace for feature work so the current branch and working tree stay untouched โ detecting existing isolation first, preferring the platform's native worktree tooling, and falling back to git worktrees only when nothing native exists. Use before starting feature work that needs isolation, or before executing an implementation plan. | npx shadcn@latest add KhaledSaeed18/dotclaude/git-worktrees |
Agents
Engineering
| Agent | Description | Install |
|---|
| architect-reviewer | Use this agent when you need a design-level architecture review of a module, a proposed change, or an entire codebase. Evaluates module boundaries, coupling and cohesion, layering violations, scalability risk, and structural decisions that will become expensive to undo. Complements code-reviewer, which focuses on line-level correctness, by operating at the design level on shapes and relationships of components rather than individual functions. Use when designing a new service, refactoring a large module, evaluating a cross-cutting change, or when you want a second opinion on structural decisions before they harden. | npx shadcn@latest add KhaledSaeed18/dotclaude/architect-reviewer |
| code-reviewer | Expert reviewer for a code change (a diff, a staged set, a branch, or named files). Reviews for correctness, security, and maintainability across JavaScript/TypeScript stacks including React, Next.js, Node, Express, and NestJS. Use proactively after writing or modifying code, before opening a pull request, or when the user asks for a code review, a second pair of eyes, or feedback on a change. | npx shadcn@latest add KhaledSaeed18/dotclaude/code-reviewer |
| debugger | Use this agent when you need to diagnose a bug, test failure, crash, or unexpected behavior through systematic root-cause analysis. Gathers evidence, forms and tests hypotheses, and delivers a confirmed root cause with a targeted fix recommendation. Does not guess or apply speculative patches. Use when a fix attempt has failed, when the bug is intermittent, when a stack trace needs tracing end-to-end, or when you want a second opinion on what is actually broken before touching code. | npx shadcn@latest add KhaledSaeed18/dotclaude/debugger |
| docs-writer | Use this agent when you need documentation written or updated from the code itself - READMEs, API references, guides, architecture overviews, or upgrade notes. Reads the actual implementation before writing a word, so the docs match what the code does rather than what anyone remembers it doing, and flags found doc-vs-code contradictions instead of papering over them. Use after a feature lands without docs, when a README has drifted from reality, when onboarding docs are missing, or when public API changes need reference updates. |
Research
| Agent | Description | Install |
|---|
| deep-research | In-depth research agent for topics that need comprehensive, multi-source investigation with citations. Use when the user asks to research a topic thoroughly, gather and synthesize information from across the web, compare approaches or options, fact-check a claim against primary sources, or produce a sourced writeup or literature scan. For example, "research the current state of WebGPU adoption", "compare Postgres vs SQLite for an offline-first app, with sources", or "what does the evidence say about X, and where do experts disagree?" | npx shadcn@latest add KhaledSaeed18/dotclaude/deep-research |
Security
| Agent | Description | Install |
|---|
| security-auditor | Use this agent when you need a comprehensive security audit of a codebase, module, API surface, or pull request. Covers OWASP Top 10:2025, authentication and authorization logic, secret handling, input validation, dependency vulnerabilities, and supply-chain risk. Reports findings and concrete remediation steps without modifying code. Use before a production release, after adding auth or payment flows, when onboarding a new dependency, or when a security review is required before merge. | npx shadcn@latest add KhaledSaeed18/dotclaude/security-auditor |
Commands
Engineering
| Command | Description | Install |
|---|
| explain-code | Walk through a file, function, class, or module and explain what it does, how it works, and why it is structured the way it is. Suited for onboarding onto unfamiliar code, understanding a complex algorithm, or preparing to modify something you have not read before. Pass a file path or a symbol name as the argument. Use when onboarding onto unfamiliar code or preparing to modify something not yet read. | npx shadcn@latest add KhaledSaeed18/dotclaude/explain-code |
Productivity
| Command | Description | Install |
|---|
| prime | Load project context into the session by reading key files and recent history. Primes the model with package metadata, architecture notes, recent commits, and directory structure so it can give better answers immediately. Use at the start of a session when switching to an unfamiliar repository or after a long break from a project. | npx shadcn@latest add KhaledSaeed18/dotclaude/prime |
| todo-triage | Inventory every TODO, FIXME, HACK, and XXX comment in the codebase, enrich each with age and author from git blame, classify them into actionable buckets (bug risk, missing feature, cleanup, obsolete), and produce a prioritized triage table with recommended dispositions. Pass a path to limit the scan to a directory. Use when technical-debt comments have accumulated and nobody knows which ones still matter. | npx shadcn@latest add KhaledSaeed18/dotclaude/todo-triage |
Security
| Command | Description | Install |
|---|
| security-audit | Run a full-codebase security audit covering OWASP Top 10:2025 vulnerability classes, authentication and authorization logic, secret handling, input validation, dependency CVEs, and supply-chain risk. Broader than the secret-scan skill, which scans a single diff. Produces a structured findings report ranked by severity. Pass a path to limit the audit to a specific module or directory. Use when a full-codebase or module-level security review is needed. | npx shadcn@latest add KhaledSaeed18/dotclaude/security-audit |
Testing
| Command | Description | Install |
|---|
| write-tests | Generate a focused, production-quality test suite for a source file, detecting the project's existing test runner and conventions. Use when a source file needs a test suite that matches the project's existing conventions. | npx shadcn@latest add KhaledSaeed18/dotclaude/write-tests |
Version Control
| Command | Description | Install |
|---|
| clean-branches | List local Git branches that have been fully merged or are stale and delete them safely after showing what would be removed. Protects main, master, develop, and the currently checked-out branch. Pass --dry-run to preview without deleting anything. Distinct from the finish-branch skill, which closes a single active in-progress branch; this cleans up accumulated merged branches across the whole repository. Use when local branches have accumulated and need safe cleanup. | npx shadcn@latest add KhaledSaeed18/dotclaude/clean-branches |
Hooks
Automation
| Hook | Description | Install |
|---|
| format-on-edit | A PostToolUse hook that runs the project's own formatter (Biome, Prettier, gofmt, rustfmt, or ruff) on each file Claude Code edits or writes, so every change lands already formatted. Detects the formatter from project config, uses only locally installed binaries, and does nothing when no formatter applies. Use to eliminate style drift and formatting-only diffs from agent sessions. | npx shadcn@latest add KhaledSaeed18/dotclaude/format-on-edit |
| notify | A Notification hook that turns Claude Code notifications into native desktop notifications (macOS osascript, Linux notify-send), so long-running sessions can be left in the background and still get your attention when Claude needs input. Message text is sanitized before reaching the OS tool. Use when you run long agent sessions and miss the moments they stop to ask something. | npx shadcn@latest add KhaledSaeed18/dotclaude/notify |
Context
| Hook | Description | Install |
|---|
| precompact-saver | A PreCompact hook that snapshots the full session transcript to .claude/compact-backups/ right before Claude Code compacts the context, so exact instructions, tool output, and decisions survive after the summary drops them. Keeps the newest ten snapshots and prunes the rest. Use when long sessions get compacted and you need a reliable record of what was said before the summary. | npx shadcn@latest add KhaledSaeed18/dotclaude/precompact-saver |
Observability
| Hook | Description | Install |
|---|
| tool-call-logger | A PreToolUse/PostToolUse hook that appends one JSON line per tool call (tool name, inputs, and response) to a local log file, with secret redaction and payload truncation. Use to audit, debug, or observe exactly what Claude Code did during a session. | npx shadcn@latest add KhaledSaeed18/dotclaude/tool-call-logger |
Security
| Hook | Description | Install |
|---|
| command-guard | A PreToolUse hook that blocks catastrophic Bash commands before they run (recursive force deletes of the filesystem root or home, fork bombs, writing to or formatting raw disk devices, recursive chmod 777 on root, and force-pushes to main or master), returning a clear reason. Use to add a deterministic safety net against destructive shell commands. | npx shadcn@latest add KhaledSaeed18/dotclaude/command-guard |
| injection-guard | A UserPromptSubmit hook that scans incoming prompts for prompt-injection and jailbreak patterns (instruction overrides, system-prompt extraction attempts, role reassignments, DAN/developer-mode activations) before Claude processes them. Use to add a deterministic pre-Claude safety layer against injection attacks. | npx shadcn@latest add KhaledSaeed18/dotclaude/injection-guard |
| sensitive-file-guard | A PreToolUse hook that blocks Read, Edit, Write, and Bash operations that target sensitive files (.env, credentials, SSH private keys, certificates, secrets, AWS config, netrc, and similar). Use to prevent Claude from autonomously reading or exfiltrating credential files. | npx shadcn@latest add KhaledSaeed18/dotclaude/sensitive-file-guard |
| smart-approve | A PreToolUse hook that decomposes compound Bash commands (&&, ||, ;, |, $(), backticks) into their component sub-commands and checks each one independently against a deny list, closing the chain-smuggling gap where a dangerous operation is embedded inside a safe-looking command chain. Use to upgrade command-guard with compound-command awareness. | npx shadcn@latest add KhaledSaeed18/dotclaude/smart-approve |
Contributing
Contributions are welcome โ new items, fixes to existing ones, or tooling improvements. Every item is scaffolded with pnpm new and validated in CI; see CONTRIBUTING.md for the layout, conventions, and dev workflow, and SECURITY.md for how to report a vulnerability privately.
License
MIT ยฉ Khaled Saeed
Attributions
Some items in this project were created from scratch, while others were inspired by, adapted from, or built upon work from the open-source community. Credit and thanks to the following resources:
| Source | Link | Items inspired by |
|---|
| Matt Pocock's Skills | mattpocock/skills | skills |
| Obra's Superpowers | obra/superpowers | skills |
| Anthropic's Skills | anthropics/skills | webapp-testing |
| Addy Osmani's Agent Skills | addyosmani/agent-skills | performance-optimization |
| Alirezarezvani's Claude Skills | alirezarezvani/claude-skills | adversarial-reviewer |
| Agamm's Claude Code OWASP | agamm/claude-code-owasp | owasp-security |
| QdHenry's Claude Command Suite | qdhenry/Claude-Command-Suite | prime, explain-code, security-audit, clean-branches |
| VoltAgent's Subagents | VoltAgent/awesome-claude-code-subagents | debugger, security-auditor, architect-reviewer, performance-engineer, error-detective |
| Wshobson's Agents | wshobson/agents | debugger, security-auditor, architect-reviewer, performance-engineer, error-detective |
| Disler's Hooks Mastery | disler/claude-code-hooks-mastery | sensitive-file-guard, injection-guard |
| Rohitg00's Toolkit (via liberzon/claude-hooks) | rohitg00/awesome-claude-code-toolkit | smart-approve |