Amplifier (Microsoft) — Summary
Amplifier is a modular AI development platform from Microsoft's MADE:Explorations team, published
as a Python package installable via uv tool install. It ships with a single CLI binary
(amplifier) and a bundle system where capability bundles are independently installable Git
repositories containing agents, behaviors, and context documents. The core philosophy is an
"ultra-thin kernel" (~2,600 lines of Python) that provides only mechanisms (sessions, modules,
hooks, coordinators) while all intelligence lives in userland bundles. It supports 4 LLM providers
at setup time (Anthropic, OpenAI, Azure OpenAI, Ollama) via an interactive wizard. The only
bundled agent in the main repo is amplifier-expert, a knowledge-base consultant that must be
consulted before implementing anything Amplifier-related. The project explicitly positions itself
as a Linux-kernel analogy: "small, protected core paired with a diverse and experimental userland."
Compared to seeds: closest to agent-os (methodology-doc + scaffold) in philosophy, but Amplifier
adds a real Python runtime, module protocol contracts, and a bundle marketplace mechanism absent
from agent-os; it diverges from claude-flow by being provider-agnostic, CLI-native (not
Claude-Code-specific), and kernel-based rather than MCP-toolserver-based.