npx claudepluginhub eliasschlie/claude-pluginsSession-oriented pool of persistent Claude TUI slots backed by tmux
Detects idle Claude sessions for keyboard-shortcut cycling
Session intention tracking — PID mapping, intention file intro, and change notifications for the Open Cockpit app
Persistent terminal management — spawn, read, write, and kill terminals that survive session disconnects
Managed pools of Claude Code sessions — spawn, offload, restore, prompt, attach
AI safety field expert — career advice, events, sub-fields, and company landscape
My personal collection of Claude Code plugins. I built these to make working with multiple Claude sessions less painful - managing pools, tracking intentions, cycling between idle sessions. They've become essential to my daily workflow and I'm sharing them in case they're useful to others.
Claude Code's plugin system lets tools add hooks, skills, and configuration to your sessions. A marketplace is a registry that Claude Code can pull from — you point it at a GitHub repo, then install individual plugins by name. This repo is one such registry.
| Plugin | What it does |
|---|---|
| Open Cockpit | Electron app + plugin for orchestrating Claude sessions through a shared pool. Sidebar, intention tracking, idle detection, agent API. |
| Sub-Claude | Tmux-backed pool of persistent Claude sessions. Fire-and-forget parallel work from the terminal. |
| Claude Next Idle | Keyboard shortcut to jump to your next idle Claude session. LIFO stack, works with iTerm + Cursor. |
| Claude Term | Persistent terminal management — spawn, read, write, and kill terminals that survive session disconnects. |
| Claude Pool | Managed pools of Claude Code sessions — spawn, offload, restore, prompt, attach. Standalone daemon, no Electron required. |
Add the marketplace, then install whichever plugins you need:
# Add this marketplace
claude plugin marketplace add EliasSchlie/claude-plugins
# Pick what you need
claude plugin install open-cockpit@elias-tools
claude plugin install sub-claude@elias-tools
claude plugin install claude-next-idle@elias-tools
"Permission denied (publickey)" during install
Claude Code clones plugin repos via SSH by default. If you don't have SSH keys set up for GitHub, installation will fail. Fix by telling git to use HTTPS:
git config --global url."https://github.com/".insteadOf [email protected]:
To revert later (e.g., after setting up SSH keys):
git config --global --unset url."https://github.com/".insteadOf
Want to add a plugin? Open a PR that adds your entry to .claude-plugin/marketplace.json with a name, source, description, and version.