Build

Build apps, APIs, background work, and agent workflows on Agentuity

Use Build after you have a framework or app shape in place. These pages cover the application patterns you put on Agentuity: normal web apps, backend APIs, static sites, background work, and model-backed agent workflows.

Build Paths

Start with the shape you are building. Use the table below when you already know the job and need the matching page.

Pick a Starting Point

If you need to...Start withMental model
deploy a framework app with pages and server routesWeb Appskeep the framework router; put Agentuity clients in server-only code
expose JSON endpoints or an app-owned backendBackend APIsa deployable Agentuity app can be a plain HTTP server
host HTML or a static framework outputStatic Sitesstatic output can deploy without an agent-specific wrapper
move slow work out of request handlersBackground Workenqueue the job, return a handle, and let a worker route finish it
run a model-backed decision or generation workflowAgentsan agent is app code that calls models, tools, and services
stream chat output or use tool callsChat and Streaming or Tool Callingthe framework owns the response; tools are bounded functions you own
store conversation state, memory, or pending workState and Memorypick KV, database rows, cookies, or vector storage by access pattern
delegate repo-aware coding workCoding Agentsuse Coder when the workflow needs repo context, sessions, tools, and live events

What Agentuity adds

Agentuity does not replace your router, framework, AI SDK, logger, collector, or database layer. It gives the app deploy packaging, service credentials, hosted services, observability, sandboxes, Coder sessions, and AI Gateway access.

The examples use direct service clients because that path works across supported frameworks, server functions, scripts, and workers. Hono apps can also install @agentuity/hono and read common clients from c.var.*.

Next Steps

Use these pages when the app shape is clear and you need framework, service, or deploy guidance.

  • Frameworks: connect Agentuity to Next.js, Nuxt, Hono, SvelteKit, Astro, Vite, TanStack Start, and other app shapes
  • Services: choose storage, messaging, identity, observability, sandbox, Coder, and AI Gateway clients
  • Deploy and Operate: run local development, inspect packaged output, and deploy the app
  • Migration: update older apps that use @agentuity/runtime, createApp(), or createAgent()