-
Notifications
You must be signed in to change notification settings - Fork 1
plugins
github-actions[bot] edited this page Apr 8, 2026
·
1 revision
Plugins bundle MCP servers and hooks into a single installable unit.
Plugins extend an existing agent/runtime setup. They are part of Loom's ecosystem layer, not a separate public runtime API.
my-plugin/
├── plugin.yaml # metadata + MCP server configs
├── hooks/ # pre/post tool use hooks
└── skills/ # skill markdown files
from loom.ecosystem.plugin import PluginLoader
loader = PluginLoader()
plugin = loader.load_plugin("./my-plugin", source="local")
loader.enable_plugin("my-plugin")
loader.apply_to_agent("my-plugin", agent)Code: loom/ecosystem/plugin.py
Getting Started
Core Concepts
Runtime
Multi-Agent
Ecosystem
Self-Improvement
API Reference
Reference
Cookbook
- Overview
- Single-Turn Assistant
- Session Workflow
- Knowledge-Backed Answers
- Guardrailed Tool Agent
- Monitoring Agent
- Repo Copilot
- Internal Docs QA
- Ops Agent
- Approval Workflow