π‘ Summary
A collection of 156 production-ready skills for the Claude Multi-Agent Project Manager ecosystem.
π― Target Audience
π€ AI Roast: βPowerful, but the setup might scare off the impatient.β
Risk: Medium. Review: shell/CLI command execution; outbound network access (SSRF, data egress); API keys/tokens handling and storage; filesystem read/write scope and path traversal; dependency pinning and supply-chain risk. Run with least privilege and audit before enabling in production.
Claude MPM Skills
Production-ready Claude Code skills for intelligent project development
Overview
This repository contains a comprehensive collection of 156 Claude Code skills designed for the Claude Multi-Agent Project Manager (MPM) ecosystem. Skills cover modern development workflows with 95%+ coverage across Python, TypeScript, JavaScript, Golang, PHP, Rust, Elixir, AI, and universal tooling.
What is Claude MPM?
Claude MPM (Multi-Agent Project Manager) is an advanced orchestration framework that runs within Claude Code (Anthropic's official CLI). It enables:
- Multi-Agent Coordination: Specialized agents for different tasks (research, engineering, QA, ops)
- Intelligent Delegation: PM agent coordinates work across specialist agents
- Context Management: Efficient token usage with progressive disclosure
- Skill System: Modular, reusable knowledge bases (this repository)
Key Components:
- Claude Code: Anthropic's official CLI environment
- Claude MPM: Multi-agent framework running in Claude Code
- Skills: Domain-specific knowledge modules (this repo contains 156 skills)
How They Work Together:
Claude Code (CLI)
β
Claude MPM (Multi-Agent Framework)
β
Skills (Knowledge Modules) β You are here
Features
- Progressive Loading: Skills load on-demand with compact entry points, expanding to full references when needed
- Token Efficiency: ~87% token savings during discovery phase
- Toolchain Detection: Automatically deploy relevant skills based on project type
- Production-Ready: All skills include real-world examples, best practices, and troubleshooting
- Research-Backed: Built on latest 2025 techniques and industry patterns
Quick Stats
- Total Skills: 156 production-ready skills
- Coverage: 95%+ of modern development workflows
- Token Efficiency: ~66.7k entry tokens vs ~512.4k full tokens (~87% savings)
- Categories: Python, TypeScript, JavaScript, Golang, PHP, Rust, Elixir, Next.js, UI, AI, Platforms, Universal
- Complete Stacks: Full-stack TypeScript, Python Web, React Frontend, AI Workflows
Repository Structure
claude-mpm-skills/
βββ toolchains/ # Language/framework-specific skills (76 skills)
β βββ python/ # 10 skills
β β βββ frameworks/ # Django, FastAPI, Flask
β β βββ testing/ # pytest
β β βββ data/ # SQLAlchemy
β β βββ async/ # asyncio, Celery
β β βββ tooling/ # mypy, pyright
β β βββ validation/ # Pydantic
β βββ typescript/ # 13 skills
β β βββ frameworks/ # React, Vue, Node.js backend, Fastify
β β βββ testing/ # Vitest, Jest
β β βββ data/ # Drizzle, Kysely, Prisma
β β βββ validation/ # Zod
β β βββ state/ # Zustand, TanStack Query
β β βββ api/ # tRPC
β β βββ build/ # Turborepo
β βββ javascript/ # 12 skills
β β βββ frameworks/ # React, Vue, Svelte, SvelteKit
β β βββ testing/ # Playwright, Cypress
β β βββ build/ # Vite
β β βββ tooling/ # Biome
β βββ php/ # 6 skills
β β βββ frameworks/ # WordPress, EspoCRM
β β βββ testing/ # PHPUnit, PHPCS
β βββ golang/ # 7 skills
β β βββ web/ # net/http, Chi, Gin, Echo, Fiber
β β βββ testing/ # Go testing, testify, httptest
β β βββ data/ # SQL, migrations, ORMs/query builders
β β βββ cli/ # CLI tooling patterns
β β βββ observability/ # Logging and telemetry
β β βββ grpc/ # Protobuf APIs, interceptors, streaming
β β βββ concurrency/ # errgroup, worker pools, bounded fan-out
β βββ rust/ # 4 skills
β β βββ frameworks/ # Tauri, Axum
β β βββ cli/ # Clap
β β βββ desktop-applications/ # Desktop app patterns
β βββ elixir/ # 4 skills
β β βββ frameworks/ # Phoenix + LiveView (BEAM), Phoenix API + Channels
β β βββ data/ # Ecto patterns
β β βββ ops/ # Phoenix operations & releases
β βββ nextjs/ # 2 skills
β β βββ core/ # Next.js fundamentals
β β βββ v16/ # Next.js 16 (Turbopack, cache components)
β βββ ui/ # 4 skills
β β βββ styling/ # Tailwind CSS
β β βββ components/ # shadcn/ui, DaisyUI, Headless UI
β βββ ai/ # 7 skills
β β βββ sdks/ # Anthropic SDK
β β βββ frameworks/ # LangChain, DSPy, LangGraph
β β βββ services/ # OpenRouter
β β βββ protocols/ # MCP
β β βββ techniques/ # Session Compression
β βββ platforms/ # 4 skills
β βββ deployment/ # Vercel, Netlify
β βββ database/ # Neon
β βββ backend/ # Supabase
βββ universal/ # 32 skills
βββ infrastructure/ # Docker, GitHub Actions
βββ data/ # GraphQL
βββ architecture/ # Software patterns
βββ testing/ # TDD, systematic debugging
Complete Skill Catalog
Python (10 Skills)
Frameworks:
- Django - Full-featured web framework with ORM, admin, DRF
- FastAPI - Modern async API framework with automatic OpenAPI
- Flask - Lightweight WSGI framework for microservices
Testing:
- pytest - Fixtures, parametrization, plugins, FastAPI/Django integration
Data & ORM:
- SQLAlchemy - Modern ORM with 2.0 syntax, async, Alembic migrations
Async & Background Jobs:
- asyncio - Async/await patterns, event loops, concurrent programming
- Celery - Distributed task queues, periodic tasks, workflows
Type Checking:
- mypy - Static type checker with strict mode
- pyright - Fast type checker with VS Code integration
Validation:
- Pydantic - Data validation with type hints, FastAPI/Django integration
TypeScript (13 Skills)
Frameworks:
- React - Hooks, context, performance optimization
- Vue 3 - Composition API, Pinia, TypeScript integration
- Node.js Backend - Express/Fastify with Drizzle/Prisma
- Fastify - Schema-first, high-performance backend with typed routes
Testing:
- Vitest - Modern testing with React/Vue
- Jest - TypeScript testing with ts-jest
Data & ORMs:
- Drizzle - TypeScript-first ORM with migrations
- Kysely - Type-safe SQL query builder
- Prisma - Next-gen ORM with migrations and client generation
Validation:
- Zod - Schema validation with type inference
State Management:
- Zustand - Minimal React state management
- TanStack Query - Server state, caching, optimistic updates
API:
- tRPC - End-to-end type safety without codegen
Build Tools:
- Turborepo - Monorepo with intelligent caching
JavaScript (12 Skills)
Frameworks:
- React - Component patterns (also in TypeScript)
- Vue - Progressive framework (also in TypeScript)
- Svelte - Reactive framework with runes
- SvelteKit - Full-stack Svelte with SSR/SSG
- Svelte 5 Runes + adapter-static - Hydration-safe state and store bridges
Testing:
- Playwright - Cross-browser E2E testing with Page Object Model
- Cypress - Browser E2E testing with network stubbing and component testing
Build Tools:
- Vite - Fast build tool with HMR
Tooling:
- Biome - Fast linter and formatter (Rust-powered)
PHP (6 Skills)
WordPress Ecosystem:
- wordpress-advanced-architecture - REST API, WP-CLI, performance optimization, caching strategies
- wordpress-block-editor - Block themes, FSE architecture, theme.json, custom Gutenberg blocks
- wordpress-testing-qa - PHPUnit integration tests, WP_Mock unit tests, PHPCS coding standards
Enterprise:
- espocrm-development - EspoCRM customization, entity management, API extensions
- espocrm-advanced-features - Advanced workflows, complex business logic implementation
- espocrm-deployment - Production deployment, security hardening, performance tuning
Golang (7 Skills)
Web & HTTP:
- golang-http-frameworks - net/http, Chi, Gin, Echo, Fiber patterns
gRPC:
- golang-grpc - Protobuf APIs, interceptors, streaming, bufconn testing
Concurrency:
- golang-concurrency-patterns - Context, errgroup, worker pools, bounded fan-out
Testing:
- golang-testing-strategies - Table-driven tests, testify, gomock, benchmarks
Data:
- golang-database-patterns - SQL patterns, migrations, query builders
CLI:
- golang-cli-cobra-viper - Cobra/Viper CLI structure and config
Observability:
- golang-observability-opentelemetry - Logging/metrics/traces + middleware patterns
Rust (4 Skills)
Web & Desktop:
- axum - Production Rust HTTP APIs with Tower middleware
- desktop-applications - Rust desktop app architecture and integration patterns
- tauri - Cross-platform desktop apps with Rust backend and web frontend
CLI:
- clap - Rust CLI parsing, subcommands, config layering, testable binaries
Next.js (2 Skills)
- Next.js Core - App Router, Server Components, Server Actions
- Next.js v16 - Turbopack, cache components, migration guide
UI & Styling (4 Skills)
CSS Frameworks:
- Tailwind CSS - Utility-first CSS with JIT mode
Component Libraries:
- shadcn/ui - Copy-paste components with Radix UI + Tailwind
- DaisyUI - Tailwind plugin with 50+ components and themes
- Headless UI - Unstyled accessible primitives for React/Vue
AI & LLM (7 Skills)
SDKs:
- Anthropic SDK - Messages API, streaming, function calling, vision
Frameworks:
- LangChain - LCEL, RAG, agents, chains, memory
- DSPy - Automatic prompt optimization with MIPROv2
- LangGraph - Stateful multi-agent orchestration
Services:
- OpenRouter - Unified LLM API access
Protocols:
- MCP - Model Context Protocol
Techniques:
- Session Compression - Context window compression, progressive summarization
Platforms (4 Skills)
Deployment:
- Vercel - Next.js deployment, Edge Functions, serverless
- Netlify - JAMstack, Forms, Identity, Edge Functions
Database:
- Neon - Serverle
Pros
- Extensive coverage of modern development workflows.
- Production-ready with real-world examples.
- Efficient token usage and progressive loading.
Cons
- Complexity may overwhelm new users.
- Dependency on Claude Code CLI.
- Limited to specific programming languages.
Related Skills
claude-mods
AβPowerful, but the setup might scare off the impatient.β
agentic-qe
AβPowerful, but the setup might scare off the impatient.β
Disclaimer: This content is sourced from GitHub open source projects for display and rating purposes only.
Copyright belongs to the original author bobmatnyc.
