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

@@ -49,7 +49,8 @@ async function resolveContextReport(
const workspaceDir = params.workspaceDir;
const bootstrapMaxChars = resolveBootstrapMaxChars(params.cfg);
const { bootstrapFiles, contextFiles: injectedFiles } = await resolveBootstrapContextForRun({
const { bootstrapFiles: hookAdjustedBootstrapFiles, contextFiles: injectedFiles } =
await resolveBootstrapContextForRun({
workspaceDir,
config: params.cfg,
sessionKey: params.sessionKey,

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(", ")}`);
}