Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
f458e5e
feat(web): add llms.txt and llms-full.txt for Answer Engine Optimization
roomote Feb 10, 2026
417abeb
Update apps/web-roo-code/public/llms-full.txt
mp-roocode Feb 10, 2026
5a57ccf
feat(web-evals): add AI Engineer Talent Marketplace (Sprint 1)
mp-roocode Feb 12, 2026
baf0d5c
feat(web-evals): redesign comparison page with glass-morphism and rol…
mp-roocode Feb 12, 2026
336a672
fix(web-evals): improve comparison chart bar spacing and height
mp-roocode Feb 12, 2026
bf55aa0
feat(web-evals): add scatter plot charts (value map + capability time…
mp-roocode Feb 12, 2026
6c849fb
refactor(web-evals): generalize methodology roles section for scalabi…
mp-roocode Feb 12, 2026
514dadf
fix(web-evals): pluralize team members text and increase card row gap
mp-roocode Feb 12, 2026
3a6eaf8
style(web-evals): remove tilde prefix from dollar amounts
mp-roocode Feb 12, 2026
310b10c
feat: eval-evolution work in progress - recommendations and workers UI
mp-roocode Feb 12, 2026
d91c035
Make workers outcomes-first canonical; redirect v2; refresh methodology
mp-roocode Feb 13, 2026
b3fb878
Fix workers-v2 redirect util imports
mp-roocode Feb 13, 2026
8cf93a7
fix(web-evals): lift Fraunces/IBM Plex Sans font setup to shared eval…
roomote Feb 13, 2026
132f7af
Merge remote-tracking branch 'origin/main' into feat/eval-recommendat…
roomote Feb 13, 2026
1d03382
Refine evals objective selection and recommendation URL defaults
mp-roocode Feb 13, 2026
268b183
Add objective deep-dive pages under eval recommendations
mp-roocode Feb 13, 2026
e699db2
fix: add visual feedback to copyPrompt in objective-content.tsx
roomote Feb 13, 2026
8ba3bd4
fix(web-evals): remove redundant font imports and add copyPrompt feed…
roomote Feb 13, 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
354 changes: 354 additions & 0 deletions apps/web-roo-code/public/llms-full.txt

Large diffs are not rendered by default.

41 changes: 41 additions & 0 deletions apps/web-roo-code/public/llms.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Roo Code

> Roo Code is an AI-powered software development platform with two core products: a free, open-source VS Code extension for interactive AI-assisted coding, and Roo Code Cloud for autonomous AI agents that work in the background.

Roo Code is built by Roo Code, Inc. The VS Code extension is the #1 most-installed open-source AI coding extension on the VS Code Marketplace. Roo Code Cloud extends this with autonomous agents that can be triggered from the web, Slack, Linear, or GitHub.

## Core Products

- [Roo Code VS Code Extension](https://roocode.com/extension): Free, open-source AI coding assistant. Model-agnostic, supports multi-file editing, custom modes, agentic command execution, and permission-based control. Works with OpenAI, Anthropic, Google Gemini, local LLMs, and dozens more.
- [Roo Code Cloud](https://roocode.com/cloud): Autonomous AI agents -- Planner, Coder, Explainer, PR Reviewer, PR Fixer -- that run 24/7 in isolated cloud containers, triggered from the web UI, Slack, Linear, or GitHub.
- [Roo Code Enterprise](https://roocode.com/enterprise): Enterprise control-plane with centralized management, SAML/SCIM, usage analytics, cost controls, model allow-lists, and audit trails.

## Integrations

- [Roo Code for Slack](https://roocode.com/slack): Mention @Roomote in any Slack channel to plan, explain, or build features without leaving the conversation.
- [Roo Code for Linear](https://roocode.com/linear): Assign issues to @Roo Code directly from Linear and get PRs back.
- [PR Reviewer](https://roocode.com/reviewer): AI-powered code reviews using advanced reasoning and full repository context. Bring your own API key.
- [PR Fixer](https://roocode.com/pr-fixer): Automatically apply fixes to PRs based on review comments. Comment-history aware.

## Key Differentiators

- Open source and fully auditable
- Model-agnostic: works with any LLM provider, no lock-in
- Custom modes: Architect, Code, Ask, Debug, Test, Orchestrator, and user-created modes
- Permission-based: you approve every file change and command execution
- SOC 2 Type II compliant
- Bring your own API key: no markup on inference costs

## Resources

- [Documentation](https://docs.roocode.com)
- [Pricing](https://roocode.com/pricing)
- [Evals and Benchmarks](https://roocode.com/evals)
- [GitHub Repository](https://github.com/RooCodeInc/Roo-Code)
- [Blog](https://blog.roocode.com)
- [Discord Community](https://discord.gg/roocode)
- [Trust Center](https://trust.roocode.com)

## Optional

- [llms-full.txt](https://roocode.com/llms-full.txt): Comprehensive product information for detailed context
8 changes: 8 additions & 0 deletions apps/web-roo-code/src/app/evals/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { Fraunces, IBM_Plex_Sans } from "next/font/google"

const display = Fraunces({ subsets: ["latin"], variable: "--font-display" })
const body = IBM_Plex_Sans({ subsets: ["latin"], weight: ["400", "500", "600"], variable: "--font-body" })

export default function EvalsLayout({ children }: { children: React.ReactNode }) {
return <div className={`${body.variable} ${display.variable} [font-family:var(--font-body)]`}>{children}</div>
}
Loading
Loading