Plugins
Drop-in packages that extend a running agent without touching core — tools, skills, subagents, workflows, FastAPI routes, console dashboards, managed MCP servers, memory backends, and their own config + secrets.
A plugin is just a repo — install one with
python -m server plugin install <git-url>
(pinned in plugins.lock). The first-party ones below ship with protoAgent.
20 plugins
Delegate Registry
Official OrchestrationA hot-swappable registry of the agents and endpoints your agent can talk to — fleet A2A agents, OpenAI-compatible endpoints, ACP coding agents — managed from the console.
Discord
Official CommunicationRun your agent as a Discord bot — an inbound DM/channel gateway plus outbound posting tools.
GitHub (read tools)
Official IntegrationsRead-only GitHub over the gh CLI — fetch a PR, an issue, list issues, a commit diff. Opt-in; not every agent needs GitHub.
Google (Gmail + Calendar)
Official IntegrationsGmail + Calendar via a managed MCP server, connected in-app with an OAuth consent flow — no credentials.json to wrangle.
Hello (example)
Official ExamplesA minimal starting point — one tool, one bundled skill, and a console view. Copy it to scaffold your own plugin by hand.
Notes
Official Built-inA single shared markdown note the agent and the operator both read and write. The flagship reference plugin (ADR 0034 S4) — it owns its storage, its agent tools, and a sandboxed-iframe editor it serves itself (ADR 0038). Replaces the legacy native Notes surface.
Plugin Devkit
Official AuthoringBuild your own plugins — the authoring kit + reference plugin. A scaffold tool, an architect subagent, the building-plugins skill, and a console guide, in one bundle.
Slack
Official CommunicationRun your agent as a Slack app over Socket Mode (no public URL) — inbound messages, replies back out.
Telegram
Official CommunicationRun your agent as a Telegram bot — inbound DMs and groups, replies back out. A tiny reference communication plugin.
Workflows
Official Built-inDeclarative, multi-step subagent workflows (ADR 0002) — chain subagent steps (some in parallel) into repeatable recipes. Extracted from core to an opt-in plugin (lean core); the engine taps core via the plugin SDK (graph.sdk.run_subagent), never core internals.
projectBoard-plugin
Official OrchestrationBoard-driven coding-orchestration plugin for protoAgent: beads board + ACP spawn loop + planning layer + console view. Install via plugin install <git-url>.
terminal-plugin
Official PtyA full terminal (xterm.js + a real PTY over WebSocket) as a protoAgent console plugin — themed from the protoAgent design system.
artifact-plugin
Official EcosystemGenerative-UI plugin for protoAgent — the agent renders HTML/SVG/Mermaid/React into a sandboxed iframe (show_artifact). The reference external plugin.
doom-plugin
Official GamesBut can it run DOOM? A protoAgent console plugin — play shareware DOOM in a console view via WebAssembly (prboom). No DOS layer.
pm-stack
Official BundleProject Manager Stack — a protoAgent plugin bundle (ADR 0040): board orchestration + browser + delegates. Install: plugin install <git-url>.
agent-browser-plugin
Official AutomationBrowser-automation plugin for protoAgent, backed by vercel-labs/agent-browser: tools + skill + workflows + a live browser panel. plugin install <git-url>.
spacetraders-plugin
Official FrameworkAutonomous SpaceTraders fleet commander — a protoAgent full-bundle plugin (tools, crew, workflows, skills, console dashboard). Install via plugin install <git-url>.
protoTrader Finance
Official FinanceTrading research as a full bundle — market data, backtesting, factor IC, a behavioral journal, a gated paper broker, the research desk, and a Quant Desk dashboard.
CLI Coding Agent (ACP)
Official OrchestrationLet the lead agent spawn a CLI coding agent — protoCLI, Claude Code, Codex, or Gemini CLI — and hand it a real coding job over the Agent Client Protocol.
SpaceTraders
Official ExamplesAn autonomous SpaceTraders fleet commander — crew subagents, navigation/mining/trading tools, workflows, and a Fleet dashboard. The reference full-bundle plugin.
Publish your own
A plugin is a public repo with a protoagent.plugin.yaml manifest —
anyone can install one from its git URL with plugin install <git-url>.
For safety, this page only auto-lists plugins from the protoLabsAI org — tagging an outside repo never links it here on its own.
- 1. First-party (in our org): tag the repo with the
protoagent-plugintopic and it lists itself on the next deploy. - 2. Community: tag the topic so it's discoverable across GitHub, then open a PR adding it to
plugins.json— we review it before it's listed here.