Skip to content

Commit e622e42

Browse files
ProKilclaude
andcommitted
Improve SEO for agent teams and collaboration keywords
Add target keywords to help CooperBench rank for searches like "benchmarking agent teams", "agents as teammates", "human-AI collaboration", and "human-agent collaboration". Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 511259c commit e622e42

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

src/layouts/BaseLayout.astro

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import '../index.css';
44
interface Props {
55
title: string;
66
description?: string;
7+
keywords?: string;
78
bodyClass?: string;
89
activeNav?: string;
910
noindex?: boolean;
@@ -17,6 +18,7 @@ interface Props {
1718
const {
1819
title,
1920
description = '',
21+
keywords = '',
2022
bodyClass = 'bg-gray-50 text-gray-900 font-sans',
2123
activeNav = '',
2224
noindex = false,
@@ -43,6 +45,7 @@ const navItems = [
4345
<meta name="viewport" content="width=device-width, initial-scale=1" />
4446
<title>{title}</title>
4547
{description && <meta name="description" content={description} />}
48+
{keywords && <meta name="keywords" content={keywords} />}
4649
{noindex && <meta name="robots" content="noindex, nofollow" />}
4750
<link rel="icon" type="image/svg+xml" href="/static/images/favicon.svg?v=2" />
4851
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" />

src/pages/index.astro

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
import BaseLayout from "../layouts/BaseLayout.astro";
33
import { CoopChart } from "../components/CoopChart";
44
5-
const title = "CooperBench: Why Coding Agents Cannot be Your Teammates Yet";
5+
const title = "CooperBench: Benchmarking Agent Teams | Why Coding Agents Cannot be Your Teammates Yet";
66
const description =
7-
"CooperBench is a benchmark of over 600 collaborative coding tasks. We find that agents achieve 30% lower success rates when working together compared to performing both tasks individually.";
7+
"CooperBench is the first benchmark for evaluating AI agent teams, agents as teammates, and human-AI collaboration. Over 600 collaborative coding tasks reveal that agent teams achieve 30% lower success rates when working together compared to performing tasks individually.";
8+
const keywords = "benchmarking agent teams, benchmarking agents as teammates, AI agent cooperation, multi-agent benchmark, collaborative coding, agent collaboration, AI teammates, human-AI interaction, human-AI collaboration, human-agent collaboration";
89
---
910

10-
<BaseLayout title={title} description={description} activeNav="Home">
11+
<BaseLayout title={title} description={description} keywords={keywords} activeNav="Home">
1112
<style is:inline slot="head">
1213
:root {
1314
--background: 0 0% 100%;
@@ -82,7 +83,7 @@ const description =
8283
class="text-3xl md:text-4xl font-semibold text-gray-900 leading-tight mb-6"
8384
>
8485
CooperBench:<br />
85-
Benchmarking AI Agents' Cooperation
86+
Benchmarking Agent Teams & Cooperation
8687
</h1>
8788

8889
<p class="text-2xl text-gray-500 mb-8">
@@ -555,11 +556,12 @@ const description =
555556

556557
<div id="benchmark-content" class="mt-4">
557558
<p class="text-gray-600 leading-relaxed mb-6">
558-
CooperBench is the first benchmark designed to measure
559-
how well AI agents can cooperate when handling
560-
individual tasks with potential conflicts. We
561-
constructed 652 tasks from 12 popular open-source
562-
libraries across Python, TypeScript, Go, and Rust.
559+
CooperBench is the first benchmark for evaluating agent teams
560+
and measuring how well AI agents perform as teammates. Our work
561+
informs human-AI collaboration and human-agent collaboration by
562+
studying whether agents can cooperate when handling individual
563+
tasks with potential conflicts. The benchmark includes 652 tasks
564+
from 12 popular open-source libraries across Python, TypeScript, Go, and Rust.
563565
</p>
564566

565567
<div class="flex flex-wrap gap-6 text-center mb-6">

0 commit comments

Comments
 (0)