CtrlK
BlogDocsLog inGet started
Tessl Logo

creating-plugins

Create EmDash CMS plugins with sandboxed hooks, routes, storage, content and media APIs, MCP tools, and declarative admin UI, or native React and Astro extensions. Use when scaffolding or implementing an EmDash plugin.

The canonical home for this skill is creating-plugins in emdash-cms/emdash

SKILL.md
Quality
Evals
Security

Creating EmDash plugins

Build against the API that reaches the intended execution mode. Source types and production-boundary tests take precedence over examples in this skill when they disagree.

Choose a format

FormatRuntime sourceAdmin UIDistribution
Sandboxedsrc/plugin.ts default-exports a SandboxedPluginBlock Kit pages, widgets, saved-entry panels, and actionsPlugin CLI and registry
NativedefinePlugin() / createPlugin()React, Block Kit, and Astro componentsTrusted site dependency only

Use a sandboxed plugin unless the feature needs host-process access, React admin code, Astro rendering components, raw page fragments, or custom Portable Text block definitions. Native plugins run with the site's authority and cannot be installed from the registry.

Scaffold a sandboxed plugin

pnpm dlx @emdash-cms/plugin-cli init my-plugin
cd my-plugin
pnpm install
pnpm run test

The manifest is the identity and trust contract. Runtime hooks and routes live in src/plugin.ts; the CLI generates descriptors, manifests, and bundles. Do not create a separate descriptor factory or sandbox-entry.ts.

import type { SandboxedPlugin } from "emdash/plugin";

const plugin: SandboxedPlugin = {
	hooks: {
		"content:afterSave": async (event, ctx) => {
			ctx.log.info("Content saved", { id: event.content.id });
		},
	},
};

export default plugin;

Import authoring types from emdash/plugin with import type. Value imports are limited to lightweight helpers such as pluginRoute() and pluginResponse(), which the CLI bundles. Sandboxed runtime code can use Web APIs but not Node.js built-ins.

Declare access

Declare every host API in emdash-plugin.jsonc. Adding authority, exposing a route publicly, or adding MCP tools requires renewed administrator approval.

CapabilityGrants
schema:readPublic collection and field definitions
content:readContent identity, translations, and published public URLs
content:revisions:readRetained revision data; implies content read
content:writeCreate, update, delete, and translation creation; implies read
content:publishRevision-fenced publish, unpublish, schedule, and unschedule; implies read
content:restoreRevision-fenced reads and restoration of trashed content
hooks.content-policy:registerPre-publish, pre-schedule, and pre-unpublish policy hooks
taxonomies:readTaxonomy definitions, terms, and entry assignments
taxonomies:writeTerm creation and assignment deltas; implies read
redirects:readVersioned redirect inspection
redirects:writeVersioned redirect creation, update, and deletion; implies read
comments:readStored non-trashed comments and their personal data
comments:moderateExpected-status moderation; implies read
media:readReady-media metadata and authenticated asset URLs
media:bytes:readBounded media bytes and content hashes
media:metadata:writeAlt text, caption, and focal-point updates
media:writeUpload and delete; implies media read
network:requestctx.http.fetch() restricted to allowedHosts
network:request:unrestrictedctx.http.fetch() without a host list
users:readUser directory lookup; also required by comment hooks
email:sendEmail delivery when a transport is configured
hooks.email-transport:registerExclusive email:deliver hook
hooks.email-events:registerEmail before/after hooks
hooks.page-fragments:registerTrusted-only page fragments; excluded from sandbox registration

Settings, KV, declared storage, logging, and cron scheduling are plugin-scoped and need no capability. Use ctx.settings for user configuration, ctx.kv for internal key-value state, and declared ctx.storage.<collection> for queryable records.

Read the focused reference for the API being used:

  • Content, schema, translations, and publication
  • Taxonomies and redirects
  • Comments
  • Media
  • Storage, KV, and encrypted settings

Routes, HTTP, and MCP

Routes are private by default and require authentication, their declared RBAC permission, token scope or CSRF as appropriate. Public routes are internet-facing and require explicit install consent.

Undeclared routes keep the legacy JSON/query envelope. Declare methods and body modes for host-enforced parsing. Use pluginResponse() only on a route that declares a raw response. Outbound ctx.http.fetch() responses and declared route bodies are buffered and bounded.

MCP tools reference private JSON routes with explicit permissions and Zod input schemas. Mark difficult-to-reverse operations destructive: true. Read API routes and MCP tools.

Hooks

Sandboxed hooks enter the same priority, dependency, timeout, error-policy, enablement, exclusive-provider, and capability pipeline as trusted hooks. Publication policy hooks identify action origin and actor without granting publication authority. Comment moderation invoked through ctx.comments reports plugin origin and runs the normal after-hook once. Read Hooks.

Declarative admin UI

Sandboxed pages and widgets return validated Block Kit. Structured links use host-resolved targets; routeCtx.ui carries host-attested locale, direction, and surface. External images require matching network authority.

Saved-entry panels and actions point to private routes. They receive host-reloaded saved identity and version, never field values or unsaved editor state. Read saved content through capability-gated ctx.content.

Declarative field widgets currently compose supported Block Kit elements into a JSON value. Custom Portable Text blocks and Astro render components remain native-only. Read Admin UI, Block Kit, and Portable Text blocks.

Runner parity

Cloudflare Worker Loader and Node/workerd execute the same bundle behind a plugin-scoped bridge. Both return buffered WHATWG responses from ctx.http.fetch() with binary bytes preserved and decoded request/response bodies limited to 8 MiB. Write against exported types, not extra methods found in one wrapper.

Read Sandbox boundaries before designing around an API not listed here.

Test the production boundary

Use createPluginTestHost() for fast hook, route, manifest, capability, KV, settings, and storage transport tests. Use createPluginRuntimeTestHost() when the test must exercise real content actions, plugin activation, media, comments, redirects, scheduling, restart, authorization, CSRF, caching, Block Kit validation, or saved-entry extensions.

Runtime fixtures establish state without firing hooks. Runtime actions call production boundaries; inspectors read observable state. Queue outbound HTTP responses with host.http.respond() and inspect requests with host.http.requests(). Dispose every host after use. Add Node/workerd parity only for runner-sensitive behavior.

References

Repository
emdash-cms/emdash
Last updated
First committed

Canonical home

emdash-cms/emdash
In sync

since Jul 24, 2026

Also appears in

emdash-cms/emdash
In sync

since Sep 22, 2026

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.