We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31d1872 commit 685403dCopy full SHA for 685403d
1 file changed
src/commands/sync-git.ts
@@ -174,8 +174,13 @@ export async function syncGitSkills(opts: GitSyncOptions): Promise<void> {
174
})
175
}
176
177
- const names = selected.map(s => `\x1B[36m${s.name}\x1B[0m`).join(', ')
178
- p.log.success(`Installed ${names}`)
+ for (const skill of selected) {
+ const skillRel = relative(cwd, join(baseDir, skill.name))
179
+ const fileLines = ['SKILL.md', ...skill.files.map(f => f.path)]
180
+ .map(f => ` \x1B[90m└\x1B[0m ${f}`)
181
+ .join('\n')
182
+ p.log.success(`Installed \x1B[36m${skill.name}\x1B[0m \x1B[90m→ ${skillRel}\x1B[0m\n${fileLines}`)
183
+ }
184
185
186
/**
0 commit comments