npx claudepluginhub solrac97gr/marketplace-pluginsComplete toolkit for Go backend development with hexagonal architecture, DDD, TDD/BDD, and automated architecture testing
Comprehensive React development plugin with TypeScript, Vite, Tailwind CSS, and modern testing tools. Provides TDD workflows, accessibility compliance, performance optimization, and intelligent code review agents.
Meta-plugin for analyzing projects and generating custom Claude Code plugins tailored to your codebase patterns and workflows
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
A personal collection of custom plugins and skills for Claude Code.
This repository contains custom plugins that extend Claude Code's functionality through user-defined skills. Each plugin can provide one or more skills that can be invoked during Claude Code sessions using the /skill-name command.
Complete toolkit for Go backend development following hexagonal architecture, Domain-Driven Design (DDD), and Test-Driven Development with Godog BDD framework.
Features:
Skills: /start-project, /new-feature, /new-entity, /new-usecase, /from-diagram, /review-arch, /update-arch-tests
Comprehensive React development plugin with TypeScript, Vite, Tailwind CSS, and modern testing tools. Provides TDD workflows, accessibility compliance, performance optimization, and intelligent code review agents.
Features:
Skills: /start-project, /new-component, /new-hook, /new-context, /new-feature, /from-diagram, /review-code, /review-a11y, /update-tests, /optimize-performance
Meta-plugin for analyzing projects and generating custom Claude Code plugins tailored to your codebase patterns and workflows.
Features:
Skills: /analyze-project, /generate-plugin
Use Cases:
To use these plugins with Claude Code:
marketplace-plugins/
├── .claude-plugin/
│ └── marketplace.json # Marketplace manifest
├── plugins/
│ └── [plugin-name]/
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin metadata
│ ├── skills/ # Skill definitions
│ ├── agents/ # AI agent definitions
│ ├── servers/ # MCP servers
│ └── README.md # Plugin documentation
└── CLAUDE.md # Development guide
# Go backend development
/start-project my-backend-api
/new-feature user-management
# React frontend development
/start-project my-react-app
/new-component Button
# Generate custom plugin for your project
/analyze-project
/generate-plugin
Easy Way (Recommended):
Use the plugin-helper plugin to generate a custom plugin for your project:
# Analyze your project
/analyze-project
# Review the analysis report
# Then generate the plugin
/generate-plugin
Manual Way:
Create a new directory under plugins/:
mkdir -p plugins/my-plugin/.claude-plugin
mkdir -p plugins/my-plugin/skills/my-skill
Add plugin metadata in .claude-plugin/plugin.json:
{
"name": "my-plugin",
"description": "Description of what your plugin does",
"version": "1.0.0"
}
Create a skill in skills/my-skill/SKILL.md:
---
description: Brief description
---
Instructions for Claude when this skill is invoked.
Register the plugin in .claude-plugin/marketplace.json:
{
"plugins": [
{
"name": "my-plugin",
"source": "./plugins/my-plugin",
"description": "Description of what your plugin does"
}
]
}