fix(pr471): address review feedback and stabilize test fixtures
This commit is contained in:
parent
5270cf5655
commit
ea9bead985
1 changed files with 8 additions and 0 deletions
|
|
@ -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"]) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue