Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f8aa845
Add Review Sweep: one-click agentic review of unsettled work
t3dotgg Jul 24, 2026
8aad08d
Address bot review feedback on review sweep
t3dotgg Jul 24, 2026
dc66ff1
Add pre-run confirmation screen to review sweep
t3dotgg Jul 24, 2026
f8b9d79
Make pre-run summary reflect the capped selection exactly
t3dotgg Jul 24, 2026
f8e63b2
Key pre-run model rows by environment id, not label
t3dotgg Jul 24, 2026
3afe22d
Fail thread review loudly when workspace cwd is unresolvable
t3dotgg Jul 24, 2026
b806ba3
Merge remote-tracking branch 'origin/main' into t3code/sidebar-work-o…
t3dotgg Jul 24, 2026
c68e9fa
Address cursor round-3 review feedback
t3dotgg Jul 24, 2026
4faf0e9
Make sweep respect merged-PR auto-settle like the sidebar
t3dotgg Jul 24, 2026
f508f42
Redesign review sweep as a triage board
t3dotgg Jul 24, 2026
b763709
Sweep UI v3: grid, reveal-when-done, one-line next steps
t3dotgg Jul 24, 2026
ade8487
Constrain nextStep to a 10-word command with prompt examples
t3dotgg Jul 24, 2026
3e757bd
Background sweep, launch modal, PR investigation, and merge queue
t3dotgg Jul 24, 2026
57e2ffd
Merge remote-tracking branch 'origin/main' into t3code/sidebar-work-o…
t3dotgg Jul 27, 2026
c1b3390
Address review feedback and sync with main
t3dotgg Jul 27, 2026
bcd4dfa
Merge remote-tracking branch 'origin/main' into t3code/sidebar-work-o…
t3dotgg Jul 27, 2026
900a40e
Merge remote-tracking branch 'origin/main' into t3code/sidebar-work-o…
t3dotgg Jul 27, 2026
a8c3047
Review with the user's last-used model, pickable in the modal
t3dotgg Jul 27, 2026
8c9dbfc
Add traits picker to the review modal and stop wiping model options
t3dotgg Jul 27, 2026
f70a4e5
Show live per-thread progress, timing, and token usage while reviewing
t3dotgg Jul 27, 2026
1593b08
Persist sweep results across reloads
t3dotgg Jul 27, 2026
efa97f2
Raise sweep review concurrency from 3 to 5
t3dotgg Jul 27, 2026
ec34a6f
Restyle the sweep view to match the app's design language
t3dotgg Jul 27, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/server/src/environment/ServerEnvironment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ export const make = Effect.gen(function* () {
connectionProbe: true,
threadSettlement: true,
threadSnooze: true,
reviewSweep: true,
...(serverSelfUpdate === null ? {} : { serverSelfUpdate }),
},
};
Expand Down
1 change: 1 addition & 0 deletions apps/server/src/git/GitManager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ function createTextGeneration(
}),
),
),
generateThreadReview: () => Effect.die("generateThreadReview is not used by GitManager tests"),
};
}

Expand Down
Loading
Loading