Claude Code Plugins
A marketplace of Claude Code plugins for enhanced development workflows.
Available Plugins
Intelligent context management for any project - captures and restores knowledge, architecture, and patterns.
Features:
- Automated context extraction from any codebase
- Technology-agnostic pattern recognition
- Semantic storage and retrieval
- Token-efficient restoration
- Security-first (excludes sensitive data)
Commands:
/context-save - Capture project context
/context-restore - Restore saved context
View full documentation
Manage AWS credentials across multiple accounts using ALKS with named profiles for simultaneous access.
Features:
- Named profile management for multiple AWS accounts
- ALKS integration for automated credential refresh
- Multiple active profiles simultaneously
- Expiration tracking and monitoring
- Smart role selection (Admin/ReadOnly)
- Safety-first (production accounts use readonly)
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 table
View full documentation
Comprehensive Next.js development patterns with TypeScript, Tailwind CSS v4, shadcn/ui, TanStack Query, and Zustand.
Features:
- Modern Next.js App Router patterns (Server & Client Components)
- TypeScript best practices with strict mode
- Tailwind CSS v4 with
cn() utility pattern
- shadcn/ui component library integration
- TanStack Query for data fetching
- Zustand for state management
- Code generation scripts for rapid development
- Comprehensive templates and examples
Scripts:
new-component.sh - Generate React components with tests
new-api-route.sh - Create API routes with validation
new-store.sh - Build Zustand stores with persistence
new-hook.sh - Create custom hooks (query, mutation, state)
Skills:
nextjs-patterns - Comprehensive development patterns and decision trees
View full documentation
Installation
Add This Marketplace
# Add the marketplace to Claude Code
/plugin marketplace add /Users/shyju.viswambaran/backend/cc-plugins
Install 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
Repository Structure
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
Adding New Plugins
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
Plugin Development Guidelines
Plugin Structure
Each plugin should follow this structure: