Ai multi agent mcp
π Agent skills distilled from technical books β AI Engineering, Context Engineering, Designing Data-Intensive Applications, and more. Agent-agnostic, plain Markdown. Give your AI agent a bookshelf.
npx -y skills add ebarti/skills --skill ai-multi-agent-mcpAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Building multi-agent systems with a simplified inter-agent message envelope inspired by MCP-like structured messaging. This is not the official Model Context Protocol (MCP), which is a host/client/server protocol using JSON-RPC 2.0 with lifecycle initialization, capability negotiation, and server features such as tools/resources/prompts. Covers the book's pedagogical envelope format and transport choices, specialist agent design (Researcher / Writer + shared helpers), Orchestrator design with goal decomposition, and robustness via validation loops + a Validator agent. Use this skill when: - Designing inter-agent communication (simplified envelope schema, transport choice) - Building specialist agents (one role per agent, system prompt as identity) - Implementing an Orchestrator that routes between agents - Adding validation loops, retries, or a Validator agent - Hardening a multi-agent prototype against LLM/network/data failures
SKILL.md
2.3 KB, as published. Nobody here has run it
AI Multi-Agent MCP
Knowledge from "Context Engineering for Multi-Agent Systems" (Chapter 2). The chapter's create_mcp_message examples are a simplified inter-agent message envelope, not official MCP. Official MCP is a host/client/server protocol over JSON-RPC 2.0 with initialization/capability negotiation and server features such as tools/resources/prompts.
Quick Start
- Check
guidelines.mdto find which files to load - Load only relevant files (each topic has knowledge.md, rules.md, examples.md)
- Apply guidance to your work
Contents
References
| Category | Purpose |
|---|---|
mcp-protocol | Simplified envelope format, official-MCP caveats, transports, OpenAI client init, MAS workflow |
agent-design | Specialist agent template (Researcher, Writer), helper function pattern |
orchestration | Orchestrator role, hub-and-spoke routing, goal decomposition |
robustness | Robust LLM components, envelope validation, Validator agent, validation loop |
Workflows
| Workflow | Purpose |
|---|---|
workflows/build-mas.md | Build a multi-agent system from scratch (envelope β agents β orchestrator β first run) |
workflows/harden-mas.md | Add validation loops, robust LLM components, Validator agent |
Guidelines
See guidelines.md for task-based file selection.