feat(plugins): add memory slot plugin

This commit is contained in:
Peter Steinberger
2026-01-18 02:12:01 +00:00
parent 005b831023
commit 9fd9f4c896
15 changed files with 244 additions and 14 deletions

View File

@@ -19,6 +19,7 @@ import type {
PluginDiagnostic,
PluginLogger,
PluginOrigin,
PluginKind,
} from "./types.js";
export type PluginToolRegistration = {
@@ -65,6 +66,7 @@ export type PluginRecord = {
name: string;
version?: string;
description?: string;
kind?: PluginKind;
source: string;
origin: PluginOrigin;
workspaceDir?: string;