Run AI agents like operating system processes.
KernelAgent splits a task into agent processes, schedules them, and lets them act only through permission-checked syscalls in a sandbox. Every step is logged, so you can see exactly what your agents did, what it cost, and why.
Bring your own Claude or OpenAI API key. Nothing to install.
| PID | ROLE | STATE | TOKENS |
|---|---|---|---|
| p-1 | planner | TERMINATED | 4.1k |
| p-2 | researcher | RUNNING | 12.8k |
| p-3 | coder | BLOCKED | 9.3k |
| p-4 | reviewer | READY | 0 |
An operating system for agents
The same ideas that keep programs from stepping on each other keep agents in check: processes, a scheduler, permissions, isolation, and an audit log.
- 01Job
You describe a task. It becomes a job: one or more agent processes, with dependencies between them.
- 02Scheduler
A priority queue with aging runs ready processes under a concurrency cap and a token rate limit.
- 03Syscalls
Agents act only through syscalls: read, write, exec, spawn, send. Each one is checked against the process's capabilities.
- 04Sandbox
Code and files run in an isolated sandbox per process. Risky commands can wait for your approval.
- 05Event log
Every state change, model call, and syscall is appended to a log. Replay it to rebuild any moment.
See how your agents behave
Ask for something. Watch each step the agent takes, the files it writes, and what it cost.
A live table like top, a task graph, IPC messages, sandboxes, and traces you can rewind.
Tokens, cost, cache savings, and errors over time, split by model. Compare Claude and GPT on the same work.
Chats and agent memory are saved to your account, so your agents remember context on any device. Your API key stays in your browser.
Bring your own API key
Agents run on your key, so you pay your provider directly and nobody else's usage lands on your bill. Add one key or both.
- Open the Anthropic Console and add billing.
- Create a key under Settings → API keys.
- Paste it on the Connect page after you sign in.
- Open the OpenAI platform and add billing.
- Create a secret key under API keys.
- Paste it on the Connect page after you sign in.
Connectors
Connect GitHub, Google Drive, or Slack through MCP and let agents use them, under the same capability checks, approvals, and audit log as every other syscall. Watch how Claude and GPT agents handle real tools side by side.