-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
85 lines (84 loc) · 3.49 KB
/
Copy pathblog.html
File metadata and controls
85 lines (84 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="CocoaBench Blog — updates, releases, and research notes from the CocoaBench team.">
<link rel="canonical" href="https://cocoabench.github.io/blog.html">
<title>CocoaBench | Blog</title>
<meta property="og:title" content="CocoaBench Blog">
<meta property="og:description" content="Updates, releases, and research notes from the CocoaBench team.">
<meta property="og:url" content="https://cocoabench.github.io/blog.html">
<meta property="og:site_name" content="CocoaBench">
<meta property="og:type" content="website">
<link rel="stylesheet" href="./assets/css/style.css">
<style>
.blog-list {
margin-top: 32px;
}
.blog-entry {
display: block;
padding: 24px 0;
border-bottom: 1px solid #eee;
text-decoration: none;
color: inherit;
}
.blog-entry:first-child {
border-top: 1px solid #eee;
}
.blog-entry-date {
font-size: 13px;
color: #999;
margin-bottom: 6px;
}
.blog-entry-title {
font-size: 20px;
font-weight: 600;
color: #1a1a1a;
margin-bottom: 8px;
line-height: 1.3;
}
.blog-entry-desc {
font-size: 15px;
color: #666;
line-height: 1.6;
}
@media (hover: hover) and (pointer: fine) {
.blog-entry:hover .blog-entry-title {
text-decoration: underline;
text-underline-offset: 3px;
}
}
</style>
</head>
<body>
<header>
<a href="index.html" class="logo"></a>
<nav>
<a href="index.html">Introduction</a>
<a href="blog.html" class="active">Blog</a>
</nav>
</header>
<div class="container">
<h1>Blog</h1>
<p class="subtitle">Updates and research notes from the CocoaBench team.</p>
<div class="blog-list">
<a href="blog-v1-release.html" class="blog-entry">
<div class="blog-entry-date">April 7, 2026</div>
<div class="blog-entry-title">CocoaBench v1.0</div>
<div class="blog-entry-desc">We release CocoaBench v1.0 — 153 human-authored tasks evaluating unified digital agents across vision, search, and coding — alongside the Cocoa-Agent scaffold and a full results analysis.</div>
</a>
<a href="blog-towards-general-agent.html" class="blog-entry">
<div class="blog-entry-date">December 2, 2025</div>
<div class="blog-entry-title">Towards General Agent with Compositional Cognitive Abilities</div>
<div class="blog-entry-desc">Why existing benchmarks fall short for general agents, and how CocoaBench addresses the gap by focusing on the cognitive abilities — perception, reasoning, and memory — that matter across domains.</div>
</a>
</div>
</div>
<footer class="site-footer">
<p>Built by the CocoaBench Team</p>
<p class="footer-credits">Design inspired by <a href="https://thinkingmachines.ai/" target="_blank" rel="noopener">Thinking Machines</a> and <a href="https://openai.com/" target="_blank" rel="noopener">OpenAI</a></p>
</footer>
<script src="./assets/js/logo.js"></script>
</body>
</html>