From e0f8c1a2891717f0c5655ee58c292ecb08d81327 Mon Sep 17 00:00:00 2001 From: kingboung Date: Tue, 12 May 2026 20:45:33 +0800 Subject: [PATCH] fix: show (bundled) label for /review and /security-review commands Co-Authored-By: Claude Opus 4.7 --- src/commands.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/commands.ts b/src/commands.ts index 3ddf3e80b..f85cc5fd8 100644 --- a/src/commands.ts +++ b/src/commands.ts @@ -817,7 +817,11 @@ export function formatDescriptionWithSource(cmd: Command): string { return cmd.description } - if (cmd.source === 'bundled') { + if ( + cmd.source === 'bundled' || + cmd.name === 'review' || + cmd.name === 'security-review' + ) { return `${cmd.description} (bundled)` }