diff --git a/src/cli/plugins-search-command.ts b/src/cli/plugins-search-command.ts index 3ea5f496a7b..2d71f11ed99 100644 --- a/src/cli/plugins-search-command.ts +++ b/src/cli/plugins-search-command.ts @@ -41,10 +41,10 @@ function formatPackageSearchLine(entry: ClawHubPackageSearchResult): string { const flags = [ pkg.family, pkg.channel, - pkg.isOfficial ? "official" : undefined, + pkg.isOfficial && pkg.channel !== "official" ? "official" : undefined, pkg.latestVersion ? `v${pkg.latestVersion}` : undefined, ].filter(Boolean); - const summary = pkg.summary ? ` ${theme.muted(pkg.summary)}` : ""; + const summary = pkg.summary ? theme.muted(` — ${pkg.summary}`) : ""; return `${pkg.name} ${theme.muted(flags.join(" | "))}${summary}\n ${theme.muted(`Install: openclaw plugins install clawhub:${pkg.name}`)}`; }