opencode-swarm 7.14.0 → 7.16.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 +4 -3
- package/dist/cli/index.js +2114 -553
- package/dist/commands/close.d.ts +14 -1
- package/dist/commands/registry.d.ts +3 -3
- package/dist/commands/turbo.d.ts +4 -4
- package/dist/config/constants.d.ts +12 -1
- package/dist/config/index.d.ts +2 -2
- package/dist/config/schema.d.ts +116 -0
- package/dist/index.js +5288 -2128
- package/dist/parallel/file-locks.d.ts +50 -2
- package/dist/services/skill-improver.d.ts +1 -0
- package/dist/services/status-service.d.ts +29 -0
- package/dist/state.d.ts +17 -0
- package/dist/tools/index.d.ts +6 -0
- package/dist/tools/lean-turbo-acquire-locks.d.ts +36 -0
- package/dist/tools/lean-turbo-plan-lanes.d.ts +35 -0
- package/dist/tools/lean-turbo-review.d.ts +34 -0
- package/dist/tools/lean-turbo-run-phase.d.ts +44 -0
- package/dist/tools/lean-turbo-runner-status.d.ts +36 -0
- package/dist/tools/lean-turbo-status.d.ts +44 -0
- package/dist/tools/tool-names.d.ts +1 -1
- package/dist/tools/update-task-status.d.ts +7 -4
- package/dist/turbo/lean/conflicts.d.ts +100 -0
- package/dist/turbo/lean/evidence.d.ts +91 -0
- package/dist/turbo/lean/index.d.ts +27 -0
- package/dist/turbo/lean/integration.d.ts +137 -0
- package/dist/turbo/lean/phase-ready.d.ts +105 -0
- package/dist/turbo/lean/planner.d.ts +115 -0
- package/dist/turbo/lean/reviewer.d.ts +124 -0
- package/dist/turbo/lean/risk.d.ts +47 -0
- package/dist/turbo/lean/runner.d.ts +322 -0
- package/dist/turbo/lean/state.d.ts +61 -0
- package/dist/turbo/lean/task-completion.d.ts +53 -0
- package/package.json +1 -1
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.
|
|
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
|
|
|
@@ -1343,8 +1344,8 @@ Control how tool outputs are summarized for LLM context.
|
|
|
1343
1344
|
| `/swarm specify [description]` | Generate or import a feature specification |
|
|
1344
1345
|
| `/swarm clarify [topic]` | Clarify and refine an existing feature specification |
|
|
1345
1346
|
| `/swarm analyze` | Analyze spec.md vs plan.md for requirement coverage gaps |
|
|
1346
|
-
| `/swarm finalize [--prune-branches]` | Idempotent session close-out: retrospectives, lesson curation, evidence archive, context.md reset, config-backup cleanup, optional branch pruning |
|
|
1347
|
-
| `/swarm close [--prune-branches]` | Deprecated alias for `/swarm finalize [--prune-branches]` |
|
|
1347
|
+
| `/swarm finalize [--prune-branches] [--skill-review]` | Idempotent session close-out: retrospectives, lesson curation, evidence archive, context.md reset, config-backup cleanup, optional branch pruning, optional skill-improver proposal |
|
|
1348
|
+
| `/swarm close [--prune-branches] [--skill-review]` | Deprecated alias for `/swarm finalize [--prune-branches] [--skill-review]` |
|
|
1348
1349
|
| `/swarm write-retro` | Write a phase retrospective manually |
|
|
1349
1350
|
| `/swarm handoff` | Generate a handoff summary for context-budget-critical sessions |
|
|
1350
1351
|
| `/swarm simulate` | Simulate plan execution without writing code |
|