Open-source Claude Code plugins by Roxabi. Context engineering tools for teams using Claude Code.
Every team using Claude Code ends up reinventing the same things: documenting their workflow in CLAUDE.md, writing custom slash commands for code review, figuring out how to structure CI setup prompts, syncing docs after a refactor. It works, but it's disposable — none of it is reusable across projects.
Roxabi plugins are the reusable layer on top of Claude Code. Each plugin ships opinionated, battle-tested skills and agents for a specific domain. Install what you need, skip what you don't, and get consistent AI-assisted workflows across every project without starting from scratch.
# 1. Add the marketplace (once per machine)
claude plugin marketplace add Roxabi/roxabi-plugins
# 2. Install the plugin you need
claude plugin install dev-core # full dev lifecycle
claude plugin install web-intel # URL research + analysis
claude plugin install compress # token-efficient skill notationThen trigger any skill by describing what you want — no slash commands to memorize:
"start working on issue #42" → /dev
"improve readme" → /readme-upgrade
"sync docs after this refactor" → /doc-sync
"scrape and summarize this URL" → /summarize
Each plugin is self-contained: it ships skills (trigger-phrase workflows), agents (specialized sub-processes), and optionally hooks (automated guardrails that run on every tool call). Claude Code discovers and loads them automatically on install.
flowchart LR
A[claude plugin install] --> B[Skills loaded into Claude]
B --> C{You describe a task}
C --> D[Claude matches trigger phrase]
D --> E[Skill runs — agents, tools, hooks]
E --> F[Result in your repo]
Plugins are project-agnostic: they read your stack from .claude/stack.yml at runtime and adapt to your framework, package manager, and file layout. The same dev-core plugin works on a NestJS monorepo and a Django service.
| Plugin | Description |
|---|---|
| dev-core | Full dev workflow — frame, analyze, spec, plan, implement, review, ship. 32 skills, 9 agents, safety hooks. Project-agnostic via stack.yml. Quality gates (Python): file-length / folder-size / import-layer pre-commit hooks via quality_gates: in stack.yml |
| Plugin | Description |
|---|---|
| web-intel | Multi-platform URL scraper + 6 analysis skills (scrape, summarize, analyze, roast, benchmark, adapt) |
| Plugin | Description |
|---|---|
| linkedin-post-generator | Generate LinkedIn posts with best practices and visual identity |
| image-prompt-generator | Generate AI image prompts with style consistency |
| logo-generator | Animated SVG logos from brand briefs — interactive design, live preview, GIF export |
| idna | Evolutionary idea selector — explore variants, pick, converge (amplify/blend/refine), finalize. Self-driving: browser → Claude API → imageCLI → auto-advance. |
Forge has moved to its own marketplace: Roxabi/roxabi-forge. Install:
claude plugin marketplace add Roxabi/roxabi-forge
| Plugin | Description |
|---|---|
| cv | Generate and adapt CVs from structured data |
| linkedin-apply | Scrape and score LinkedIn job offers with LLM matching |
| Plugin | Description |
|---|---|
| compress | Rewrite agent/skill definitions using compact math/logic notation to reduce token usage |
| 1b1 | Walk through a list of items one by one — brief, decide, execute, repeat |
| get-invoice-details | Extract and store invoice details from documents |
External plugin marketplaces we endorse. Install them directly — no vendoring needed.
claude plugin marketplace add <source>| Marketplace | Description | Source |
|---|---|---|
| agent-browser | Headless browser automation CLI for AI agents — navigate, click, fill, screenshot, scrape | vercel-labs/agent-browser |
| roxabi-vault | Persistent memory for agents — SQLite+FTS5 knowledge base with 7 vault skills | Roxabi/roxabi-vault |
| claude-plugins-official | Official Anthropic plugin marketplace — LSPs, integrations, and workflow skills | anthropics/claude-plugins-official |
| knowledge-work-plugins | Official Anthropic knowledge-work plugins — design, legal, marketing, product-management, sales | anthropics/knowledge-work-plugins |
| anthropic-agent-skills | Official Anthropic agent skills repository | anthropics/skills |
| context7 | Upstash Context7 MCP server — version-specific documentation lookup from source repos | upstash/context7 |
| visual-explainer | Self-contained HTML pages with diagrams, visualizations, data tables, and slide decks | nicobailon/visual-explainer |
| ui-ux-pro-max-skill | UI/UX design intelligence — 67 styles, 96 palettes, 57 font pairings, 25 charts | nextlevelbuilder/ui-ux-pro-max-skill |
| roxabi-video-engine | Programmatic video generation — 55 React components, 13 kits, headless MP4 rendering | Roxabi/roxabi-production |
| frontend-slides | Zero-dependency HTML presentations — 12 presets, PPT conversion, Vercel deploy + PDF export | zarazhangrui/frontend-slides |
High-quality external skills packaged as first-class installable plugins. Roxabi adds versioning, install support, and a README; the source is vendored via git subtree. Attribution is in each plugin's README.
| Plugin | Description | Source |
|---|---|---|
| react-best-practices | React/Next.js performance optimization — 58 rules, 8 categories | vercel-labs/agent-skills |
| composition-patterns | React composition patterns — compound components, context providers | vercel-labs/agent-skills |
| web-design-guidelines | Review UI code for Web Interface Guidelines compliance | vercel-labs/agent-skills |
Data-producing plugins store user data in ~/.roxabi-vault/ — never in the repo. Override the location with the ROXABI_VAULT_HOME environment variable. Vault functionality is provided by roxabi-vault.
| Plugin | Data location |
|---|---|
| cv | ~/.roxabi-vault/cv/ |
| linkedin-post-generator | ~/.roxabi-vault/content/ (shared) |
| get-invoice-details | ~/.roxabi-vault/invoices/ |
| image-prompt-generator | ~/.roxabi-vault/config/, ~/.roxabi-vault/image-prompts/ |
| linkedin-apply | ~/.roxabi-vault/linkedin-apply/ |
Two kinds of plugins live in this repo:
Native plugins — built and maintained by Roxabi. We own the full lifecycle: dev-core, compress, 1b1, web-intel, cv, linkedin-post-generator, image-prompt-generator, get-invoice-details, linkedin-apply.
Wrapped plugins — high-quality external skills with no versioning or install mechanism in their source repo. Roxabi adds plugin structure and vendors the source (via git subtree or file copy) so they become installable. Existing wrapped plugins live in plugins/: react-best-practices, composition-patterns, web-design-guidelines. New wrapped plugins go into external/.
External plugin marketplaces we endorse are tracked in .claude-plugin/external-registry.json (source of truth). .claude-plugin/curated-marketplaces.json mirrors the curated list for runtime discovery — the /dev-core ci-setup skill reads it and offers installation — no skill edits needed to add a new endorsed source.
See CONTRIBUTING.md for how to add a plugin, wrap an external skill, or improve an existing one.
Tip
The fastest way to add a plugin is to follow the step-by-step guide in CLAUDE.md — it covers directory structure, frontmatter, marketplace registration, and the commit format.
MIT
