diff --git a/app/(home)/_pages/page.en.tsx b/app/(home)/_pages/page.en.tsx index 6f5d7ed9..9e6444b3 100644 --- a/app/(home)/_pages/page.en.tsx +++ b/app/(home)/_pages/page.en.tsx @@ -49,9 +49,10 @@ export default function HomePage() {

Steel Documentation

- 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.

diff --git a/app/og/[...slug]/route.tsx b/app/og/[...slug]/route.tsx index bf4b1ca2..e6d3c552 100644 --- a/app/og/[...slug]/route.tsx +++ b/app/og/[...slug]/route.tsx @@ -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'; diff --git a/content/docs/overview/pricinglimits.mdx b/content/docs/overview/pricinglimits.mdx index 59227217..69f6e164 100644 --- a/content/docs/overview/pricinglimits.mdx +++ b/content/docs/overview/pricinglimits.mdx @@ -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 --- diff --git a/lib/agent-instructions.ts b/lib/agent-instructions.ts index b0663ba7..c7081c38 100644 --- a/lib/agent-instructions.ts +++ b/lib/agent-instructions.ts @@ -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 diff --git a/lib/structured-data.ts b/lib/structured-data.ts index 955054a3..42cf8d44 100644 --- a/lib/structured-data.ts +++ b/lib/structured-data.ts @@ -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`; diff --git a/tests/e2e/llm-endpoints.test.ts b/tests/e2e/llm-endpoints.test.ts index 269780d0..53116401 100644 --- a/tests/e2e/llm-endpoints.test.ts +++ b/tests/e2e/llm-endpoints.test.ts @@ -327,7 +327,7 @@ describe('.md suffix end-to-end', () => { expect(body).toContain('

Steel Documentation

'); 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( '
',