opencode-swarm 6.40.8 → 6.41.1
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 +9 -1
- package/dist/cli/index.js +8054 -7756
- package/dist/commands/close.d.ts +6 -0
- package/dist/commands/index.d.ts +1 -0
- package/dist/commands/registry.d.ts +4 -0
- package/dist/config/plan-schema.d.ts +7 -0
- package/dist/hooks/guardrails.d.ts +1 -1
- package/dist/index.js +3185 -2786
- package/dist/services/history-service.d.ts +1 -1
- package/dist/tools/declare-scope.d.ts +1 -0
- package/dist/tools/index.d.ts +2 -0
- package/dist/tools/tool-names.d.ts +1 -1
- package/dist/tools/write-drift-evidence.d.ts +29 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1050,14 +1050,22 @@ The following tools can be assigned to agents via overrides:
|
|
|
1050
1050
|
| `update_task_status` | Mark plan tasks as pending/in_progress/completed/blocked; track phase progress |
|
|
1051
1051
|
| `todo_extract` | Extract TODO/FIXME comments |
|
|
1052
1052
|
| `write_retro` | Document phase retrospectives via the phase_complete workflow; capture lessons learned |
|
|
1053
|
+
| `write_drift_evidence` | Write drift verification evidence after critic_drift_verifier completes |
|
|
1053
1054
|
|
|
1054
1055
|
---
|
|
1055
1056
|
|
|
1056
1057
|
<details>
|
|
1057
|
-
<summary><strong>Recent Changes (v6.12 – v6.31)</strong></summary>
|
|
1058
|
+
<summary><strong>Recent Changes (v6.12 – v6.31+)</strong></summary>
|
|
1058
1059
|
|
|
1059
1060
|
> For the complete version history, see [CHANGELOG.md](CHANGELOG.md) or [docs/releases/](docs/releases/).
|
|
1060
1061
|
|
|
1062
|
+
### v6.41.0 — Drift Evidence Tool
|
|
1063
|
+
|
|
1064
|
+
- **`write_drift_evidence` tool**: New architect tool for persisting drift verification evidence after critic_drift_verifier delegation
|
|
1065
|
+
- Accepts phase number, verdict (APPROVED/NEEDS_REVISION), and summary
|
|
1066
|
+
- Normalizes verdict automatically (APPROVED → approved, NEEDS_REVISION → rejected)
|
|
1067
|
+
- Writes gate-contract formatted evidence to `.swarm/evidence/{phase}/drift-verifier.json`
|
|
1068
|
+
|
|
1061
1069
|
### v6.31.0 — process.cwd() Cleanup + Watchdog + Knowledge Tools
|
|
1062
1070
|
|
|
1063
1071
|
- **process.cwd() cleanup**: All 14 source files now use plugin-injected `directory` parameter. Five tools migrated to `createSwarmTool` wrapper.
|