Skip to content
This repository was archived by the owner on Mar 28, 2026. It is now read-only.

Commit 99d9c4d

Browse files
corvid-agentclaude
andcommitted
feat: align homepage with audience-first positioning
- Update hero: "Your own AI developer" + plain English CTA - Add "Who Is This For?" section with 4 audience paths (Creators, Developers, Businesses, Enterprise) - Add install one-liner above the fold - Expand stats: 8,119 tests, 157 specs, 43 MCP tools, repos, stars, 0 deps - Update version references to v0.38.0 - Add nav/footer links to docs, business guide, enterprise pages - Update meta tags and structured data for new positioning - Register audience-grid with staggered scroll reveal Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 54609df commit 99d9c4d

1 file changed

Lines changed: 134 additions & 21 deletions

File tree

index.html

Lines changed: 134 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
<meta property="og:image:height" content="640">
77
<meta charset="UTF-8">
88
<meta name="viewport" content="width=device-width, initial-scale=1.0">
9-
<title>corvid-agent | Autonomous AI Agent Infrastructure</title>
10-
<meta name="description" content="Open-source autonomous AI agent on Algorand. Builds full-stack web apps, native macOS apps, ships TypeScript packages, multi-agent councils, and encrypted messaging.">
9+
<title>corvid-agent | Your Own AI Developer</title>
10+
<meta name="description" content="Your own AI developer. Tell it what to build in plain English — it writes the code, runs the tests, and ships it. Open-source on Algorand.">
1111
<meta property="og:url" content="https://corvid-agent.github.io/">
1212
<meta property="og:type" content="website">
13-
<meta property="og:title" content="corvid-agent | Autonomous AI Agent Infrastructure">
14-
<meta property="og:description" content="Open-source autonomous AI agent on Algorand. Builds full-stack apps, ships TypeScript packages, encrypted messaging, and multi-agent orchestration.">
13+
<meta property="og:title" content="corvid-agent | Your Own AI Developer">
14+
<meta property="og:description" content="Your own AI developer. Tell it what to build in plain English — it writes the code, runs the tests, and ships it. Open-source on Algorand.">
1515
<meta name="twitter:card" content="summary">
16-
<meta name="twitter:title" content="corvid-agent | Autonomous AI Agent Infrastructure">
17-
<meta name="twitter:description" content="Open-source autonomous AI agent on Algorand. Builds full-stack apps, ships TypeScript packages, encrypted messaging, and multi-agent orchestration.">
16+
<meta name="twitter:title" content="corvid-agent | Your Own AI Developer">
17+
<meta name="twitter:description" content="Your own AI developer. Tell it what to build in plain English — it writes the code, runs the tests, and ships it. Open-source on Algorand.">
1818
<link rel="canonical" href="https://corvid-agent.github.io/">
1919
<link rel="preconnect" href="https://fonts.googleapis.com">
2020
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
@@ -440,7 +440,7 @@
440440
/* Stats */
441441
.stats {
442442
display: grid;
443-
grid-template-columns: repeat(4, 1fr);
443+
grid-template-columns: repeat(6, 1fr);
444444
gap: 1.5rem;
445445
margin-bottom: 4rem;
446446
}
@@ -473,6 +473,66 @@
473473
font-size: 0.9rem;
474474
}
475475

476+
/* Audience Chooser */
477+
.audience-grid {
478+
display: grid;
479+
grid-template-columns: repeat(4, 1fr);
480+
gap: 1.5rem;
481+
}
482+
483+
.audience-card {
484+
background: var(--bg-card);
485+
border: 1px solid var(--border);
486+
border-radius: 6px;
487+
padding: 2rem 1.5rem;
488+
text-align: center;
489+
text-decoration: none;
490+
color: inherit;
491+
transition: all 0.3s;
492+
position: relative;
493+
overflow: hidden;
494+
}
495+
496+
.audience-card::before {
497+
content: '';
498+
position: absolute;
499+
top: 0; left: 0; right: 0;
500+
height: 3px;
501+
opacity: 0;
502+
transition: opacity 0.3s;
503+
}
504+
505+
.audience-card:hover {
506+
transform: translateY(-4px);
507+
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
508+
}
509+
510+
.audience-card:hover::before { opacity: 1; }
511+
512+
.audience-card--cyan::before { background: var(--accent); }
513+
.audience-card--cyan:hover { border-color: rgba(0, 229, 255, 0.4); }
514+
515+
.audience-card--magenta::before { background: var(--accent-2); }
516+
.audience-card--magenta:hover { border-color: rgba(255, 102, 196, 0.4); }
517+
518+
.audience-card--green::before { background: var(--green); }
519+
.audience-card--green:hover { border-color: rgba(0, 255, 136, 0.4); }
520+
521+
.audience-card--orange::before { background: var(--orange); }
522+
.audience-card--orange:hover { border-color: rgba(255, 170, 0, 0.4); }
523+
524+
.audience-icon { font-size: 2.5rem; margin-bottom: 1rem; }
525+
.audience-title { font-size: 1.1rem; font-weight: 600; color: var(--text-bright); margin-bottom: 0.5rem; }
526+
.audience-desc { color: var(--text-dim); font-size: 0.9rem; line-height: 1.5; }
527+
528+
@media (max-width: 768px) {
529+
.audience-grid { grid-template-columns: repeat(2, 1fr); }
530+
}
531+
532+
@media (max-width: 480px) {
533+
.audience-grid { grid-template-columns: 1fr; }
534+
}
535+
476536
/* Packages Grid */
477537
.packages-grid {
478538
display: grid;
@@ -1024,13 +1084,13 @@
10241084
@media (max-width: 768px) {
10251085
.nav-links { display: none; }
10261086
.hamburger { display: flex; }
1027-
.stats { grid-template-columns: repeat(2, 1fr); }
1087+
.stats { grid-template-columns: repeat(3, 1fr); }
10281088
.code-section { grid-template-columns: 1fr; }
10291089
.packages-grid { grid-template-columns: 1fr; }
10301090
}
10311091

10321092
@media (max-width: 480px) {
1033-
.stats { grid-template-columns: 1fr 1fr; }
1093+
.stats { grid-template-columns: repeat(2, 1fr); }
10341094
.hero-actions { flex-direction: column; align-items: center; }
10351095
}
10361096
/* Accessibility (WCAG AA) */
@@ -1053,11 +1113,13 @@ <h1>corvid-agent</h1>
10531113
<span>corvid-agent</span>
10541114
</a>
10551115
<div class="nav-links">
1116+
<a href="#who-is-this-for">Who Is This For?</a>
10561117
<a href="#showcase">Showcase</a>
10571118
<a href="#mac-apps">Mac Apps</a>
10581119
<a href="#features">Features</a>
10591120
<a href="#ecosystem">Infrastructure</a>
10601121
<a href="#packages">Packages</a>
1122+
<a href="https://corvidlabs.github.io/corvid-agent/business-guide.html">Business Guide</a>
10611123
<a href="#run-your-own" class="nav-cta">Get Started</a>
10621124
<a href="https://github.com/CorvidLabs" class="nav-cta">GitHub</a>
10631125
</div>
@@ -1069,11 +1131,13 @@ <h1>corvid-agent</h1>
10691131
</nav>
10701132

10711133
<div class="mobile-nav" id="mobile-nav">
1134+
<a href="#who-is-this-for" class="mobile-nav-link">Who Is This For?</a>
10721135
<a href="#showcase" class="mobile-nav-link">Showcase</a>
10731136
<a href="#mac-apps" class="mobile-nav-link">Mac Apps</a>
10741137
<a href="#features" class="mobile-nav-link">Features</a>
10751138
<a href="#ecosystem" class="mobile-nav-link">Infrastructure</a>
10761139
<a href="#packages" class="mobile-nav-link">Packages</a>
1140+
<a href="https://corvidlabs.github.io/corvid-agent/business-guide.html" class="mobile-nav-link">Business Guide</a>
10771141
<a href="#run-your-own" class="nav-cta">Get Started</a>
10781142
<a href="https://github.com/CorvidLabs" class="nav-cta">GitHub</a>
10791143
</div>
@@ -1087,22 +1151,31 @@ <h1>corvid-agent</h1>
10871151
Agent Online
10881152
</div>
10891153
<h1>
1090-
Autonomous AI.<br>
1091-
<span class="gradient">On-Chain Identity.</span>
1154+
Your own <span class="gradient">AI developer.</span>
10921155
</h1>
10931156
<p>
1094-
corvid-agent is an open-source autonomous AI agent with a verifiable on-chain identity on Algorand. It builds full-stack applications, ships TypeScript packages, reviews its own code, and communicates via encrypted blockchain messages &mdash; all without human intervention.
1157+
Tell it what to build in plain English &mdash; it writes the code, runs the tests, and ships it. No coding required. Open-source with a verifiable on-chain identity on Algorand.
10951158
</p>
10961159
<div class="hero-actions">
10971160
<a href="#run-your-own" class="btn btn-primary">
1098-
Run Your Own Agent
1161+
Get Started Free
1162+
</a>
1163+
<a href="#who-is-this-for" class="btn btn-secondary">
1164+
Who Is This For?
10991165
</a>
11001166
<a href="https://github.com/CorvidLabs/corvid-agent" class="btn btn-secondary">
11011167
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="vertical-align: -2px; margin-right: 4px;"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z"/></svg>
11021168
View Source
11031169
</a>
11041170
</div>
11051171

1172+
<div style="margin-top: 2rem; animation: fadeInUp 0.6s ease-out 0.35s both;">
1173+
<div style="display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.6rem 1.2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; font-family: var(--mono); font-size: 0.875rem;">
1174+
<span style="color: var(--accent); user-select: none;">$</span>
1175+
<span style="color: var(--text-bright);">curl -fsSL https://raw.githubusercontent.com/CorvidLabs/corvid-agent/main/scripts/install.sh | bash</span>
1176+
</div>
1177+
</div>
1178+
11061179
<div class="hero-terminal">
11071180
<div class="terminal">
11081181
<div class="terminal-header">
@@ -1125,6 +1198,18 @@ <h1>
11251198
<div class="stat-value" id="stat-repos">--</div>
11261199
<div class="stat-label">Repositories</div>
11271200
</div>
1201+
<div class="stat">
1202+
<div class="stat-value">8,119</div>
1203+
<div class="stat-label">Tests Passing</div>
1204+
</div>
1205+
<div class="stat">
1206+
<div class="stat-value">157</div>
1207+
<div class="stat-label">Module Specs</div>
1208+
</div>
1209+
<div class="stat">
1210+
<div class="stat-value">43</div>
1211+
<div class="stat-label">MCP Tools</div>
1212+
</div>
11281213
<div class="stat">
11291214
<div class="stat-value" id="stat-stars">--</div>
11301215
<div class="stat-label">Stars</div>
@@ -1133,10 +1218,36 @@ <h1>
11331218
<div class="stat-value">0</div>
11341219
<div class="stat-label">Dependencies</div>
11351220
</div>
1136-
<div class="stat">
1137-
<div class="stat-value">100%</div>
1138-
<div class="stat-label">TypeScript</div>
1139-
</div>
1221+
</div>
1222+
</section>
1223+
1224+
<!-- Who Is This For? -->
1225+
<section id="who-is-this-for">
1226+
<div class="section-header reveal">
1227+
<h2>Who Is This For?</h2>
1228+
<p>Whether you're a creator with an idea or an enterprise scaling operations, corvid-agent meets you where you are.</p>
1229+
</div>
1230+
<div class="audience-grid">
1231+
<a href="https://corvidlabs.github.io/corvid-agent/getting-started.html#creators" class="audience-card audience-card--cyan reveal-stagger">
1232+
<div class="audience-icon">&#x1F3A8;</div>
1233+
<div class="audience-title">Creators</div>
1234+
<div class="audience-desc">Have an idea but don't code? Describe what you want in plain English and the agent builds it.</div>
1235+
</a>
1236+
<a href="https://corvidlabs.github.io/corvid-agent/getting-started.html#developers" class="audience-card audience-card--magenta reveal-stagger">
1237+
<div class="audience-icon">&#x1F4BB;</div>
1238+
<div class="audience-title">Developers</div>
1239+
<div class="audience-desc">Supercharge your workflow. The agent writes tests, reviews code, ships PRs, and handles boilerplate.</div>
1240+
</a>
1241+
<a href="https://corvidlabs.github.io/corvid-agent/business-guide.html" class="audience-card audience-card--green reveal-stagger">
1242+
<div class="audience-icon">&#x1F3E2;</div>
1243+
<div class="audience-title">Businesses</div>
1244+
<div class="audience-desc">Automate customer support, internal tools, and workflows. Deploy on your infrastructure.</div>
1245+
</a>
1246+
<a href="https://corvidlabs.github.io/corvid-agent/enterprise.html" class="audience-card audience-card--orange reveal-stagger">
1247+
<div class="audience-icon">&#x1F30D;</div>
1248+
<div class="audience-title">Enterprise</div>
1249+
<div class="audience-desc">Multi-agent orchestration, governance councils, audit trails, and on-chain identity verification.</div>
1250+
</a>
11401251
</div>
11411252
</section>
11421253

@@ -1601,7 +1712,7 @@ <h2>CLI</h2>
16011712
<span class="terminal-cmd">corvid-agent</span>
16021713
</div>
16031714
<div class="terminal-output" style="padding-left: 1.2rem;">
1604-
<span class="terminal-cmd" style="font-weight: bold;">corvid</span> v0.35.0 — agent: CorvidAgent <span style="color: var(--text-dim);">(claude-opus-4-6)</span>
1715+
<span class="terminal-cmd" style="font-weight: bold;">corvid</span> v0.38.0 — agent: CorvidAgent <span style="color: var(--text-dim);">(claude-opus-4-6)</span>
16051716
</div>
16061717
<div class="terminal-output" style="padding-left: 1.2rem;">
16071718
<span style="color: var(--text-dim);">project: corvid-agent (/Users/corvid-agent/corvid-agent)</span>
@@ -1656,6 +1767,8 @@ <h2>CLI</h2>
16561767
<div class="footer-links">
16571768
<a href="https://github.com/CorvidLabs/corvid-agent">Source</a>
16581769
<a href="https://github.com/CorvidLabs">GitHub</a>
1770+
<a href="https://corvidlabs.github.io/corvid-agent/">Docs</a>
1771+
<a href="https://corvidlabs.github.io/corvid-agent/business-guide.html">Business Guide</a>
16591772
<a href="https://corvid-agent.github.io/corvid-agent-chat/">Chat</a>
16601773
<a href="https://corvid-agent.github.io/agent-dashboard/">Dashboard</a>
16611774
<a href="https://corvid-agent.github.io/agent-profile/">Profile</a>
@@ -1703,7 +1816,7 @@ <h2>CLI</h2>
17031816
"https://github.com/corvid-agent",
17041817
"https://github.com/CorvidLabs"
17051818
],
1706-
"description": "Open-source autonomous AI agent on Algorand. Builds full-stack applications, ships TypeScript packages, encrypted messaging, and multi-agent orchestration."
1819+
"description": "Your own AI developer. Tell it what to build in plain English. Open-source on Algorand with 8,119 tests passing and 157 module specs."
17071820
}
17081821
</script>
17091822

@@ -1939,7 +2052,7 @@ <h2>CLI</h2>
19392052

19402053
// Staggered reveal for grid children
19412054
const staggerContainers = document.querySelectorAll(
1942-
'.packages-grid, .features-grid, .ecosystem-grid'
2055+
'.packages-grid, .features-grid, .ecosystem-grid, .audience-grid'
19432056
);
19442057

19452058
staggerContainers.forEach(function(container) {
@@ -1972,7 +2085,7 @@ <h2>CLI</h2>
19722085

19732086
const lines = [
19742087
{ type: 'command', text: 'corvid' },
1975-
{ type: 'output', text: 'corvid v0.35.0 \u2014 agent: CorvidAgent (claude-opus-4-6)' },
2088+
{ type: 'output', text: 'corvid v0.38.0 \u2014 agent: CorvidAgent (claude-opus-4-6)' },
19762089
{ type: 'output', text: 'project: corvid-agent (/Users/corvid-agent/corvid-agent)' },
19772090
{ type: 'blank' },
19782091
{ type: 'command', text: 'Harden the AlgoChat bridge reconnect logic' },

0 commit comments

Comments
 (0)