StackOne's curated collection of Claude Code plugins, skills, and hooks for integration development, security, documentation, and marketing. Includes curated external plugins from Vercel and Anthropic.
npx claudepluginhub StackOneHQ/stackone-claude-marketplaceReact development standards and best practices for agent-driven code generation. Guides AI agents in writing performant, maintainable React code.
Automates browser interactions for web testing, form filling, screenshots, and data extraction
C/C++ language server (clangd) for code intelligence
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
No description available.
Share bugs, ideas, or general feedback.
A curated collection of Claude Code plugins for StackOne development workflows. This marketplace aggregates both internal StackOne plugins and curated external plugins from Vercel and Anthropic via cross-marketplace loading.
/plugin marketplace add stackonehq/stackone-claude-marketplace
/plugin list @stackone-claude-marketplace
/plugin install <plugin-name>@stackone-claude-marketplace
stackone-claude-marketplace/
├── .claude-plugin/
│ └── marketplace.json # Plugin registry with local + external sources
├── plugins/ # Local plugins organized by domain
│ ├── documentation/ # Technical writing plugins
│ │ ├── mintlify-components/
│ │ └── natural-writing/
│ ├── marketing/ # Marketing & competitive intel
│ │ └── competitive-analysis/
│ └── security/ # Security & compliance
│ └── security-questionnaire/
├── hooks/ # Hook examples and templates
│ └── examples/
├── templates/ # Templates for new plugins/skills
│ ├── plugin-template/
│ └── skill-template/
└── docs/ # Documentation
| Plugin | Category | Description |
|---|---|---|
mintlify-components | Documentation | Use Mintlify components correctly when writing StackOne docs |
natural-writing | Documentation | Write like a human, not an LLM. Avoid cringe-inducing AI patterns. |
competitive-analysis | Marketing | Create comprehensive competitive analysis with Notion integration |
security-questionnaire | Security | Answer security/compliance questionnaires with codebase verification |
These plugins are loaded directly from their source repositories:
| Plugin | Source | Description |
|---|---|---|
vercel-react-best-practices | vercel-labs/agent-skills | React/Next.js performance optimization (40+ rules) |
vercel-web-design-guidelines | vercel-labs/agent-skills | Accessibility, UX, and design audit (100+ rules) |
agent-browser | vercel-labs/agent-browser | Browser automation CLI for AI agents |
commit-commands | anthropics/claude-plugins-official | Git commit workflow automation |
pr-review-toolkit | anthropics/claude-plugins-official | Comprehensive PR review with specialized agents |
feature-dev | anthropics/claude-plugins-official | Guided feature development with architecture focus |
agent-sdk-dev | anthropics/claude-plugins-official | Create Claude Agent SDK applications |
superpowers | obra/superpowers | 20+ battle-tested skills (TDD, debugging, collaboration) |
This marketplace demonstrates how to aggregate plugins from multiple sources without git submodules. External plugins use GitHub source references:
{
"name": "vercel-react-best-practices",
"source": {
"source": "github",
"repo": "vercel-labs/agent-skills",
"path": "skills/react-best-practices"
}
}
When users install these plugins, Claude Code fetches them directly from the source repository. This avoids the nested marketplace resolution issues associated with git submodules.
cp -r templates/plugin-template plugins/your-domain/your-plugin-name
# Edit .claude-plugin/plugin.json and add skills/commands/agents
my-plugin/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata
├── skills/
│ └── my-skill/
│ └── SKILL.md # Skill instructions
├── commands/ # Slash commands (optional)
├── agents/ # Specialized agents (optional)
└── README.md
Content is organized by domain expertise:
The hooks/examples/ directory contains ready-to-use hook configurations: