Role policy
Status: Built (partial). Role and subagent machinery is part of the harness. Roles are configuration and spawn parameters, not a fixed pipeline.
Intra-harness role policy chooses which model, prompt, and tool surface fits a subagent or specialized pass. Veyyon is provider-agnostic: roles are configuration + spawn parameters, not hard-coded provider assumptions.
What exists today
- Subagents via the
tasktool (packages/coding-agent/src/task/executor.ts) and/agentsthread switching. - Explicit model slots, not a role→model matrix: the interactive model (
/model), plus plainsubagent.modelandcompaction.modelfields in settings.defaultis not a model or a role. Named roles (modelRoles, scoped per profile) exist for anyone who wants specific work types pinned to specific models, but editing them lives in a settings group, not the model picker. See Compaction & project memory and Models, roles, and profiles. - Plan / goal modes alter prompts and tool gating (
/plan,/goal). There is no/advisorslash command — the advisor watchdog (advisor.enabledand related settings, inpackages/coding-agent/src/advisor/) is a background continuous-review mechanism, not a mode you invoke. Seedocs/advisor-watchdog.md. - Addressed inter-agent messaging via the
irctool (packages/coding-agent/src/tools/irc.ts,packages/coding-agent/src/irc/bus.ts):send/wait/inbox/listops over a process-global bus.sendis fire-and-forget with delivery receipts; the bus wakes an idle recipient with a real turn, revives a parked one, or injects a non-interrupting aside into a busy one — the shipped analogue of wake-now-vs-defer message routing.wait(orsend await:true) observes the recipient’s reply as a real turn. Gated byisIrcEnabled: available to every subagent and to a top-level session that can still spawn subagents.
Target pipeline (Spec — not shipped)
A fixed role pipeline (plan → implement → verify → repair) is the target shape. Today Veyyon uses
lighter-weight spawn, model-slot, and irc messaging patterns instead of a fixed pipeline — there is no
staged plan/implement/verify/repair handoff enforced by the harness itself.
Pair role choice with execution-order prompts: explore → plan → edit → verify.