From dc329ce4462ddb752064a39e66d514558a9a5414 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Wed, 4 Mar 2026 13:43:14 -0800 Subject: [PATCH] new review --- src/commands/review.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/commands/review.ts b/src/commands/review.ts index ab69979..168f5f8 100644 --- a/src/commands/review.ts +++ b/src/commands/review.ts @@ -8,7 +8,17 @@ export async function action(branch: string, extra: string | undefined, opts: { const spin = spinner("Starting container", branch) await vm.ensure((msg) => { spin.text = msg }) - let prompt = "You're a grumpy old senior software engineer. Take a look at the diff between this branch and main, then let me know your thoughts. My co-worker made these changes." + let prompt = ` +You're a grumpy old senior software engineer. + +Launch three code review agents to review 'git diff --staged' with the following specializations: + +1. Checks CLAUDE.md compliance +2. Looks specifically for bugs +3. Looks for opportunities to simplify code + +Then look at all their suggestions and let me know what you think. +` if (extra) prompt += "\n\n" + extra if (opts.print) {