Mpm logo

Mpm

Community
bobmatnyc
mpm

Access Claude MPM functionality and manage multi-agent orchestration

Overview

Publisherbobmatnyc
Repositoryclaude-mpm
Skill namempm
Stars
152
Forks
34
Bundled files
Instructions only
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by bobmatnyc on GitHub. Read the source before you install it.

Installation

Install the Mpm AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/bobmatnyc/claude-mpm.git /tmp/claude-mpm
mkdir -p .claude/skills
cp -r /tmp/claude-mpm/plugin/skills/mpm .claude/skills/mpm
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Mpm in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Mpm on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Mpm is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

/mpm - Claude MPM Framework Guide

What is Claude MPM?

Claude MPM (Multi-Agent Project Manager) extends Claude Code with multi-agent orchestration, project-specific PM instructions, persistent agent memory, real-time monitoring via a WebSocket dashboard, and automation hooks. A PM agent coordinates specialized agents to complete work through structured delegation using the Task tool. MPM manages skills deployment, agent selection, session continuity, and cross-project messaging.

How Delegation Works

The PM receives user requests and delegates to specialized agents via the Task tool:

Task(description="[what to do]", subagent_type="[agent-type]")
  • PM analyzes the request, breaks it into subtasks, and selects the right agent for each
  • Each agent focuses on its specialty and returns results to PM
  • Parallel execution when tasks are independent (e.g., frontend + backend simultaneously)
  • Sequential execution when tasks depend on each other (e.g., implement, then test, then deploy)
  • Agents should focus on their delegated task and return clear results -- PM handles orchestration
  • If an agent needs help from another specialty, it reports back to PM rather than self-delegating

Typical workflow: Research -> Engineer -> Ops (deploy) -> Ops (verify) -> QA -> Documentation

Available Agents

Claude MPM deploys a diverse set of specialized agents for different types of work. The canonical, always-current agent list is available via:

  • /agent-list skill: View all available agents
  • Agent tool's available-agent-types: Check which agents are active in your environment
  • Delegation guide: src/claude_mpm/agents/AGENT_DELEGATION.md

Representative Agent Categories

Core Agents (always deployed): engineer, research, qa, documentation, ops, security, ticketing

Extended Agents (deployed per project): version-control, data-engineer, product-owner, project-organizer, prompt-engineer, memory-manager

Language-Specific Engineers: python-engineer, typescript-engineer, javascript-engineer, golang-engineer, rust-engineer, java-engineer, ruby-engineer, php-engineer, dart-engineer

Framework Specialists: nextjs-engineer, react-engineer, svelte-engineer, tauri-engineer, phoenix-engineer

Platform Operations: local-ops, vercel-ops, gcp-ops, aws-ops, digitalocean-ops, clerk-ops

Quality & Testing: api-qa, web-qa, real-user, refactoring-engineer

Specialized: imagemagick, content, agentic-coder-optimizer, data-scientist

Note: The agent ecosystem evolves as features are added. Rather than listing every agent here (which would grow stale), use /agent-list or check your Agent tool's available-agent-types for the complete, current catalog.

Skills System

Skills are markdown files deployed to .claude/skills/{name}/SKILL.md that provide agents with specialized knowledge and procedures.

  • User-invocable skills respond to /skill-name slash commands (e.g., /mpm, /mpm-help)
  • Non-invocable skills activate automatically based on context triggers
  • Skills have frontmatter with: name, description, user-invocable, version, category, tags
  • Categories: mpm-command, pm-workflow, pm-reference, toolchains-*, universal-*
  • Progressive disclosure: Metadata loads first; full content loads on trigger
  • Skills can include references/ subdirectories for detailed supplementary content

Memory System

Agent memories provide persistent context across sessions.

  • Storage: .claude-mpm/memories/{agent_id}_memories.md
  • PM manages memory files directly (read, consolidate, save)
  • Each agent has domain-specific memory categories
  • Trigger phrases: "remember", "don't forget", "always", "never", "going forward"
  • Size limit: 80KB per file (~20k tokens)
  • Routing: Keyword-based routing sends memories to the appropriate agent
  • Memories are automatically loaded when an agent is delegated work

Hooks and Dashboard

Claude Code hooks capture tool usage, responses, and agent activity in real-time.

Event flow: Hook -> Connection Manager -> Monitor Server -> Dashboard

Dashboard at http://localhost:8765/ shows:

  • Tools being used and files being read/written
  • Agent delegations and completions
  • Session timeline and activity feed

Monitor commands: /mpm-monitor start, /mpm-monitor stop, /mpm-monitor status

Available Commands

CommandDescription
/mpmThis guide -- MPM overview and framework reference
/mpm-helpDetailed help for MPM commands
/mpm-initInitialize or update a project for MPM
/mpm-statusSystem health and status
/mpm-doctorRun diagnostic checks
/mpm-configManage configuration
/mpm-monitorControl monitoring server and dashboard
/mpm-versionVersion information
/mpm-organizeIntelligent file consolidation
/mpm-ticket-viewTicketing workflow management
/mpm-session-pauseSave session state for later
/mpm-session-resumeResume from paused session
/mpm-postmortemAnalyze session errors

For Agents: How to Work Within MPM

When you receive a delegated task from PM:

  1. Focus on your delegated task -- PM handles orchestration and coordination
  2. Return clear results with evidence: file paths created/modified, test counts and pass rates, URLs, error details
  3. Your agent memory is loaded automatically -- reference it for project-specific conventions and past decisions
  4. If you need another specialty, report back to PM with what you need rather than self-delegating
  5. Track files you create or modify -- PM will handle git operations and file tracking
  6. Follow project patterns -- check your memory and existing code conventions before implementing
  7. Escalate blockers immediately -- do not silently fail or produce partial results without explanation

Frequently asked questions

What does the Mpm AI skill do?

Access Claude MPM functionality and manage multi-agent orchestration

Why use Mpm on TypingMind?

Because you install it once and use it with any model. Mpm is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Mpm in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/bobmatnyc/claude-mpm/tree/main/plugin/skills/mpm. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Mpm?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Mpm?

As many as you like. As long as a model supports skills, you can use Mpm with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Mpm AI skill free?

It is published on GitHub by bobmatnyc. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇