Skip to main content

Documentation Index

Fetch the complete documentation index at: https://jacobpevans-docs-automation-surface.mintlify.app/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-instructions for the rules layer

How it fits

ComponentExamples
Commands/ship, /finalize-pr, /wrap-up, /retrospecting
Skillsreceiving-code-review, resolve-pr-threads, finalize-pr
AgentsExplore, Plan, code-reviewer
HooksStyle guards, permission gates
Reads rules from Assistant rules; installs into Claude Code via its plugin loader.

Getting started

1

Browse the plugins

Each plugin is its own directory. The repo README enumerates installed plugins and their entry points.
2

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/.
3

Invoke a command

From any Claude Code session, type the slash command (e.g. /ship) to use a plugin’s command. Skills auto-activate on matching triggers.

Repo boundaries

How rules, plugins, and docs are split across three repos.

ai-assistant-instructions

The rules layer these plugins operate within.

/ship and /finalize-pr

The full skill lifecycle — phases, exit modes, known reliability gaps.

claude-code-routines

Scheduled Claude.ai routines — the cron side of the same ecosystem.

ai-workflows

Reusable GitHub Actions workflows that drive the cloud half of the pipeline.

Source on GitHub

Plugins, hooks, full README.