This document describes how omp plugin npm/git/link operations mutate plugin state on disk and how installed npm/git/link plugins become runtime capabilities (tools and extensions today, hooks/commands path resolution available). Marketplace installs use separate marketplace registries and cache plumbing; see docs/marketplace.md.

Scope and architecture

There are two plugin-management implementations in the codebase:

  1. Active path used by CLI commands: PluginManager (src/extensibility/plugins/manager.ts)
  2. Legacy helper module: installer functions (src/extensibility/plugins/installer.ts)

omp plugin npm/git/link actions go through PluginManager; marketplace actions go through MarketplaceManager. install classifies each target (classifyInstallTarget in cli/classify-install-target.ts): name@marketplace routes to the marketplace manager, local paths route to PluginManager.link(), git and npm specs to PluginManager.install().

installer.ts still documents important safety checks and filesystem behavior, but it is not the path used by src/commands/plugin.ts + src/cli/plugin-cli.ts.

Lifecycle: from CLI invocation to runtime availability

graph TD
    subgraph CLI ["CLI Command Entry"]
        CMD["omp plugin <npm/link action> ..."] --> CLI_TS["src/commands/plugin.ts"]
        CLI_TS --> RUN_CMD["runPluginCommand(...)<br>in src/cli/plugin-cli.ts"]
    end

    subgraph PM ["Plugin Management & Mutation"]
        RUN_CMD --> PM_METHODS["PluginManager Methods<br>(install / list / uninstall / link / ...)"]
        PM_METHODS --> MUTATE_PLUGINS["Mutate Local Files:<br>~/.omp/plugins/{package.json, node_modules, omp-plugins.lock.json}"]
    end

    subgraph DISCOVERY ["Runtime Discovery Flow"]
        MUTATE_PLUGINS --> DISCOVER["runtime discovery:<br>discoverAndLoadCustomTools(...) &<br>discoverAndLoadExtensions(...)"]
        DISCOVER --> GET_PATHS["getAllPluginToolPaths(cwd) /<br>getAllPluginExtensionPaths(cwd)"]
        GET_PATHS --> LOADERS["Loaders Import Modules:<br>- Custom Tool Loader (tools)<br>- Extension Loader (extensions)"]
    end

    subgraph MP ["Marketplace Flow"]
        MP_CMD["omp plugin install name@marketplace<br>/ omp install name@marketplace"] --> MP_MGR["MarketplaceManager"]
        MP_MGR --> MUTATE_MP["Mutate Marketplace Files:<br>~/.omp/marketplaces.json<br>~/.omp/plugins/installed_plugins.json<br>Cache directories"]
        MUTATE_MP --> MP_CACHE["Installed marketplace plugin cache<br>surfaced as plugin roots/capabilities"]
        MP_CACHE --> DISCOVER
    end

    style CLI fill:#e1f5fe,stroke:#01579b,stroke-width:2px
    style PM fill:#efebe9,stroke:#4e342e,stroke-width:2px
    style DISCOVERY fill:#e8f5e9,stroke:#2e7d32,stroke-width:2px
    style MP fill:#fff3e0,stroke:#ef6c00,stroke-width:2px

Command entrypoints

  • src/commands/plugin.ts defines command/flags and forwards to runPluginCommand.
  • src/cli/plugin-cli.ts maps npm/link subcommands to PluginManager methods:
    • install, uninstall, list, link, doctor, features, config, enable, disable
  • discover, upgrade, and marketplace ... subcommands use MarketplaceManager.
  • No explicit npm-plugin update action exists; update is done by re-running install with a new package/version spec.

On-disk model

Global plugin state lives under ~/.omp/plugins:

  • package.json β€” dependency manifest used by bun install/bun uninstall for npm-installed plugins
  • node_modules/ β€” installed npm plugin packages or symlinks
  • omp-plugins.lock.json β€” runtime state for npm/link plugins:
    • enabled/disabled per plugin
    • selected feature set per plugin
    • persisted plugin settings

Project-local overrides live at:

  • <cwd>/.omp/plugin-overrides.json

Overrides are read-only from manager/loader perspective (no write path here) and can disable plugins or override features/settings for this project.

Marketplace registries live separately:

  • ~/.omp/marketplaces.json β€” configured marketplace catalogs
  • ~/.omp/plugins/installed_plugins.json β€” user-scoped marketplace installs
  • <cwd>/.omp/plugins/installed_plugins.json β€” project-scoped marketplace installs when available
  • ~/.omp/plugins/cache/{marketplaces,plugins}/ β€” cached catalogs and plugin directories

Plugin spec parsing and metadata interpretation

Install spec grammar

parsePluginSpec (parser.ts) supports:

  • pkg -> features: null (defaults behavior)
  • pkg[*] -> enable all manifest features
  • pkg[] -> enable no optional features
  • pkg[a,b] -> enable named features
  • @scope/pkg@1.2.3[feat] -> scoped + versioned package with explicit feature selection

PluginManager.install also accepts git sources (validated by validateGitSpec instead of the npm regex): namespaced shorthands github:user/repo[#ref], gitlab:, bitbucket:, codeberg:, sourcehut:/srht:, and full git URLs (https://github.com/user/repo, git@github.com:user/repo, ssh://…, git+https://…). Git specs do not encode the package name, so install diffs plugins/package.json#dependencies before/after bun install to resolve it.

extractPackageName strips version suffix for on-disk path lookup after install.

Manifest source and required fields

Manifest is resolved as:

  1. package.json.omp
  2. fallback package.json.pi
  3. fallback { version: package.version }

Implications:

  • There is no strict schema validation in manager/loader.
  • A package missing omp/pi is still installable and listable.
  • Runtime plugin loading (getEnabledPlugins) skips packages without omp/pi manifest.
  • manifest.version is always overwritten from package version.

Malformed package.json JSON is a hard failure at read time; malformed manifest shape may fail later only when specific fields are consumed.

Install/update flow (PluginManager.install)

  1. Parse feature bracket syntax from install spec.
  2. Validate the spec: git specs via validateGitSpec; npm specs against the package-name regex + shell-metacharacter denylist.
  3. Ensure plugin package.json exists (omp-plugins, private dependencies map).
  4. Run bun install <packageSpec> in ~/.omp/plugins.
  5. Resolve the installed package name (npm: strip version via extractPackageName; git: diff dependencies before/after) and read node_modules/<name>/package.json.
  6. Resolve manifest and compute enabledFeatures:
    • [*]: all declared features (or null if no feature map)
    • [a,b]: validates each feature exists in manifest features map
    • []: empty feature list
    • bare spec: null (use defaults policy later in loader)
  7. Validate declared extension entries (#validateInstalledExtensions): each manifest extensions entry must resolve on disk and import to a factory function. On failure, roll back the install β€” restore the previous plugins/package.json, remove the freshly installed package, and restore any prior version from a backup taken before bun install β€” then abort.
  8. Upsert lockfile runtime state: { version, enabledFeatures, enabled: true }.

Update semantics

Because update is install-driven:

  • omp plugin install pkg@newVersion updates dependency and lockfile version.
  • Existing settings are preserved; state entry is overwritten for version/features/enabled.
  • No separate β€œcheck updates” or transactional migration logic exists.

Remove flow (PluginManager.uninstall)

  1. Validate package name.
  2. Run bun uninstall <name> in plugin dir.
  3. Remove plugin runtime state from lockfile:
    • config.plugins[name]
    • config.settings[name]

If uninstall command fails, runtime state is not changed.

List flow (PluginManager.list)

  1. Read plugin dependency map from ~/.omp/plugins/package.json.
  2. Load lockfile runtime config (missing file -> empty defaults).
  3. Load project overrides (<cwd>/.omp/plugin-overrides.json, parse/read errors -> empty object with warning).
  4. For each dependency with a resolvable package.json:
    • build InstalledPlugin record
    • merge feature/enable state:
      • base from lockfile (or defaults)
      • project overrides can replace feature selection
      • project disabled list masks plugin as disabled

This is the effective state used by CLI status output and settings/features operations.

link supports local plugin development by symlinking a local package into ~/.omp/plugins/node_modules/<pkg.name>.

Behavior:

  1. Resolve localPath against manager cwd.
  2. Require local package.json and name field.
  3. Ensure plugin dirs exist.
  4. For scoped names, create scope directory.
  5. Remove existing path at target link location.
  6. Create symlink.
  7. Add runtime lockfile entry enabled with default features (null).

Caveat: current PluginManager.link does not enforce the cwd path-boundary check present in legacy installer.ts (normalizedPath.startsWith(normalizedCwd)), so trust is the caller’s responsibility.

Runtime loading: from installed plugin to callable capabilities

Discovery gate

getEnabledPlugins(cwd) (plugins/loader.ts) reads:

  • plugin dependency manifest (package.json), unioned with lockfile plugin entries so plugin link-only plugins without a dependency entry are still discovered
  • lockfile runtime state
  • project overrides via getConfigDirPaths("plugin-overrides.json", { user: false, cwd })

Filtering:

  • skip if no plugin package.json
  • skip if manifest (omp/pi) absent
  • skip if globally disabled in lockfile
  • skip if project-disabled

Capability path resolution

For each enabled plugin:

  • resolvePluginExtensionPaths(plugin)
  • resolvePluginToolPaths(plugin)
  • resolvePluginHookPaths(plugin)
  • resolvePluginCommandPaths(plugin)

Each resolver includes base entries plus feature entries:

  • base entries are always included
  • explicit feature list -> only selected features
  • enabledFeatures === null -> enable features marked default: true

Manifest entries may point to a file or to a directory containing index.ts, index.js, index.mjs, or index.cjs. Missing files are silently skipped (statSync/existsSync guard).

Current runtime wiring differences

  • Tools are wired into runtime today via discoverAndLoadCustomTools (custom-tools/loader.ts), which calls getAllPluginToolPaths(cwd).
  • Extensions are wired into runtime today via discoverAndLoadExtensions (extensions/loader.ts), which calls getAllPluginExtensionPaths(cwd).
  • Paths are de-duplicated by resolved absolute path in custom tool and extension discovery (seen set, first path wins).
  • Hooks/commands resolvers exist and are exported, but this code path does not currently wire them into a runtime registry in the same way tools and extensions are wired.

Lock/state management details

PluginManager caches runtime config in memory per instance (#runtimeConfig) and lazily loads once.

Load behavior:

  • lockfile missing -> { plugins: {}, settings: {} }
  • lockfile read/parse failure -> warning + same empty defaults

Save behavior:

  • writes full lockfile JSON pretty-printed each mutation

No cross-process locking or merge strategy exists; concurrent writers can overwrite each other.

Safety checks and trust boundaries

Input/package validation

Active manager path enforces package-name validation:

  • npm specs: a package-name regex (VALID_PACKAGE_NAME) for scoped/unscoped specs, optionally with version.
  • npm shell-metacharacter denylist: ;, &, |, backtick, $, (, ), {, }, [, ], <, >, \ β€” applied after parsePluginSpec strips the feature brackets, so a normal pkg[feat] spec never reaches it.
  • git specs: validateGitSpec rejects only the shared SHELL_METACHARS set (;, &, |, backtick, $, (, ), {, }, <, >, \, newline, CR, tab) instead of the npm regex, so :, /, #, +, ., -, _, ~, @ are permitted.

This limits command-injection risk when invoking bun install/uninstall.

Filesystem trust boundary

  • Plugin code executes in-process when custom tool modules are imported; no sandboxing.
  • Manifest relative paths are joined against plugin package directory and only existence-checked.
  • The plugin package itself is trusted code once installed.

Legacy installer-only checks

installer.ts includes additional link-time checks not mirrored in PluginManager.link:

  • local path must resolve inside project cwd
  • extra package name/path traversal guards for symlink target naming

Because CLI uses PluginManager, these stricter link guards are not currently on the main path.

Failure, partial success, and rollback behavior

The plugin manager is not transactional.

Operation stageFailure behaviorRollback
bun install failsinstall aborts with stderrN/A (no state writes yet)
Install succeeds, then feature validation failscommand failsNo uninstall rollback; dependency may remain in node_modules/package.json
Install succeeds, then extension validation failscommand failsRolls back: restores package.json, removes installed package, restores prior version from backup
Install succeeds, then lockfile write failscommand failsNo rollback of installed package
bun uninstall succeeds, lockfile write failscommand failsPackage removed, stale runtime state may remain
link removes old target then symlink creation failscommand failsNo restoration of previous link/dir

Operationally, doctor --fix can repair some drift (bun install, orphaned config cleanup, invalid-feature cleanup), but it is best-effort.

Malformed/missing manifest behavior summary

  • Missing omp/pi field:
    • install/list: tolerated (minimal manifest)
    • runtime enabled-plugin discovery: skipped as non-plugin
  • Missing feature referenced by install spec or features --set/--enable: hard error with available feature list
  • Invalid plugin-overrides.json: ignored with fallback to {} in both manager and loader paths
  • Missing tool/hook/command file paths referenced by manifest: silently ignored during resolver expansion; flagged as errors only by doctor

Mode differences and precedence

  • --dry-run (install): returns a synthetic install result with no bun install, no network, and no lockfile/runtime-state writes (it still ensures the plugins package.json skeleton exists).
  • --json: output formatting only, no behavior change.
  • Project overrides always take precedence over global lockfile for feature/settings view.
  • Effective enablement is runtimeEnabled && !projectDisabled.

Implementation files