chore: show plugin hooks in plugins info

This commit is contained in:
Peter Steinberger
2026-01-18 06:14:05 +00:00
parent 8f7f7ee7dc
commit 32dd052260
2 changed files with 5 additions and 1 deletions

View File

@@ -163,6 +163,9 @@ export function registerPluginsCli(program: Command) {
if (plugin.toolNames.length > 0) {
lines.push(`Tools: ${plugin.toolNames.join(", ")}`);
}
if (plugin.hookNames.length > 0) {
lines.push(`Hooks: ${plugin.hookNames.join(", ")}`);
}
if (plugin.gatewayMethods.length > 0) {
lines.push(`Gateway methods: ${plugin.gatewayMethods.join(", ")}`);
}