claude code plugins marketplace
npx skills add https://github.com/MadAppGang/claude-code --skill tanstack-queryInstala esta habilidad con la CLI y comienza a usar el flujo de trabajo SKILL.md en tu espacio de trabajo.
Battle-tested AI workflows from the top 1% of developers
While you're fighting with AI prompts, elite teams are shipping 3x faster.
At MadAppGang and 10xLabs, we don't do "good enough." We're the teams that Fortune 500 companies hire when their own developers can't deliver. We architect platforms processing $50M+ in annual transactions. We scale systems to 500,000+ concurrent users. We ship features that make or break businesses.
Here's what separates us: While most developers adopt new tools, we engineer competitive advantages.
When Claude Code launched, we didn't experiment—we weaponized it into production workflows that have:
⚡ Generated $2.3M in value through faster time-to-market on enterprise contracts
⚡ Eliminated 156+ hours per sprint of repetitive development work
⚡ Shipped 47 major features to production with zero rollbacks
⚡ Scaled to 23-person engineering teams without losing velocity
⚡ Cut AI token costs by 40% while improving output quality by 60%
Most developers are doing AI-assisted development wrong.
They're copying prompts from Reddit. Following tutorials from people who've never shipped to production. Using workflows that optimize for demos, not delivery.
The cost? Weeks of wasted time. Features that ship broken. AI bills that balloon. Teams that slow down instead of speed up.
Every single workflow in these plugins was forged in the fire of real deadlines, real users, and real revenue. Not built for GitHub stars. Built to win contracts and crush competitors.
We don't use "good enough" tools. We use the tools that win.
Stop burning cash on inefficient AI usage. Our semantic search optimization alone has saved our teams $14,000+ annually in API costs.
Stop shipping buggy code. Our multi-stage review system (manual + AI + browser testing) catches 89% of bugs before they hit production.
Stop reinventing workflows. These plugins encode 2,500+ hours of workflow optimization that you get in 60 seconds.
Option A: Keep experimenting with generic AI prompts, watching your competitors ship faster, burning budget on trial-and-error.
Option B: Use the exact workflows that elite teams use to build products worth millions.
These aren't "best practices" from blog posts. This is the battle-tested playbook that ships features to Fortune 500 clients, scales to hundreds of thousands of users, and wins against competitors with 10x your budget.
This is how the top 1% actually builds software in 2025.
Already installed? Update to get the latest features:
/plugin marketplace update mag-claude-plugins
This single command updates everything - works for both global and local installations. No need to reinstall plugins.
Recommended Setup: Add marketplace globally, enable plugins per-project.
# Step 1: Add marketplace globally (one-time setup)
/plugin marketplace add MadAppGang/claude-code
Then add to your project's .claude/settings.json:
{
"enabledPlugins": {
"frontend@mag-claude-plugins": true,
"code-analysis@mag-claude-plugins": true,
"bun@mag-claude-plugins": true,
"orchestration@mag-claude-plugins": true
}
}
That's it! The plugins are now enabled for this project. Commit .claude/settings.json so your team gets the same setup automatically.
This repository contains production-ready plugins designed for modern web development teams. Each plugin includes specialized agents, custom slash commands, and workflow skills to streamline your development process.
Version: 2.8.0 | Category: Development | Model: Sonnet | 📖 Full Documentation
Professional toolkit for TypeScript/React development with intelligent workflow detection, CSS-aware design validation, orchestrated workflows, quality automation, and team collaboration features.
Highlights:
/implement (8-phase with adaptive workflow detection), /implement-ui (with task decomposition), /validate-uiThe /implement Workflow with Intelligent Detection:
The star feature is the /implement command—now with intelligent workflow detection that automatically adapts based on your task:
For API Integration Tasks (e.g., "Integrate user management API"):
For UI Implementation Tasks (e.g., "Build UserProfile component"):
For Mixed Tasks (both API and UI):
Perfect for: React/TypeScript teams, TanStack ecosystem, API-driven apps, Figma workflows, shadcn/ui projects, pixel-perfect UI implementation, production-ready code quality
👉 Read the complete guide for detailed workflow documentation
Version: 1.1.0 | Category: Development | Model: Sonnet
Deep code investigation and analysis toolkit for understanding complex codebases with semantic search capabilities.
Highlights:
Perfect for: Code exploration, bug investigation, understanding legacy code, architectural analysis, large codebase navigation
Version: 1.2.0 | Category: Development | Model: Sonnet
Production-ready TypeScript backend development with Bun runtime, featuring comprehensive camelCase naming conventions, API documentation synchronization, and clean architecture patterns.
Highlights:
/implement-api (full-cycle), /setup-project (initialize), /apidog (sync API docs)The Stack:
Perfect for: TypeScript backend APIs, Bun projects, REST API development, microservices, API-first architectures, teams requiring naming consistency, Prisma ORM users, production-ready backends
Version: 0.1.0 | Category: Development | Type: Skills Plugin
Shared multi-agent coordination and workflow orchestration patterns for complex Claude Code workflows. Battle-tested patterns extracted from 100+ days of production use.
Highlights:
The Skills:
Usage:
# In your agent or command frontmatter
skills: orchestration:multi-model-validation, orchestration:quality-gates
# Or use skill bundles
skills: orchestration:complete # All 5 skills
Perfect for: Plugin developers, complex multi-phase workflows, multi-model validation, parallel execution patterns, test-driven development loops, production-grade error handling
👉 Read the complete guide for detailed patterns and examples
Repository: github.com/MadAppGang/claudish | Category: Development Tools | Type: Standalone CLI
Run Claude Code with any OpenRouter model via local Anthropic API proxy. 100% VERIFIED - Routes to real OpenRouter models, NOT Anthropic.
Top Recommended Models for Development:
x-ai/grok-code-fast-1 - xAI's Grok (fast coding, great for rapid prototyping)openai/gpt-5-codex - OpenAI's GPT-5 Codex (advanced reasoning, complex tasks)minimax/minimax-m2 - MiniMax M2 (high performance, balanced)qwen/qwen3-vl-235b-a22b-instruct - Alibaba's Qwen (vision-language, multimodal)anthropic/claude-sonnet-4.5 - Claude Sonnet (for comparison/baseline)Features:
--no-auto-approve)Installation:
npm install -g claudish
Usage:
# Interactive mode - shows model selector
claudish "implement user authentication"
# Specific model
claudish --model x-ai/grok-code-fast-1 "add tests"
# Custom model ID
claudish --model your/custom-model "your task"
# Disable auto-approve
claudish --no-auto-approve "make changes"
# List all models
claudish --list-models
# Help
claudish --help
Documentation: See github.com/MadAppGang/claudish for detailed setup and usage.
Perfect for: Exploring different AI models, cost optimization, specialized tasks requiring specific model capabilities, testing model performance, avoiding Anthropic API limitations
Claude Code Requirements:
.claude-plugin/plugin.json (required)enabledPlugins must be object with boolean values:{
"enabledPlugins": {
"plugin-name@marketplace-name": true
}
}
System Requirements:
This approach gives you the best of both worlds: marketplace installed once globally, plugins enabled individually per project.
Each developer on your team does this once:
/plugin marketplace add MadAppGang/claude-code
This registers the MAG Claude Plugins marketplace in your Claude Code installation. You only need to do this once, and it works for all your projects.
Add or edit .claude/settings.json in your project root:
{
"enabledPlugins": {
"frontend@mag-claude-plugins": true
}
}
Commit this file to git:
git add .claude/settings.json
git commit -m "Enable MAG Claude plugins for this project"
git push
When team members who have added the marketplace (Step 1) pull your project, Claude Code automatically:
No manual installation needed!
✅ One-time marketplace setup - Add the marketplace once, use in all projects
✅ Per-project plugin control - Each project specifies its own plugins
✅ Team consistency - Everyone gets the same plugins automatically
✅ Version controlled - Plugin configuration committed with your code
✅ No environment drift - All team members have identical plugin setup
✅ Project isolation - Plugins only active where you need them
Need more than one plugin? Just add more entries:
{
"enabledPlugins": {
"frontend@mag-claude-plugins": true,
"code-analysis@mag-claude-plugins": true,
"bun@mag-claude-plugins": true,
"orchestration@mag-claude-plugins": true
}
}
After setup, verify everything works:
# Check for any errors
/doctor
# List installed plugins
/plugin list
# Should show:
# frontend@mag-claude-plugins (project-specific)
# Version: 1.2.0
# Status: ✓ Loaded
Common issues:
/doctor shows errors, see Troubleshooting below.claude/settings.jsonOnce installed, plugins work seamlessly with Claude Code:
Agents are automatically invoked by Claude when appropriate, or you can request them explicitly.
Slash Commands provide powerful one-line workflows for common tasks.
Skills enhance Claude's capabilities and are automatically used when relevant.
/implement Create a user profile page with avatar upload and bio editing
This single command:
Result: Complete feature in minutes, not hours.
/import-figma NavigationBar
Fetches your Figma component, adapts it to your codebase, installs dependencies, and opens it in browser for validation.
📖 For comprehensive documentation, examples, and detailed workflow explanations:
👉 Frontend Development Plugin - Complete Guide
The complete guide includes:
/implement workflow (all 7 stages explained)/implement workflow deep-diveFor architecture and implementation details, see the ai-docs directory:
Have a plugin idea? Open an issue with the plugin-request label.
/implement workflow deep-diveFor technical details and architecture, see the ai-docs directory:
This project is licensed under the MIT License - see the LICENSE file for details.
Individual plugins may have their own licenses specified in their plugin.json files.
Jack Rudenko
Email: [email protected]
Company: MadAppGang
Made with ❤️ by MadAppGang