Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 2.29 KB

File metadata and controls

40 lines (32 loc) · 2.29 KB

The extensions family contains the runtime that loads MdWrk extensions and the first-party bundled packages that register views, actions, and services.

Why

Extension ecosystems need clear boundaries between contracts, runtime, and concrete packages. This family README points readers to the right layer immediately.

What

  • @mdwrk/extension-runtime for loading, compatibility, activation, storage, and catalog workflows.
  • First-party bundled packages for workspace files, Git operations, extension management, Gemini workflows, theme authoring, language packs, and catalog validation.

Installation

Node.js 20.x through 22.x, matching the workspace engine contract in the root package manifest.

npm install @mdwrk/extension-runtime @mdwrk/extension-manager @mdwrk/extension-workspace-files

Usage

Use the runtime when you are building or hosting extensions. Use the individual package READMEs when you need a specific bundled capability.

Related