Bronze
Back the work
$10 / month
- Your name on our supporters list
- A vote on what we build next
- A thank you in the build log
Open software
Drive the whole platform with code. Your own apps can start tasks, read the results, and run everything through plain web calls.
AI Native API
The AI Native API lets your own programs drive the AI Native Platform. Anything you can do by hand in the app, your code can do too: start a task, hand it to an agent, check how it is going, and read the result. You talk to it with plain web calls, the same kind of request a web page makes, so any language that can reach the internet can use it.
The platform is split into 26 areas, with more than 120 calls in total. You can manage tasks and projects, build step-by-step workflows, set schedules that run on their own, pick which agent and which AI model does the work, and even watch what each run costs. There are calls for documents, tables, settings, and saved backups too, so a small app of your own can lean on the whole platform.
When you start a task, the API answers straight away and lets the agent work in the background. You do not sit and wait. If you want to follow along, open the task’s log stream and the lines arrive live as the agent does its job. When it finishes, one more call hands you the finished result.
The API runs where the platform runs, on your own computer. It uses the AI keys you already set in the app’s Settings, so there is no extra login and your work never has to leave your machine.
# Ask the platform to run a task. It answers right away with a task id.
curl -X POST http://localhost:3000/api/tasks \
-H "Content-Type: application/json" \
-d '{"title":"Summarize this week of sales","assignedAgent":"claude-code"}'
// 1. Create a task. It comes back with an id.
const res = await fetch("http://localhost:3000/api/tasks", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ title: "Draft a blog post", assignedAgent: "claude-code" }),
});
const task = await res.json();
// 2. Move it to the queue, then start it. The call returns at once.
await fetch(`http://localhost:3000/api/tasks/${task.id}`, {
method: "PATCH",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ status: "queued" }),
});
await fetch(`http://localhost:3000/api/tasks/${task.id}/execute`, { method: "POST" });
// 3. Read the result once it is done.
const out = await fetch(`http://localhost:3000/api/tasks/${task.id}/output`);
console.log(await out.json());
Back this work with a monthly tier. Your support moves your requests up the list, and Gold or Platinum earns a badge on the roadmap item you back.
Back the work
$10 / month
Get a say
$25 / month
Move it up the list
$50 / month
Shape the roadmap
$100 / month
Need something specific? Send an enquiry from the roadmap.

A book on running a business with AI agents (software helpers that do the work for you). Fourteen short chapters in four parts take you from the first idea to a working system. About a two hour read, open to all.

Run AI helpers on your own computer. Hand them tasks, build flows that run step by step, set schedules, and watch the work as it goes. It even tracks what each run costs. One place, no cloud needed.

Every story here, every number and honest miss, I put out in public on purpose. This is why I build in the open, and how you can help shape what comes next.