Configuration

modelRoles and Settings

Last updated July 10, 2026

Configuration

supership relies on a set of modelRoles plus a few task, compaction, and memory keys. Apply them with ./install.sh --config, or merge config/config.snippet.yml by hand.

modelRoles

modelRoles
PropertyTypeDefaultDescription
defaultchain(main agent)Fallback chain for the main agent.
smolchain(scouts)Cheap scouts: david-research, explore, librarian.
slowchain(reviewer tier)The reviewer tier and the review judge.
planchain(genius)The genius chain for planner and deep-debugger.
taskchain(workers)Fallback chain for the mechanical task worker.
advisorchain| Advisor genius chain.
designerchain(pi/designer)The designer agent's chain for frontend build, review, and fix.
platochain(loud-fail if unset)Ultra seat: chief architect and final consolidator.
aristotlechain(loud-fail if unset)Ultra seat: challenger.
taskpoolpooldefault pairLoad-balancing pool for task builders, fixers, and verifiers.
reviewersdiversity setdefault pairReviewer models that alternate across the review lenses.

task, compaction, memory

task / compaction / memory
PropertyTypeDefaultDescription
task.maxRecursionDepthnumber2Set to 3. Depth cap for subagent spawns; 3 keeps ad-hoc escalation's scouts alive.
task.softRequestBudgetnumber90Set to 250. Requests before wrap-up; hard-abort at 1.5x.
task.softRequestBudgetNoticebooleanfalseSet to true, so children get a wrap-up warning instead of a silent kill.
compaction.strategystring| Use snapcompact (needs omp >= 16.2.8); older builds should use shake.
memory.backendstring| local captures consolidated Lessons into per-repo memory.

The installer's --config applies modelRoles, task.maxRecursionDepth, task.softRequestBudget, and task.softRequestBudgetNotice. The compaction and memory keys are not auto-applied; merge them from the snippet if you want them.

Chain versus pool versus diversity set

These three read differently.

  • A role is a fallback chain. Entries are tried in order and the first resolvable model wins. There is no rotation. default, smol, slow, plan, task, advisor, designer, plato, and aristotle are all chains.
  • taskpool is a pool. The pipeline round-robins and health-checks each entry per provider to load-balance across subscriptions. Entries are single model patterns; weight one by repeating it; [] disables pooling; omitting the key uses the default. See Load balancing.
  • reviewers is a diversity set. Entries alternate across the review lenses (model index i % len) so different lenses get different eyes. An entry may itself be a comma-joined chain, but the list as a whole is not a fallback chain.
Warning

Chains ship as YAML lists and require omp >= 16.3.7. On older builds, flatten each list to one comma-separated string. The semantics are identical. See Installation.

Search Documentation

Search for pages and content