This repository was archived by the owner on May 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathcontent-b.ts
More file actions
93 lines (90 loc) · 3.37 KB
/
Copy pathcontent-b.ts
File metadata and controls
93 lines (90 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import { type AgentPageContent } from "@/app/shared/agent-page-content"
// Workaround for next/image choking on these for some reason
import hero from "../../../public/heroes/agent-reviewer.png"
// Re-export for convenience
export type { AgentPageContent }
export const content: AgentPageContent = {
agentName: "PR Reviewer",
hero: {
icon: "GitPullRequest",
heading: "Code reviews that catch what other AI tools (and most humans) miss.",
paragraphs: [
"Run-of-the-mill, token-saving AI code review tools will surely catch syntax errors and style issues, but they'll usually miss the bugs that actually matter: logic flaws, security vulnerabilities, and misunderstood requirements.",
"Roo Code's PR Reviewer uses advanced reasoning models and full repository context to find the issues that slip through—before they reach production.",
],
image: {
url: hero.src,
width: 800,
height: 474,
alt: "Example of a code review generated by Roo Code PR Reviewer",
},
crossAgentLink: {
text: "Works great with",
links: [
{
text: "PR Fixer Agent",
href: "/pr-fixer",
icon: "Wrench",
},
],
},
cta: {
buttonText: "Try now for free",
disclaimer: "",
tracking: "&agent=reviewer",
},
},
howItWorks: {
heading: "How It Works",
steps: [
{
title: "1. Connect Your Repository",
description:
"Link your GitHub repository and configure which branches and pull requests should be reviewed.",
icon: "GitPullRequest",
},
{
title: "2. Add Your API Key",
description:
"Provide your AI provider API key and set your review preferences, custom rules, and quality standards.",
icon: "Key",
},
{
title: "3. Get Review Comments",
description:
"Every pull request gets detailed GitHub comments in minutes from a Roo Code agent highlighting issues and suggesting improvements.",
icon: "MessageSquareCode",
},
],
},
whyBetter: {
heading: "Why Roo's PR Reviewer is different",
features: [
{
title: "Bring your own key, get uncompromised reviews",
paragraphs: [
"Most AI review tools use fixed pricing, which means they skimp on tokens to protect their margins. That leads to shallow analysis and missed issues.",
"With Roo, you bring your own API key. We optimize prompts for depth, not cost-cutting, so reviews focus on real problems like business logic, security vulnerabilities, and architectural issues.",
],
icon: "Blocks",
},
{
title: "Advanced reasoning that understands what matters",
description:
"We leverage state-of-the-art reasoning models with sophisticated workflows: diff analysis, context gathering, impact mapping, and contract validation. This catches the subtle bugs that surface-level tools miss—misunderstood requirements, edge cases, and integration risks.",
icon: "ListChecks",
},
{
title: "Repository-aware, not snippet-aware",
description:
"Roo analyzes your entire codebase context—dependency graphs, code ownership, team conventions, and historical patterns. It understands how changes interact with existing systems, not just whether individual lines look correct.",
icon: "BookMarked",
},
],
},
cta: {
heading: "Ready for better code reviews?",
description: "Start finding the issues that matter with AI-powered reviews built for depth, not cost-cutting.",
buttonText: "Try now for free",
},
}