Documentation Index
Fetch the complete documentation index at: https://docs.jacobpevans.com/llms.txt
Use this file to discover all available pages before exploring further.
Drop-in plugins for Claude Code. The pieces that make a generic agent useful for a specific stack.
claude-code-plugins packages the extension points Claude Code supports — commands, skills, agents, hooks — into reusable plugins. Each plugin lives in its own directory and is installable via the Claude Code plugin API.
What it does
- Ships plugins for git workflows (
ship,finalize-pr,wrap-up), retrospectives, CodeQL resolution, and more - Houses skills that progressively load only when their triggers fire — minimal token cost when idle
- Houses agents with focused tool allowlists for delegated work (Explore, Plan, code-reviewer)
- Houses hooks that enforce conventions automatically (style, permissions, no-skip patterns)
- Composes with
ai-assistant-instructionsfor the rules layer
How it fits
| Component | Examples |
|---|---|
| Commands | /ship, /finalize-pr, /wrap-up, /retrospecting |
| Skills | receiving-code-review, resolve-pr-threads, finalize-pr |
| Agents | Explore, Plan, code-reviewer |
| Hooks | Style guards, permission gates |
Getting started
Browse the plugins
Each plugin is its own directory. The repo README enumerates installed plugins and their entry points.
Install a plugin
Claude Code’s plugin install path varies by version — see the README for the current command. Plugins typically live under
~/.claude/plugins/.Related repos
Repo boundaries
How rules, plugins, and docs are split across three repos.
ai-assistant-instructions
The rules layer these plugins operate within.
claude-code-routines
Scheduled Claude.ai routines — the cron side of the same ecosystem.
ai-workflows
The Copilot equivalent — reusable agentic workflows.
Source on GitHub
Plugins, hooks, full README.