All templates
Full-Stack Apps

Agent Compute Pipeline

For workloads that outgrow a single request. This template runs Docker containers and workers on ECS/Fargate, fed by durable SQS queues, so agents can process heavy, long-running, or high-volume jobs reliably at scale.

Read the docs

The agent prompt

Copy this into Cursor, Claude Code, or any Naïve-connected agent. It describes exactly what to build and which primitives to wire together.

Prompt
Build me an agent compute pipeline on Naive.

I need to run heavy, long-running, high-volume jobs reliably — containers and workers fed by durable queues.

Use these Naive primitives:
- compute: run Docker containers/workers on ECS/Fargate
- queue: durable SQS queues to buffer work
- apps: optional control-plane app/dashboard
- cron: scheduled batch runs

Read the docs at https://usenaive.ai/docs and start with: npm i -g naive && naive login

What it builds

Containers & workers

Run Docker workloads on ECS/Fargate.

Durable queues

Buffer work in SQS queues for reliable processing.

Scale on demand

Scale workers up and down as volume changes.

Scheduled jobs

Trigger batch runs on a cron schedule.

Primitives used

computequeueappscron

How it's built

  • naive compute — containers + workers on ECS/Fargate
  • naive queue — durable SQS pipelines
  • naive cron — scheduled batch runs

Start building

Install the CLI, copy the prompt, and let your agent wire it up.

$ npm i -g naive && naive login
ComputeQueue