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)` }