$git clone https://github.com/yorrick/claude-code-pluginsClaude Code plugins for automated development workflows — dev-loop, review automation, and more
| 1 | # Yorrick's Claude Code Plugins |
| 2 | |
| 3 | A collection of Claude Code plugins by Yorrick Jansen. |
| 4 | |
| 5 | ## Installation |
| 6 | |
| 7 | Add this repository as a marketplace: |
| 8 | |
| 9 | ``` |
| 10 | claude plugin marketplace add yorrick/claude-code-plugins |
| 11 | ``` |
| 12 | |
| 13 | Then install any plugin: |
| 14 | |
| 15 | ``` |
| 16 | claude plugin install <plugin-name>@yorrick |
| 17 | ``` |
| 18 | |
| 19 | ## Plugins |
| 20 | |
| 21 | ### dev-loop |
| 22 | |
| 23 | Automated development loop that composes existing Claude Code commands into a full lifecycle: brainstorm, plan, implement, create PR, then iteratively review (simplify + code review + security review) until clean. |
| 24 | |
| 25 | **Commands:** |
| 26 | - `/dev-loop` — Full lifecycle: interactive brainstorming and planning, then automated implementation and review loop |
| 27 | - `/review-loop` — Review loop only on an existing PR (skip brainstorm + implementation) |
| 28 | |
| 29 | **Prerequisites:** |
| 30 | - [superpowers](https://github.com/obra/superpowers) plugin (brainstorming, writing-plans, executing-plans skills) |
| 31 | - [code-review](https://github.com/anthropics/claude-code-plugins) plugin (`/code-review:code-review`) |
| 32 | - `/simplify` and `/security-review` (built-in) |
| 33 | - `gh` CLI (for creating PRs) |
| 34 | |
| 35 | ``` |
| 36 | claude plugin install dev-loop@yorrick |
| 37 | ``` |
| 38 | |
| 39 | ### self-improve-skill |
| 40 | |
| 41 | Automatically reflects on skills used during sessions and proposes improvements. |
| 42 | |
| 43 | ``` |
| 44 | claude plugin install self-improve-skill@yorrick |
| 45 | ``` |
| 46 | |
| 47 | ### pr-review |
| 48 | |
| 49 | Multi-provider interactive PR code review using Claude Code, Gemini CLI, and Codex CLI. |
| 50 | |
| 51 | ``` |
| 52 | claude plugin install pr-review@yorrick |
| 53 | ``` |
| 54 | |
| 55 | ### agent-session-monitor |
| 56 | |
| 57 | Meta-agent skill for monitoring and steering Claude Code, Codex, and other terminal coding agents through tmux panes. The skill content is portable Agent Skills format; local Claude/Codex discovery should symlink to `agent-session-monitor/skills/agent-session-monitor`. |
| 58 | |
| 59 | ``` |
| 60 | claude plugin install agent-session-monitor@yorrick |
| 61 | ``` |
| 62 | |
| 63 | ## Local Development |
| 64 | |
| 65 | For testing or development, load a plugin directly: |
| 66 | |
| 67 | ```bash |
| 68 | claude --plugin-dir ./dev-loop |
| 69 | claude --plugin-dir ./self-improve-skill |
| 70 | claude --plugin-dir ./agent-session-monitor |
| 71 | ``` |