Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 4 additions & 3 deletions app/(home)/_pages/page.en.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ export default function HomePage() {
<div className="flex flex-col [&_p]:mb-6 space-y-3">
<h1 className="text-3xl">Steel Documentation</h1>
<p>
Steel is an open-source browser API for AI agents and automation. Use these docs
to create cloud browser sessions, connect your automation tools, and configure
proxies, CAPTCHA solving, credentials, and files.
Steel is the open-source browser API for AI agents — managed cloud browsers with
stealth, residential proxies, CAPTCHA solving, persistent profiles, session
replays, and agent observability. Use these docs to create cloud browser sessions
and connect your automation tools.
</p>
</div>
</div>
Expand Down
3 changes: 2 additions & 1 deletion app/og/[...slug]/route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ export async function GET(_req: NextRequest, props: { params: Promise<{ slug: st

const title = page?.data.title ?? 'Steel Docs';
const description =
page?.data.description ?? 'Documentation for Steel: the open-source browser API for AI agents.';
page?.data.description ??
'Documentation for Steel: the open-source browser API for AI agents — cloud browsers with stealth, proxies, CAPTCHA solving, and observability.';
const section = slug?.[0] === 'en' ? slug?.[1] : slug?.[0];
const sectionLabel = section ? (SECTION_LABELS[section] ?? '') : '';
const accent = section ? (SECTION_ACCENTS[section] ?? '#a3a3a3') : '#a3a3a3';
Expand Down
2 changes: 1 addition & 1 deletion content/docs/overview/pricinglimits.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Pricing/Limits
description: Steel pricing for Launch, Scale, and Enterprise plans, including usage credits, metered rates, and plan limits.
description: "Steel pricing: start free with $30 in usage credits (about 300 browser hours). Browser hours from $0.08/hour, CAPTCHA solves from $1/1k, proxies from $6/GB across Launch, Scale, and Enterprise plans."
sidebarTitle: Pricing/Limits
llm: true
---
Expand Down
3 changes: 2 additions & 1 deletion lib/agent-instructions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

export const AGENT_INSTRUCTIONS = `# Steel Documentation

> Steel is a cloud browser API for AI agents and developers.
> Steel is the open-source browser API for AI agents — managed cloud browsers with stealth,
> residential proxies, CAPTCHA solving, persistent profiles, session replays, and agent observability.
> Use Steel to launch cloud browsers, scrape content, and automate web tasks.

## Quick Reference
Expand Down
2 changes: 1 addition & 1 deletion lib/structured-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const STEEL_ORGANIZATION_ID = `${DOCS_URL}/#organization`;
export const DOCS_WEBSITE_ID = `${DOCS_URL}/#website`;
export const DOCS_SITE_NAME = 'Steel Docs';
export const DOCS_SITE_DESCRIPTION =
"Documentation for Steel, an open-source browser API for AI agents and automation. Create cloud browser sessions with Steel's APIs, SDKs, and integrations.";
'Documentation for Steel, the open-source browser API for AI agents — managed cloud browsers with stealth, residential proxies, CAPTCHA solving, persistent profiles, session replays, and agent observability.';
export const STEEL_SAME_AS = ['https://github.com/steel-dev', 'https://x.com/steeldotdev'] as const;
export const STEEL_LOGO_URL = `${DOCS_URL}/images/logo.png`;

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/llm-endpoints.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ describe('.md suffix end-to-end', () => {
expect(body).toContain('<h1 class="text-3xl">Steel Documentation</h1>');
expect(animatedLogo).toContain('class="shrink-0"');
expect(body).toContain(
'Steel is an open-source browser API for AI agents and automation. Use these docs to create cloud browser sessions, connect your automation tools, and configure proxies, CAPTCHA solving, credentials, and files.',
'Steel is the open-source browser API for AI agents — managed cloud browsers with stealth, residential proxies, CAPTCHA solving, persistent profiles, session replays, and agent observability. Use these docs to create cloud browser sessions and connect your automation tools.',
);
expect(body).toContain(
'<section class="space-y-5" aria-labelledby="getting-started-and-apis">',
Expand Down
Loading