fix(pr471): address review feedback and stabilize test fixtures

This commit is contained in:
Jamie McGregor Nelson 2026-03-15 20:01:57 -04:00
parent 5270cf5655
commit ea9bead985

View file

@ -74,6 +74,14 @@ export function formatDiscoveryForTool(result: DiscoveryResult): string {
}
}
if (byType["claude-skill"]?.length) {
lines.push(` Claude Skills (${byType["claude-skill"].length}):`);
for (const item of byType["claude-skill"]) {
if (item.type !== "claude-skill") continue;
lines.push(` - ${item.name} (${item.source.level}) ${item.path}`);
}
}
if (byType["claude-plugin"]?.length) {
lines.push(` Claude Plugins (${byType["claude-plugin"].length}):`);
for (const item of byType["claude-plugin"]) {