Marketplace for productivity and knowledge management plugins
npx claudepluginhub Add4x/cc-pluginsIntelligent context management for any project - captures and restores knowledge, architecture, and patterns
Manage AWS credentials across multiple accounts using ALKS with named profiles for simultaneous access
Comprehensive Next.js frontend development patterns with TypeScript, Tailwind CSS v4, shadcn/ui, TanStack Query, and Zustand - includes intelligent code generation and best practices
Claude Code plugins for the Slidev presentation framework
Bundled plugins for actuating and debugging the Chrome browser.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
A marketplace of Claude Code plugins for enhanced development workflows.
Intelligent context management for any project - captures and restores knowledge, architecture, and patterns.
Features:
Commands:
/context-save - Capture project context/context-restore - Restore saved contextManage AWS credentials across multiple accounts using ALKS with named profiles for simultaneous access.
Features:
Commands:
/aws-auth <profile> - Refresh specific profile credentials/aws-auth-all - Refresh all profiles at once/aws-status - Show all profile statuses and expiration/aws-switch <profile> - Switch active AWS profile/aws-accounts - Display account reference tableComprehensive Next.js development patterns with TypeScript, Tailwind CSS v4, shadcn/ui, TanStack Query, and Zustand.
Features:
cn() utility patternScripts:
new-component.sh - Generate React components with testsnew-api-route.sh - Create API routes with validationnew-store.sh - Build Zustand stores with persistencenew-hook.sh - Create custom hooks (query, mutation, state)Skills:
nextjs-patterns - Comprehensive development patterns and decision trees# Add the marketplace to Claude Code
/plugin marketplace add /Users/shyju.viswambaran/backend/cc-plugins
# Install context management plugin
/plugin install context-management@development-plugins-marketplace
# Install AWS profile manager plugin
/plugin install aws-profile-manager@development-plugins-marketplace
# Install Next.js frontend development plugin
/plugin install nextjs-frontend-dev@development-plugins-marketplace
# Verify installation
/plugin list
cc-plugins/
├── .claude-plugin/
│ └── marketplace.json # Marketplace configuration
├── context-management/ # Context management plugin
│ ├── agents/
│ ├── commands/
│ └── README.md
├── aws-profile-manager/ # AWS profile manager plugin
│ ├── agents/
│ ├── commands/
│ └── README.md
├── nextjs-frontend-dev/ # Next.js frontend development plugin
│ ├── skills/
│ │ └── nextjs-patterns/ # Comprehensive Next.js patterns
│ ├── scripts/ # Code generation scripts
│ ├── templates/ # Component and code templates
│ └── README.md
└── [future-plugins]/ # Additional plugins coming soon
To add a new plugin to this marketplace:
Create plugin directory:
mkdir my-new-plugin
cd my-new-plugin
Create plugin structure:
my-new-plugin/
├── agents/ # Optional: custom agents
├── commands/ # Optional: slash commands
├── skills/ # Optional: agent skills
├── hooks/ # Optional: event hooks
└── README.md # Plugin documentation
Update marketplace.json:
{
"plugins": [
{
"name": "my-new-plugin",
"displayName": "My New Plugin",
"description": "Plugin description",
"version": "1.0.0",
"author": "Your Name",
"source": "./my-new-plugin",
"keywords": ["relevant", "keywords"],
"category": "productivity"
}
]
}
Test and install:
/plugin marketplace refresh development-plugins-marketplace
/plugin install my-new-plugin@development-plugins-marketplace
Each plugin should follow this structure: