- plugin-template — a starter for authoring a single plugin (or a couple of them).
- team-marketplace-template — the full ecosystem pattern: a monorepo of plugins plus a meta-plugin whose manifest defines your baseline and policy.
1. Author your plugins
A plugin is a directory with a.devin-plugin/plugin.json manifest; everything else is optional:
AGENTS.md short — it costs context in every session for everyone who has the plugin.
2. Validate and test locally
Both templates ship a validator (node scripts/validate-template.mjs) and a CI workflow that runs it on every PR. For a live test, install from a local folder with the Devin CLI:
.zip to your personal scope from Customize → Plugins and try it in a cloud session.
3. Host them in one repo
Put all of your org’s plugins in a single repo as subfolders (plugins/<name>/), each referenced with its own git-subdir source. The repo can stay private: cloud sessions fetch it through your Git integration, and CLI users fetch with their own git credentials (so they need repo access too).
Fork team-marketplace-template for this layout — and update its meta-plugin’s git-subdir URLs to point at your fork. In the template the meta-plugin lives at the repo root, so the repo itself is the installable unit: requiring your-org/your-marketplace installs the whole baseline.
4. Define your baseline with a meta-plugin
The meta-plugin pattern turns your whole ecosystem into one installable unit. It’s a plugin with little or no content of its own — its manifest does the work. Put it at the repo root so the repo itself is the meta-plugin:5. Distribute from Customize
An admin installs the marketplace repo from Customize → Plugins → Add plugin → From repository at the organization or enterprise scope — see the Plugins guide. That adds one entry to the scope’s managed manifest:- The enterprise manifest reaches every organization in the enterprise.
- An organization manifest reaches that organization’s cloud sessions, and the CLI/Desktop of members whose primary organization it is.
6. Govern
The three lists are the policy language, at every level (managed manifests, repo config, plugin manifests). Higher authority wins — enterprise/account over org over repo over user — and a lower level can never re-permit what a higher level forbids, nor forbid what it requires. To lock an account down to an approved set only:"*" forbid; nothing else is, and no lower level can widen the carve-out. The exemption covers only directly listed entries — a required plugin’s transitive dependencies aren’t exempt — so under a lockdown, list everything the meta-plugin pulls in (here engineering-baseline and security-guardrails) explicitly. See dependencies and governance for the full semantics.
7. Evolve
- Merging to your plugin repo’s default branch is the release: new sessions pick it up automatically — see how updates roll out.
- Teams add plugins by PR to the marketplace repo; the template’s CI validates the layout on every PR.
- Existing Claude plugins install as-is (Devin falls back to
.claude-plugin/plugin.json), so you can endorse community plugins inoptionalPluginswithout vendoring them.
Current limitations
- Plugins load in cloud sessions, the Devin CLI, and Devin Desktop (when using Devin Local); they do not apply to the classic Cascade agent.
- Subagents (
agents/<name>.mdoragents/<name>/AGENT.md) load in local Devin agents only (CLI and Devin Desktop), not in cloud sessions. - Hooks are currently best effort and fail open — a hook that fails to load or run doesn’t stop the session — so don’t rely on them for crucial guardrails yet. See the CLI hooks reference for local configuration.
- Governance fails open: if a managed manifest can’t be fetched at session start, that level’s plugins aren’t installed and its forbids aren’t enforced for that session.
- Plugin content from a private repo appears in Customize only for organizations whose Git integration can reach the repo; elsewhere it’s withheld until the repo is granted on Settings → Repositories.
Learn more
- Plugins guide — the web app side: Customize, scopes, indexing, MCPs
- CLI plugins reference — file format, authoring, per-user installs
- Skills — the
SKILL.mdprocedures plugins bundle

