ARTICLE / SEPTEMBER 25, 2026
What Is Suna? Kortix's Open-Source AI Management System
Suna is Kortix's open-source AI Management System — your agents, skills, memory, and connectors in one git repo you own, on any model and any infrastructure.
Published: 2026-09-25
Kortix is an open-source AI Management System — an autonomous-company operating system — and Suna is its open-source agent platform, distributed as the GitHub repository kortix-ai/suna.
What Suna is
If you're asking what is Suna, the short answer is that Suna is the open-source agent platform behind Kortix Suna, Kortix's AI Management System. The repository at github.com/kortix-ai/suna titles itself "The open-source AI Management System" and positions Kortix AI Suna as "the leading open-source alternative to Claude Cowork and ChatGPT Work." Suna puts your agents, the skills they share, your company memory, and every connector into a single git repository — versioned, diffable, and shared by the whole company. Kortix suna is not a chatbot or a single assistant: its agents, skills, memory, and connectors are literally files in a repo you own (github.com/kortix-ai/suna).
The architecture: project → session → sandbox → change request → merge
Kortix describes itself in its documentation as "the Autonomous Company Operating System" — a cloud computer where a workforce of AI agents runs your company, and where "everything is code you own" (kortix.com/docs).
The work model is a deterministic loop. A project is a git repository plus a kortix.yaml manifest. Each session runs an agent inside an isolated sandbox, on its own branch named after the session. The agent commits and pushes its work, then opens a change request. A human reviews that change request and merges it to the default branch — so finished work reaches main only through a reviewed change (kortix.com/docs).
The sandbox is disposable by design. Every session gets its own cloud computer — an isolated Linux sandbox on its own branch — where the agent can install, run, and even break anything; only what it commits survives (github.com/kortix-ai/suna).
Three commands to start
Suna ships as a three-command loop documented in the README (github.com/kortix-ai/suna):
- Install the CLI —
curl -fsSL https://kortix.com/install | bash - Scaffold a project —
kortix init, which createskortix.yamlplus your agents, skills, and runtime config. - Ship it —
kortix ship, which pushes your repo and brings the whole thing live in the cloud.
From there you start sessions with kortix sessions new, review what an agent proposes with kortix cr ls, and talk to a session's agent with kortix chat. If you prefer zero setup, you can sign up at kortix.com, create a project, and start a session with nothing to install (github.com/kortix-ai/suna).
Self-host free vs managed cloud
Kortix Suna runs on your own infrastructure — a laptop, a VPS, your own VPC, or your own on-prem network (github.com/kortix-ai/suna). You start a production-style local instance from Docker images, then switch the CLI between hosts with kortix self-host start and kortix hosts use selfhost, or flip back with kortix hosts use cloud.
Pricing splits cleanly: self-hosting is free, while managed Kortix Cloud costs $40 per seat per month plus usage (github.com/kortix-ai/suna). Cloud is built to survive a security review rather than slip past one — one isolated machine per session, per-resource permissions for people and agents, connector credentials brokered server-side, and a secrets manager encrypted at rest (kortix.com/about).
Any model, your own keys
Suna is not locked to one model vendor. The README's comparison table lists Models as "Any provider, your own API keys" — or you can bring the ChatGPT, Claude, or Cursor subscription you already pay for (github.com/kortix-ai/suna). Connectors span 3,000+ apps in a click, plus MCP, OpenAPI, GraphQL, and raw HTTP, with credentials brokered server-side through one scoped token so the raw key never enters the machine.
How Suna compares to Claude Cowork and ChatGPT Work
The Suna README publishes its own comparison table; the competitor rows reflect publicly documented behavior as of July 2026 (github.com/kortix-ai/suna):
| Claude Cowork | ChatGPT Work | Kortix (Suna) | |
|---|---|---|---|
| Source | Closed | Closed | Open source — read it, fork it, audit it |
| Models | Anthropic only | GPT-5.6 only | Any provider, your own API keys |
| Where it runs | Anthropic's cloud, or Bedrock / Google Cloud / Microsoft Foundry — no self-host | OpenAI's cloud, no self-host | Our cloud, your VPC, or your own on-prem network |
| Your configuration | In their product | In their product | Files in a git repo you own |
| Access | Paid plans (Pro, Max, Team, Enterprise) | Paid plans, usage-metered | Self-host free · managed cloud $40/seat/mo + usage |
One note on "open source": the Suna code ships under the Elastic License 2.0 (LICENSE), which is source-available — you can read, fork, and audit it — but it is not an OSI-approved open-source license.
When Suna is (and isn't) the right fit
Suna suits teams that want to own their company's operating layer outright: versioned agents and skills, self-hosting on your own network, any model with your own keys, and a deny-by-default merge path for agent work (github.com/kortix-ai/suna).
Suna is less the right fit if you want a single-vendor assistant you never self-host and never review through a change request. Even on managed Kortix Cloud, the architecture — git repo, sessions, change requests — is still a system you operate rather than a chat window you just open.
FAQ
Is Suna open source?
Suna's code is source-available under the Elastic License 2.0 (LICENSE), which lets you read, fork, and audit it, but it is not an OSI-approved open-source license.
What is the difference between Kortix and Suna?
Kortix is the AI Management System — the autonomous-company operating system. Suna is its open-source agent platform, distributed as the kortix-ai/suna GitHub repository.
How much does Suna cost?
Self-hosting is free. Managed Kortix Cloud costs $40 per seat per month plus usage (github.com/kortix-ai/suna).
Does Suna lock me into one AI model?
No. Suna works with any model provider using your own API keys, or with the ChatGPT, Claude, or Cursor subscription you already pay for (github.com/kortix-ai/suna).
How do I install Suna?
Run three commands: curl -fsSL https://kortix.com/install | bash, then kortix init, then kortix ship (github.com/kortix-ai/suna).
Can I self-host Suna?
Yes. Run it on your own laptop, VPS, VPC, or on-prem network with kortix self-host start, and switch hosts with kortix hosts use selfhost (github.com/kortix-ai/suna).
How does Suna compare to Claude Cowork and ChatGPT Work?
Suna is source-available, runs any model with your own keys, runs on your own infrastructure, and stores your configuration in a git repo you own — while Claude Cowork and ChatGPT Work are closed, single-vendor, cloud-only products (github.com/kortix-ai/suna).
How does finished work actually land in a Suna project?
Each session runs an agent in an isolated sandbox on its own branch; the agent commits and pushes, opens a change request, and a human merges it to the default branch (kortix.com/docs).