Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 9 additions & 3 deletions apps/web/src/components/app/docs-sections/agents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,15 @@ export function AgentsContent() {
<strong>Submit review</strong> button. Keep adding draft comments
across different files, then submit them all at once with an optional
summary. Each comment becomes a feedback item the agent can see via
its <Code>dispatch_review_list_feedback</Code> tool. The agent can
reply to individual items, resolve them, or ask clarifying questions —
all visible in the <strong>Reviews</strong> tab of the media sidebar.
its <Code>dispatch_review_list_feedback</Code> tool.
</P>
<P>
Feedback threads are interactive from both sides. The agent can reply,
resolve items as <strong>fixed</strong> or <strong>dismissed</strong>,
or ask clarifying questions via MCP tools. You can do the same from
the UI — reply to a thread, mark an item resolved, or reopen it —
either inline in the diff or from the <strong>Reviews</strong> tab of
the media sidebar.
</P>
</Section>

Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/app/docs-sections/tools.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export function ToolsContent() {
</li>
<li>
<Code>dispatch_review_resolve</Code> — resolve a review feedback
item as fixed, ignored, or wont_fix
item as fixed or dismissed
</li>
<li>
<Code>dispatch_review_add_message</Code> — reply to a review
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/lib/tips/tips.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export const tips: Tip[] = [
{
id: "diff-review",
title: "Diff Review",
body: "Select lines in the Changes tab and submit review comments. The agent can respond, resolve items, or ask questions in threaded conversations.",
body: "Select lines in the Changes tab and submit review comments. Both you and the agent can reply, resolve, or reopen items in threaded conversations.",
docsSection: "agents",
since: "0.27.0",
surfaces: ["ambient"],
Expand Down
Loading