Lesson \u00b7 4 min

What is Sovereign?

Sovereign is an operating system for AI work. You give it a goal, it decomposes the work into a plan, dispatches the steps, reflects on what it produced, and tells you what it did. It is not a chatbot, even though you can talk to it like one.

Why it is not a chatbot

Chatbots reply. They wait for the next message. Their value is in the conversation.

Sovereign agents do work. They take a goal, run a plan, finish or stop, and report. The conversation is the way you give them the goal. It is not the product.

That distinction shapes everything below: the way you start a thread, the way memory is handled, the way you make the agent better over time.

The three objects you'll use every day

Almost everything you do in Sovereign happens against one of three objects: a thread, an agent, or something the agent learned. Get those straight and the rest follows.

Threads

A thread is a single work session. You open one, give the agent the goal, watch the work run, and decide what to do with the output. Each thread starts fresh on purpose. The agent does not carry the chat history of yesterday's thread into today's thread. It carries something better.

Agents

An agent is the persistent identity that gets reused across threads. It has a system prompt, a set of tools and integrations it can use, a list of skills it knows, a body of memory it can draw on, and a set of rubrics it scores its own work against. You build it once. You use it forever. You sharpen it over time.

Learnings: skills, memories, rubrics

Everything an agent carries between threads falls into one of three buckets. Skills are reusable capabilities — "how to write a weekly email in Travis's voice," "how to triage Lindsey's inbox." Memories are facts the agent holds onto — "Travis prefers Telegram for status, Gmail drafts for decisions." Rubrics are the criteria you use to tell the agent what good looks like, and the score sheet it uses to track itself.

Skills, memories, and rubrics all start as suggestions the agent surfaces after a thread. You approve the ones worth keeping. You reject the rest. The library grows because you said it should, not because the agent decided on its own.

Orchestration is the difference

We don't believe in chatbots. We believe in orchestration — plans, steps, tasks, memory. Reflection that self-corrects. Approval gates where humans decide. That phrase is the product, not the marketing.

In practice it means: every non-trivial request the agent gets becomes an explicit plan with steps before any action is taken. The agent dispatches each step to the right place — sometimes itself, sometimes a sub-agent, sometimes a scheduled job, sometimes a human. After it produces output it runs up to three reflection cycles asking: did I solve the actual problem, is my verification real, and what did I miss. Only then does it declare done.

You can see the plan before the run begins. You can intervene. You can require approval before any external action ships. The plan is the contract.

Approvals are where humans decide

Sovereign is built for operators who run businesses, not enthusiasts who play with prompts. That means certain things never happen without your say-so. By default, no client-facing email is sent. Drafts only, always. Journal entries are described before they post. Campaign changes are presented before they ship.

You can loosen these gates as you build trust with a specific agent. You can also tighten them — rubrics and team roles let you require sign-off from a specific person on a specific class of work.

What to do next

  1. Read Your first thread to compose a strong opening prompt.
  2. Read Orchestration if you want the architectural picture.
  3. Skip straight to 7 invocation patterns if you already know how to brief an agent and you just want to put one on a schedule.

← Back to Docs

Ready for the next step?

Compose your first thread, or read the concept page on orchestration.