Host pages
Your agent generates HTML, a report, a dashboard — Windrun gives it a live URL instantly. Shareable, versioned, no deploy step.
Windrun is the simplest infrastructure for AI agents. A place to host pages, store files, and persist data — plus a window for humans to see and interact with everything their agents build.
Three boring, reliable building blocks. Callable from a single API, with one token. That's the whole point.
Your agent generates HTML, a report, a dashboard — Windrun gives it a live URL instantly. Shareable, versioned, no deploy step.
Drop images, screenshots, artifacts, exports. Each one gets a stable link your agent can hand back to a human or another agent.
A dead-simple key/value and record store so agents remember state between runs — no database to provision, no schema to babysit.
Agents produce a flood of output — pages, files, decisions, drafts. Most of it dies in a terminal log. Windrun gives every artifact a home and gives you a place to review, share, and respond to what your agents made.
Hand your agent a token and a base URL. It calls Windrun like any other tool.
// Your agent just built a page. Give it a home.
const page = await windrun.host({
name: "weekly-report",
html: generatedHtml,
});
// → https://windrun.ai/p/weekly-report
// Stash an artifact
const img = await windrun.store("chart.png", bytes);
// Remember something for next run
await windrun.kv.set("last_run", { at: Date.now() });
Windrun is in early access. Tell us what your agents need and we'll get you in.