opencode-swarm 7.14.0 → 7.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -98,6 +98,7 @@ Swarm has two independent mode systems:
98
98
  |------|--------|-------|------------|
99
99
  | **Balanced** (default) | High | Medium | Everyday development |
100
100
  | **Turbo** | Medium | Fast | Rapid iteration; skips Stage B gates for non-Tier-3 files |
101
+ | **Lean Turbo** | High | Fast | Parallel lanes for non-conflicting tasks (up to `max_parallel_coders` coders) |
101
102
  | **Full-Auto** | Deterministic policy + critic oversight | Fast | Unattended multi-interaction runs |
102
103
 
103
104
  Full-Auto reduces approval friction by deterministically allowing safe operations (read-only tools, in-scope writes, safe shell) and routing every ambiguous or high-risk action (writes to plugin/build/guardrail paths, network, dependency changes, plan/phase mutations, subagent delegation) through the read-only `critic_oversight` agent before it executes. Denials are returned to the agent as structured signals so it can choose a safer path; repeated denials pause the run; phase completion requires an APPROVED oversight record. See [docs/modes.md](docs/modes.md#full-auto) for `mode`, `permission_policy`, `denials`, and `oversight` config keys, fail-closed semantics, and recovery from a paused run.
@@ -110,7 +111,7 @@ Full-Auto reduces approval friction by deterministically allowing safe operation
110
111
  | `balanced` (default) | Standard hooks |
111
112
  | `fast` | Skips compaction service — for short sessions under context pressure |
112
113
 
113
- Switch session modes with `/swarm turbo [on|off]` or `/swarm full-auto [on|off]`. Set project mode in config. The two systems compose independently see [docs/modes.md](docs/modes.md).
114
+ Switch session modes with `/swarm turbo [on|off]` or `/swarm full-auto [on|off]`. Set project mode in config. Lean Turbo is configured in `turbo.lean.*` in config and composes with all session modes. See [docs/modes.md](docs/modes.md).
114
115
 
115
116
  ---
116
117