Files
openclaw/src/cli/plugins-list-command.ts
2026-05-30 13:00:31 +02:00

153 lines
4.8 KiB
TypeScript

import { getRuntimeConfig } from "../config/config.js";
import type { PluginLogger } from "../plugins/types.js";
import { defaultRuntime, writeRuntimeJson, type RuntimeEnv } from "../runtime.js";
export type PluginsListOptions = {
json?: boolean;
enabled?: boolean;
verbose?: boolean;
};
const quietPluginJsonLogger: PluginLogger = {
debug: () => undefined,
info: () => undefined,
warn: () => undefined,
error: () => undefined,
};
async function loadHumanListModules() {
const [sourceDisplay, table, themeModule, commandFormat, listFormat] = await Promise.all([
import("../plugins/source-display.js"),
import("../../packages/terminal-core/src/table.js"),
import("../../packages/terminal-core/src/theme.js"),
import("./command-format.js"),
import("./plugins-list-format.js"),
]);
return {
formatPluginLine: listFormat.formatPluginLine,
formatPluginSourceForTable: sourceDisplay.formatPluginSourceForTable,
formatCliCommand: commandFormat.formatCliCommand,
getTerminalTableWidth: table.getTerminalTableWidth,
renderTable: table.renderTable,
resolvePluginSourceRoots: sourceDisplay.resolvePluginSourceRoots,
theme: themeModule.theme,
};
}
export async function runPluginsListCommand(
opts: PluginsListOptions,
runtime: RuntimeEnv = defaultRuntime,
): Promise<void> {
const { buildPluginRegistrySnapshotReport } = await import("../plugins/status-snapshot.js");
const cfg = getRuntimeConfig();
const report = buildPluginRegistrySnapshotReport({
config: cfg,
...(opts.json ? { logger: quietPluginJsonLogger } : {}),
});
const list = opts.enabled ? report.plugins.filter((p) => p.enabled) : report.plugins;
if (opts.json) {
const payload = {
workspaceDir: report.workspaceDir,
registry: {
source: report.registrySource,
diagnostics: report.registryDiagnostics,
},
plugins: list,
diagnostics: report.diagnostics,
};
writeRuntimeJson(runtime, payload);
return;
}
const {
formatCliCommand,
formatPluginLine,
formatPluginSourceForTable,
getTerminalTableWidth,
renderTable,
resolvePluginSourceRoots,
theme,
} = await loadHumanListModules();
if (list.length === 0) {
runtime.log(
theme.muted(
`No plugins found. Run ${formatCliCommand("openclaw plugins install <plugin>")} to add one, or ${formatCliCommand("openclaw plugins list --json")} to inspect raw discovery state.`,
),
);
return;
}
const enabled = list.filter((p) => p.enabled).length;
runtime.log(`${theme.heading("Plugins")} ${theme.muted(`(${enabled}/${list.length} enabled)`)}`);
if (!opts.verbose) {
const tableWidth = getTerminalTableWidth();
const sourceRoots = resolvePluginSourceRoots({
workspaceDir: report.workspaceDir,
});
const usedRoots = new Set<keyof typeof sourceRoots>();
const rows = list.map((plugin) => {
const desc = plugin.description ? theme.muted(plugin.description) : "";
const formattedSource = formatPluginSourceForTable(plugin, sourceRoots);
if (formattedSource.rootKey) {
usedRoots.add(formattedSource.rootKey);
}
const sourceLine = desc ? `${formattedSource.value}\n${desc}` : formattedSource.value;
return {
Name: plugin.name || plugin.id,
ID: plugin.name && plugin.name !== plugin.id ? plugin.id : "",
Format: plugin.format ?? "openclaw",
Status:
plugin.status === "error"
? theme.error("error")
: plugin.enabled
? theme.success("enabled")
: theme.warn("disabled"),
Source: sourceLine,
Version: plugin.version ?? "",
};
});
if (usedRoots.size > 0) {
runtime.log(theme.muted("Source roots:"));
for (const key of ["stock", "workspace", "global"] as const) {
if (!usedRoots.has(key)) {
continue;
}
const dir = sourceRoots[key];
if (!dir) {
continue;
}
runtime.log(` ${theme.command(`${key}:`)} ${theme.muted(dir)}`);
}
runtime.log("");
}
runtime.log(
renderTable({
width: tableWidth,
columns: [
{ key: "Name", header: "Name", minWidth: 14, flex: true },
{ key: "ID", header: "ID", minWidth: 10, flex: true },
{ key: "Format", header: "Format", minWidth: 9 },
{ key: "Status", header: "Status", minWidth: 10 },
{ key: "Source", header: "Source", minWidth: 26, flex: true },
{ key: "Version", header: "Version", minWidth: 8 },
],
rows,
}).trimEnd(),
);
return;
}
const lines: string[] = [];
for (const plugin of list) {
lines.push(formatPluginLine(plugin, true));
lines.push("");
}
runtime.log(lines.join("\n").trim());
}