From 2898153cf2fbecd583c0ce6fbe945a70ba797761 Mon Sep 17 00:00:00 2001 From: Nicholas Kissel Date: Tue, 25 Aug 2026 23:52:39 -0700 Subject: [PATCH] docs: improve SEO descriptions --- docs/content/docs/failure-and-recovery.mdx | 2 +- docs/content/docs/index.mdx | 2 +- docs/content/docs/patterns.mdx | 2 +- docs/content/docs/queues.mdx | 2 +- docs/content/docs/quickstart.mdx | 2 +- docs/content/docs/reference.mdx | 2 +- docs/content/docs/steps.mdx | 2 +- docs/content/docs/timers-and-concurrency.mdx | 2 +- docs/content/docs/versioning.mdx | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/content/docs/failure-and-recovery.mdx b/docs/content/docs/failure-and-recovery.mdx index d8084b7..bb70e7a 100644 --- a/docs/content/docs/failure-and-recovery.mdx +++ b/docs/content/docs/failure-and-recovery.mdx @@ -1,6 +1,6 @@ --- title: "Failure & Recovery" -description: "Error hooks, rollback, and compensating actions across actors." +description: "Handle workflow failures with error hooks, retries, rollback, compensating actions, and recovery patterns that preserve replay safety." --- ## Error hooks diff --git a/docs/content/docs/index.mdx b/docs/content/docs/index.mdx index 301a7ba..0043f00 100644 --- a/docs/content/docs/index.mdx +++ b/docs/content/docs/index.mdx @@ -1,6 +1,6 @@ --- title: "Introduction" -description: "Build durable, replayable run loops with steps, queue waits, timers, and rollback." +description: "Build durable, replayable workflows with steps, queue waits, timers, rollback, and recovery patterns that survive process restarts." skill: true --- diff --git a/docs/content/docs/patterns.mdx b/docs/content/docs/patterns.mdx index f410cfd..c7afd13 100644 --- a/docs/content/docs/patterns.mdx +++ b/docs/content/docs/patterns.mdx @@ -1,6 +1,6 @@ --- title: "Patterns" -description: "Common workflow shapes used in production systems." +description: "Apply production workflow patterns for progress tracking, queue-driven cron jobs, orchestration, and reliable multi-step operations." --- These are common workflow shapes used in production systems. diff --git a/docs/content/docs/queues.mdx b/docs/content/docs/queues.mdx index 670c075..e856292 100644 --- a/docs/content/docs/queues.mdx +++ b/docs/content/docs/queues.mdx @@ -1,6 +1,6 @@ --- title: "Queues & Messaging" -description: "Queue waits, request/response, drains, and signal-driven loops." +description: "Coordinate workflows with queue messages, request and response patterns, drains, signals, and durable loops that resume after restarts." --- ## Queue diff --git a/docs/content/docs/quickstart.mdx b/docs/content/docs/quickstart.mdx index 33dda97..10bcad1 100644 --- a/docs/content/docs/quickstart.mdx +++ b/docs/content/docs/quickstart.mdx @@ -1,6 +1,6 @@ --- title: "Quickstart" -description: "Getting started with simple workflows, loops, and setup and teardown." +description: "Create your first durable workflow, then add replay-safe steps, queue-driven loops, setup, teardown, and reliable error handling." skill: true --- diff --git a/docs/content/docs/reference.mdx b/docs/content/docs/reference.mdx index fd7bfd9..da36ec4 100644 --- a/docs/content/docs/reference.mdx +++ b/docs/content/docs/reference.mdx @@ -1,6 +1,6 @@ --- title: "Reference" -description: "Workflow history debugging and recommendations." +description: "Debug workflow history and follow practical recommendations for replay safety, state updates, timeouts, rollback, and long-running operations." --- ## Debugging diff --git a/docs/content/docs/steps.mdx b/docs/content/docs/steps.mdx index 7da5682..f516045 100644 --- a/docs/content/docs/steps.mdx +++ b/docs/content/docs/steps.mdx @@ -1,6 +1,6 @@ --- title: "Steps" -description: "Step boundaries, terminal failures as data, and checkpoint-friendly loops." +description: "Define replay-safe workflow steps, handle terminal failures as data, and structure loops with durable, checkpoint-friendly boundaries." --- ## Step-only access to actor APIs diff --git a/docs/content/docs/timers-and-concurrency.mdx b/docs/content/docs/timers-and-concurrency.mdx index dce9b0c..f095251 100644 --- a/docs/content/docs/timers-and-concurrency.mdx +++ b/docs/content/docs/timers-and-concurrency.mdx @@ -1,6 +1,6 @@ --- title: "Timers & Concurrency" -description: "Timers, timeouts, joins, races, and fan-out across actors." +description: "Build durable timers, timeouts, joins, races, and fan-out patterns for concurrent workflows that safely resume after interruptions." --- ## Timers diff --git a/docs/content/docs/versioning.mdx b/docs/content/docs/versioning.mdx index 77c24bd..14a1284 100644 --- a/docs/content/docs/versioning.mdx +++ b/docs/content/docs/versioning.mdx @@ -1,6 +1,6 @@ --- title: "Versioning & Migrations" -description: "Evolving a workflow that is already running." +description: "Evolve running workflows safely with version gates, migration patterns, replay compatibility, and deterministic changes across deployments." --- ## Versioned workflow evolution