A marketplace of Claude Code plugins by hex.
Add this marketplace to Claude Code:
/plugin marketplace add hex/claude-marketplace
Then browse and install plugins with:
/plugin install
| Plugin | Description |
|---|---|
| claude-council | Ask several AI agents (Gemini, OpenAI, Grok, Perplexity, Kimi, OpenRouter, the codex/antigravity/grok/kimi/cursor CLIs, local ollama) the same question and see the answers in a streaming pane. Hand a coding task to a Codex specialist on its own branch (experimental) |
| claude-image-generation | Generate and edit images using Google Gemini, OpenAI GPT Image, and xAI Grok Image APIs |
| claude-guard | Safety guardian that prevents destructive commands and blocks credential exposure |
| claude-tmux | Connect to remote hosts via SSH in tmux panes with saved host management |
| claude-taskmaster | Completion guard that prevents premature stopping with TASKMASTER_DONE signal |
| claude-crawl | Web search, fetch, and crawl via Jina AI, Cloudflare Browser Rendering, and Firecrawl |
| claude-release | Project-agnostic /release slash command. Drives version bump, tests, docs review, release-notes draft, approval gate, commit/push, and GitHub release |
| i-have-adhd | By Ayoub Ghriss, forked from ayghri/i-have-adhd with local rule changes. Shapes output for a reader with ADHD: next action first, pending offers stated once, one-line replies to automated notices |
If /plugin install fails while cloning, with an SSH error like:
Failed to clone repository: ... git@github.com: Permission denied (publickey).
these plugins are published over HTTPS, so an SSH error means your git is
rewriting the HTTPS URL to SSH. Check for an insteadOf rule:
git config --get-regexp 'url\..*\.insteadof'
If it prints something like url.git@github.com:.insteadof https://github.com/,
either remove it:
git config --global --unset url.git@github.com:.insteadof
or make sure SSH access to GitHub works (ssh -T git@github.com succeeds, with
your key loaded in ssh-agent).
MIT