Workers

Workers overview

Every backend worker that runs alongside the app's containerized cloud runtime: what it does, what fires it, what state it touches. Roughly 25 deployed workers in the fleet, split across six functional categories.

Updated today

The worker map

Every deployed worker, one row each.

WorkerTriggersWorkflow / DOPrimary purpose
ultron-shellfetch, queueUltronShell DO, RunGoalWorkflowFronts an isolated per-conversation sandbox on managed Kubernetes, running the agent CLI. Snapshot + restore keep sessions durable.
ultron-agent-runtimefetch, cron (1 min)AgentInstance DOPer-agent state and inference loop. Backs the agent builder.
ultron-capturefetch, cron (5 min)CaptureWorkflowWebsite capture and clone. Browser-rendered into a structured asset.
discoveryfetch, cron (hourly)DiscoveryAggregatorWorkflowPulls signals from many surfaces into the unified discovery feed.
milestonesfetch, cronMilestonesWorkflowPer-workspace milestone progress checks on a schedule.
watcherfetch, cronWatcherWorkflowCompetitor watcher. Snapshot, diff, alert.
aeofetchAEOTrackerWorkflowAI Engine Optimization tracker. Brand mentions in LLM answers.
orchestratorfetchScraperOrchestrator, PollerWorkflowMaster coordinator for scraper runs and result polling.
extension-gatewayfetchUserExtensionDOBrowser-extension gateway. Per-user state, message routing.
renderfetch-Server-side rendering surface for canvases and previews.
ultron-renderfetch-Carousel rendering pipeline. Vector + raster output.
ultron-render-previewfetch-Pre-publish renders for the carousel preview UI.
ultron-croncron, fetch-Master cron firer. Calls back to the app on schedule.
ultron-cron-schedulercron, fetch-Schedule-aware fan-out. Reads schedule definitions and dispatches.
ultron-publishcron (1 min)-Content publishing worker. Cross-channel posting from the queue.
ultron-fundraisingfetch-Fundraising research + outreach pipeline.
ultron-widgetstatic-Embeddable widget host. Public chat surfaces.
scrapefetch-Generic scrape executor. Powers watcher and discovery requests.
scraper-webhookfetch-Receives terminal-status webhooks from scraper runs. Routes datasets.
searchfetch-Search execution surface (web + brain).
edge-authfetch-Edge authentication and token mint.
dashboardfetch-Dashboard backend surface for read-heavy panels.
observability-ingestfetch-Log and metric ingest. Routes into analytics datasets.
tiktok-signfetch-Stateless TikTok URL signer. Helper for scrape calls.
kimi-anthropic-shimfetch-Translates between two different inference API request shapes.
kimi-bridgefetch-Successor to the shim. New routing rules and headers.

Six categories

Workers grouped by what they do.

CategoryWorkers
Runtimeultron-shell, ultron-agent-runtime, extension-gateway
Intelligence + researchdiscovery, aeo, watcher, milestones, ultron-fundraising
Scraping fabricorchestrator, scrape, scraper-webhook, search
Capture + cloneultron-capture
Content + publishingultron-publish, ultron-render, ultron-render-preview, ultron-widget, render
Plumbingultron-cron, ultron-cron-scheduler, edge-auth, dashboard, observability-ingest, tiktok-sign, kimi-anthropic-shim, kimi-bridge

What triggers them

HTTP, cron, queue, or webhook.

TriggerExamples
HTTP fetch from the appAll workers expose at least one HTTP endpoint. Most calls come from the chat-v2 route in the app.
Cron schedulesultron-cron (master), ultron-cron-scheduler (dispatch), discovery (hourly), ultron-capture (5 min), ultron-agent-runtime (1 min), ultron-publish (1 min), watcher (saved cadence per brand).
Queue consumerultron-shell drains its own ultron-shell-runs queue. Job records carry session id and payload.
Inbound webhookscraper-webhook receives terminal-status webhooks from the scraper platform. Routes the dataset to the right workspace.
Workflow step (cross-worker)discovery triggers WatcherWorkflow, AEOTrackerWorkflow indirectly via DB events.

Where they keep state

SurfaceWhat lives thereUsed by
Postgres (Supabase)Canonical app state. Users, conversations, leads, deals, brain.The app, plus edge workers via service-role HTTP.
D1 (per-worker)Worker-local relational state. ultron-operations (aeo, discovery, watcher, milestones), ultron-scrapes, ultron-capture, ultron-publish-db, ultron-agent-builder-db.Each worker owns its D1. No cross-worker D1 access.
R2 bucketsBinary assets. ultron-shell-snapshots, ultron-capture-assets, ultron-publish-assets, ultron-agent-builder-assets, ultron-design-assets, ultron-shell-events.Per-worker bucket; downstream workers read via signed URLs.
KVSmall shared config (SHARED_CONFIG namespace).discovery, aeo, watcher, milestones.
VectorizeEmbedding indices. carousel-briefs for exemplars. Per-agent agent-rag-<id> created on demand.Marketing swarm; agent runtime.
Durable Object storagePer-DO SQLite. AgentInstance (conversation + tool state), UserExtensionDO (per-user extension state). Live sandbox/session state itself lives on the managed-Kubernetes sandbox layer, durable via git.Two workers.
Queueultron-shell-runs (producer + consumer in same worker).ultron-shell.
Analytics datasetsultron_events dataset (analytics engine).Most workers write events here.

Observability

How to see what a worker is doing.

Every worker enables platform observability (logs + traces). Logs are persisted, queryable from the platform dashboard, and each worker writes structured events to the ultron_events analytics dataset for cross-worker aggregation. The observability-ingest worker centralises ingestion when a worker cannot write directly (e.g. the static widget surfaces and the extension gateway need a public ingest endpoint).

For long-running work, workflow-backed workers (aeo, capture, discovery, milestones, watcher, orchestrator, shell) checkpoint every step. A worker restart resumes from the last successful step rather than restarting from scratch.

Tip
Use the worker-specific sub-pages in this section to learn the exact bindings, schedules, and contracts of each worker.