Drizzle ORM: typesikre schemas, migrationer og queries med end-to-end TypeScript-inferens.
@bobmatnyc
skills.sh bidragyder
bobmatnyc/claude-mpm-skills
Open source repository
Nedenstående er skillens egen dokumentation, hentet fra kildekoderepoet. Ophavsret tilhører forfatteren.
Production-ready Claude Code skills for intelligent project development
This repository contains a comprehensive collection of 174 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.
Claude MPM (Multi-Agent Project Manager) is an advanced orchestration framework that runs within Claude Code (Anthropic's official CLI). It enables:
Key Components:
How They Work Together:
Claude Code (CLI)
↓
Claude MPM (Multi-Agent Framework)
↓
Skills (Knowledge Modules) ← You are here
claude-mpm-skills/
├── toolchains/ # Language/framework-specific skills (130 skills)
│ ├── python/ # 11 skills
│ │ ├── frameworks/ # Django, FastAPI, Flask
│ │ ├── testing/ # pytest
│ │ ├── data/ # SQLAlchemy
│ │ ├── async/ # asyncio, Celery
│ │ ├── tooling/ # mypy, pyright
│ │ └── validation/ # Pydantic
│ ├── typescript/ # 14 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/ # 22 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/ # 7 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/ # 3 skills
│ │ ├── nextjs-core/ # Next.js fundamentals
│ │ └── nextjs-v16/ # Next.js 16 (Turbopack, cache components)
│ ├── ui/ # 4 skills
│ │ ├── styling/ # Tailwind CSS
│ │ └── components/ # shadcn/ui, DaisyUI, Headless UI
│ ├── ai/ # 11 skills
│ │ ├── sdks/ # Anthropic SDK
│ │ ├── frameworks/ # LangChain, DSPy, LangGraph
│ │ ├── services/ # OpenRouter
│ │ ├── protocols/ # MCP
│ │ └── techniques/ # Session Compression
│ ├── platforms/ # 26 skills
│ │ ├── deployment/ # Vercel (9), Netlify, DigitalOcean (10)
│ │ ├── database/ # Neon
│ │ ├── backend/ # Supabase
│ │ ├── observability/ # Datadog
│ │ └── auth/ # Better Auth (4)
│ ├── databases/ # 1 skill
│ │ └── mongodb/ # MongoDB
│ ├── visualbasic/ # 4 skills
│ └── universal/ # 9 skills
│ └── (cross-language infrastructure patterns)
└── universal/ # 42 skills
├── infrastructure/ # Docker, GitHub Actions
├── data/ # GraphQL
├── architecture/ # Software patterns
└── testing/ # TDD, systematic debugging
Frameworks:
Testing:
Data & ORM:
Async & Background Jobs:
Type Checking:
Validation:
Frameworks:
Testing:
Data & ORMs:
Validation:
State Management:
API:
Build Tools:
Frameworks:
Testing:
Build Tools:
Tooling:
WordPress Ecosystem:
Enterprise:
Web & HTTP:
gRPC:
Concurrency:
Testing:
Data:
CLI:
Observability:
Web & Desktop:
CLI:
CSS Frameworks:
Component Libraries:
SDKs:
Frameworks:
Services:
Protocols:
Techniques:
Deployment:
Database:
Backend:
Infrastructure:
Observability:
Security:
Data:
Architecture:
Testing & Debugging:
Orchestration:
Skill invocation, and the context: fork pattern for forked sub-agents# Install via pip (recommended)
pip install claude-mpm
# Or install via Homebrew (macOS)
brew tap bobmatnyc/tools
brew install claude-mpm
# Or install from source
git clone https://github.com/bobmatnyc/claude-mpm.git
cd claude-mpm
pip install -e .
# Navigate to your project directory
cd your-project
# Initialize Claude MPM
/mpm-init
This creates .claude-mpm/ directory with configuration and agent setup.
# Auto-detect your project stack and deploy relevant skills
/mpm-auto-configure
# Or use the agent auto-configuration
/mpm-agents-auto-configure
Skills are automatically selected based on:
package.json → TypeScript/JavaScript skillspyproject.toml → Python skills# Check MPM status
/mpm-status
# List available skills
/mpm-agents-list
# View deployed agents
/mpm-agents
Clone this repository to make skills available to Claude MPM:
# Clone skills repository
git clone https://github.com/bobmatnyc/claude-mpm-skills.git
# Link to Claude MPM skills directory
ln -s $(pwd)/claude-mpm-skills ~/.claude-mpm/skills
These skills are built for the claude-mpm passive-injection model. In that model, the framework injects skill content into the PM agent's context as reference material and lets the orchestrator decide when to apply it — skills deliberately do not self-trigger on keyword matches.
Two frontmatter fields encode that design and are intentional, not oversights:
Dokumentationen er forkortet. Læs den fulde version på GitHub.