Plugins & Marketplace¶
19 installable plugins — domain bundles and standalone packages distributed via Claude Code plugin registry and ClawHub.
Install entire skill domains or individual tools with a single command. Compatible with Claude Code, OpenAI Codex, Gemini CLI, and OpenClaw.
At a Glance¶
-
19 Plugins
9 domain bundles + 10 standalone packages
-
9 Domains
Engineering, Marketing, Product, C-Level, PM, RA/QM, Business, Finance
-
177 Skills
All skills available through plugin install
-
4 Platforms
Claude Code, Codex CLI, Gemini CLI, OpenClaw
Quick Install¶
Plugin Architecture¶
graph TB
subgraph Registry["Plugin Registry"]
MP["marketplace.json<br/>19 plugins"]
end
subgraph Bundles["Domain Bundles (9)"]
B1["engineering-skills<br/>24 skills"]
B2["engineering-advanced-skills<br/>25 skills"]
B3["marketing-skills<br/>43 skills"]
B4["c-level-skills<br/>28 skills"]
B5["ra-qm-skills<br/>12 skills"]
B6["product-skills<br/>12 skills"]
B7["pm-skills<br/>6 skills"]
B8["business-growth-skills<br/>4 skills"]
B9["finance-skills<br/>2 skills"]
end
subgraph Standalone["Standalone Plugins (10)"]
S1["pw<br/>Playwright Pro"]
S2["self-improving-agent"]
S3["google-workspace-cli"]
S4["executive-mentor"]
S5["content-creator"]
S6["demand-gen"]
S7["fullstack-engineer"]
S8["aws-architect"]
S9["product-manager"]
S10["skill-security-auditor"]
end
MP --> Bundles
MP --> Standalone
Domain Bundles¶
Domain bundles install an entire skill domain with all its tools, references, and assets. Use these when you want comprehensive coverage for a functional area.
Engineering — Core¶
| Plugin | engineering-skills |
| Skills | 24 |
| Install | claude /plugin install engineering-skills |
Architecture, frontend, backend, fullstack, QA, DevOps, security, AI/ML, data engineering, Playwright Pro (9 sub-skills), self-improving agent, Stripe integration, TDD guide, tech stack evaluator, Google Workspace CLI.
Engineering — POWERFUL¶
| Plugin | engineering-advanced-skills |
| Skills | 25 |
| Install | claude /plugin install engineering-advanced-skills |
Agent designer, RAG architect, database designer, migration architect, observability designer, dependency auditor, release manager, API reviewer, CI/CD pipeline builder, MCP server builder, skill security auditor, performance profiler.
Marketing¶
| Plugin | marketing-skills |
| Skills | 43 |
| Install | claude /plugin install marketing-skills |
Content, SEO, CRO, Channels, Growth, Intelligence, Sales enablement, and X/Twitter growth. 51 Python tools, 73 reference docs across 7 specialist pods.
C-Level Advisory¶
| Plugin | c-level-skills |
| Skills | 28 |
| Install | claude /plugin install c-level-skills |
Virtual board of directors (CEO, CTO, COO, CPO, CMO, CFO, CRO, CISO, CHRO), executive mentor, founder coach, board meetings, decision logger, scenario war room, competitive intel, M&A playbook, culture frameworks.
Regulatory & Quality¶
| Plugin | ra-qm-skills |
| Skills | 12 |
| Install | claude /plugin install ra-qm-skills |
ISO 13485 QMS, MDR 2017/745, FDA 510(k)/PMA, GDPR/DSGVO, ISO 27001 ISMS, CAPA management, risk management, clinical evaluation for HealthTech/MedTech.
Product¶
| Plugin | product-skills |
| Skills | 12 |
| Install | claude /plugin install product-skills |
Product manager toolkit (RICE, PRDs), agile product owner, product strategist, UX researcher, UI design system, competitive teardown, landing page generator, SaaS scaffolder, product analytics, experiment designer, product discovery, roadmap communicator. 13 Python tools.
Project Management¶
| Plugin | pm-skills |
| Skills | 6 |
| Install | claude /plugin install pm-skills |
Senior PM, scrum master, Jira expert, Confluence expert, Atlassian admin, template creator. 12 Python tools with Atlassian MCP integration.
Business & Growth¶
| Plugin | business-growth-skills |
| Skills | 4 |
| Install | claude /plugin install business-growth-skills |
Customer success manager, sales engineer, revenue operations, contract & proposal writer.
Finance¶
| Plugin | finance-skills |
| Skills | 2 |
| Install | claude /plugin install finance-skills |
Financial analyst (ratio analysis, DCF valuation, budgeting, forecasting) and SaaS metrics coach (ARR, MRR, churn, CAC, LTV, NRR). 7 Python tools.
Standalone Plugins¶
Standalone plugins install individual skills or toolkits. Use these when you need a specific capability without the full domain bundle.
-
Playwright Pro
pw
Production-grade Playwright testing toolkit. 9 sub-skills, 3 agents, 55 templates, TestRail + BrowserStack MCP.
Slash commands:
/pw:generate,/pw:fix,/pw:review,/pw:migrate,/pw:coverage,/pw:init,/pw:report,/pw:testrail,/pw:browserstack -
Self-Improving Agent
self-improving-agent
Auto-memory curation, learning promotion, and pattern extraction into reusable skills.
Slash commands:
/si:review,/si:promote,/si:extract,/si:status,/si:remember -
Google Workspace CLI
google-workspace-cli
Gmail, Drive, Sheets, Calendar, Docs, Chat, Tasks via the
gwsCLI. 5 Python tools, 43 recipes, 10 persona bundles. -
Executive Mentor
executive-mentor
Adversarial thinking partner for founders. Pre-mortem, board prep, hard calls, stress tests, postmortems.
Slash commands:
/em:challenge,/em:board-prep,/em:hard-call,/em:stress-test,/em:postmortem -
Content Creator
content-creator
SEO-optimized content with brand voice analysis, content frameworks, and social media templates.
-
Demand Gen
demand-gen
Multi-channel demand generation, paid media optimization, SEO strategy, and partnership programs.
-
Fullstack Engineer
fullstack-engineer
Full-stack engineering with React, Node, databases, and deployment patterns.
-
AWS Architect
aws-architect
AWS serverless architecture with IaC templates, cost optimization, and CI/CD pipelines.
-
Product Manager
product-manager
RICE scoring, customer interview analysis, and PRD generation toolkit.
-
Skill Security Auditor
skill-security-auditor
Security scanner for AI agent skills. Detects malicious patterns, prompt injection, data exfiltration, and unsafe file operations.
Plugin Structure¶
Every plugin follows the same minimal schema for maximum portability:
{
"name": "plugin-name",
"description": "What it does",
"version": "2.1.2",
"author": { "name": "Author Name" },
"homepage": "https://...",
"repository": "https://...",
"license": "MIT",
"skills": "./"
}
ClawHub Registry
Plugins are distributed via ClawHub as the public registry. The cs- prefix is used only when a slug is already taken by another publisher — repo folder names remain unchanged.
Directory Layout¶
domain-name/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata
├── skill-a/
│ ├── SKILL.md # Skill instructions
│ ├── scripts/ # Python CLI tools
│ ├── references/ # Knowledge bases
│ └── assets/ # Templates
├── skill-b/
│ └── ...
└── CLAUDE.md # Domain instructions
Compatibility Matrix¶
| Platform | Bundle Install | Standalone Install | Slash Commands | Agents |
|---|---|---|---|---|
| Claude Code | ||||
| OpenAI Codex | ||||
| Gemini CLI | ||||
| OpenClaw |
Full feature support
Slash commands (like /pw:generate) and agent spawning (like cs-engineering-lead) are Claude Code features. On other platforms, the underlying skills and Python tools work — just without the command/agent wrappers.
All Plugins at a Glance¶
| Plugin | Type | Skills | Category | Keywords |
|---|---|---|---|---|
marketing-skills |
Bundle | 43 | Marketing | content, seo, cro, growth, social |
c-level-skills |
Bundle | 28 | Leadership | ceo, cto, strategy, advisory |
engineering-advanced-skills |
Bundle | 25 | Development | agent, rag, database, ci-cd, mcp |
engineering-skills |
Bundle | 24 | Development | architecture, devops, ai, ml |
ra-qm-skills |
Bundle | 12 | Compliance | iso-13485, mdr, fda, gdpr |
product-skills |
Bundle | 12 | Product | pm, agile, ux, saas, analytics, experimentation, discovery, roadmap |
pm-skills |
Bundle | 6 | PM | scrum, jira, confluence |
business-growth-skills |
Bundle | 4 | Business | sales, revenue, customer-success |
finance-skills |
Bundle | 2 | Finance | dcf, valuation, saas-metrics |
pw |
Standalone | 9 | Development | playwright, e2e, testing |
self-improving-agent |
Standalone | 5 | Development | memory, auto-memory |
google-workspace-cli |
Standalone | 1 | Development | gmail, drive, sheets, calendar |
executive-mentor |
Standalone | 5 | Leadership | pre-mortem, board-prep |
content-creator |
Standalone | 1 | Marketing | seo, brand-voice |
demand-gen |
Standalone | 1 | Marketing | paid-media, acquisition |
fullstack-engineer |
Standalone | 1 | Development | react, node |
aws-architect |
Standalone | 1 | Development | aws, serverless, cloud |
product-manager |
Standalone | 1 | Product | rice, prd |
skill-security-auditor |
Standalone | 1 | Development | security, audit |
FAQ¶
What's the difference between a bundle and a standalone plugin?
Bundles install all skills in a domain (e.g., marketing-skills installs all 43 marketing skills). Standalone plugins install a single skill or toolkit (e.g., pw installs just Playwright Pro). Standalone plugins are subsets of their parent bundle — installing both is safe but redundant.
Can I install multiple plugins?
Yes. Plugins are designed to coexist without conflicts. Each skill is self-contained with no cross-dependencies.
Do plugins require API keys or paid services?
No. All Python tools use stdlib only. Some skills reference external services (AWS, Google Workspace, Stripe) but follow a BYOK (bring-your-own-key) pattern — you use your own accounts.
How do I update plugins?
Re-run the install command. Plugins follow semantic versioning aligned with the repository releases (currently v2.1.2).
What is ClawHub?
ClawHub is the public registry for Claude Code plugins. Think of it like npm for AI agent skills. The cs- prefix is used only when a plugin slug conflicts with another publisher.