Browse docs
Docs/Using ThreadCells

Profiles

A profile is a reusable launch policy for an agent. It answers: which provider and model should run, how much reasoning should it use, what role and instructions should it receive, and what capabilities or authority are allowed?

Most users should start with a built-in profile and inspect its resolved preview. You do not need to author raw JSON for normal use.

What a profile controls

A resolved profile can include:

  • provider configuration, model, and reasoning effort;
  • role such as supervisor, developer, reviewer, or specialist;
  • instructions and skill references;
  • allowed tools and MCP capabilities;
  • timeouts and execution behavior;
  • writer or owner-level authority constraints;
  • whether it is intended to remain resident or complete bounded work.

Model power and orchestration role are separate. A strong model is not automatically a supervisor, and a profile's name does not determine how capacity is charged.

Built-in profiles

ThreadCells ships immutable profiles for common roles, including everyday and stronger supervisors, developers, reviewers, architecture and strategy work, frontend/UI work, and a narrowly owner-authorized XHigh executor.

Examples:

  • supervisor_terra_medium: the everyday supervisor for ordinary decomposition and integration.
  • supervisor_sol_medium: stronger orchestration for important or cross-module work.
  • developer_terra_medium and developer_sol_medium: bounded implementation roles.
  • reviewer_sol_high: independent review for risky or integrated changes.
  • critical_sol_xhigh_owner: an exceptional owner-executor profile with a separate authorization boundary.

Built-ins are immutable so a familiar ID cannot silently change meaning. To customize one, duplicate it; the copy receives a custom identity.

Choosing a profile

Use the least specialized profile that can reliably own the task:

TaskStarting point
Small bounded code changedeveloper
Independent acceptance reviewreviewer
Several dependent workstreamssupervisor
Architecture or migration designarchitecture/strategy specialist
Product UI implementationfrontend or UI/UX specialist
Critical frontier owner executionowner-authorized XHigh only

More reasoning and broader authority cost capacity and increase consequence. They should reflect the task, not become defaults.

Resolved preview

Settings → Profiles shows both the saved artifact and its resolved preview. Use the preview before launch to verify the actual provider, model, reasoning, role, tools, authority, timeouts, and instructions after defaults and references are applied.

New launches atomically capture that resolved revision. Editing the custom profile later creates another immutable revision and does not rewrite the historical meaning of an existing session.

Old sessions created before revision snapshots may show legacy/unavailable snapshot. ThreadCells does not fabricate past configuration.

Create a custom profile

The safest path is:

  1. Open Settings → Profiles.
  2. Choose the closest built-in.
  3. Duplicate it.
  4. Give the copy a clear role-based name.
  5. Change the smallest necessary fields.
  6. Inspect the resolved preview.
  7. Use it for a bounded test launch before broader work.

Custom edits create revisions. A profile referenced by history is disabled rather than destructively erased.

Specialized and owner authority

Untrusted imports cannot create owner-executor, XHigh, unrestricted, or danger-full-access authority. An authenticated operator may create a privileged custom revision only through the protected control plane, and the server still requires the applicable one-use owner grant at launch.

The builtin critical_sol_xhigh_owner profile can be selected in both Web launch flows: creating a session or adding an agent to an existing session. Each shows the exceptional-authority block and requires explicit confirmation plus the short-lived operator unlock before minting and consuming one normal launch capability. Add Agent scopes that capability to the existing session and canonical inherited/project working directory. The local CLI offers the same authority class through --owner-xhigh and interactive confirmation. None of these paths creates a reusable API bypass or authorizes other profiles, child terminals, or unrelated Settings changes.

Profiles and capacity

A top-level supervisor or owner session consumes resident-supervisor capacity. A delegated child consumes a work-context slot. Provider execution and heavy execution are charged separately based on activity, not merely because a profile contains supervisor or reviewer in its name.

See Capacity and resource model before raising concurrency for powerful profiles.

Advanced import and export

The CLI exposes the current schema and examples:

bash
threadcells profiles schema
threadcells profiles example
threadcells profiles export
threadcells profiles validate /path/to/profile.json
threadcells profiles import /path/to/profile.json

Validate before import. Imports use the same service validation as the UI and cannot introduce executable MCP commands. They may reference installed provider configurations and registered capability identifiers.

Do not hand-edit database rows or copy private instructions, filesystem paths, credentials, or internal owner state into a public profile artifact.

Common mistakes

  • Choosing a profile solely from its model name.
  • Giving an everyday worker owner-level authority.
  • Editing a custom profile without checking the resolved preview.
  • Expecting an edit to mutate already-running sessions.
  • Importing raw secret values instead of approved references.
  • Treating a profile as provider installation; the selected CLI must still be ready.

Next, see Workflows and durable results for how supervisor and worker profiles cooperate.

Created and maintained by Subaev Ruslan, with contributions from the ThreadCells community. View the repository