opencode-swarm 6.19.5 → 6.19.7
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 +2 -0
- package/dist/cli/index.js +6859 -6790
- package/dist/index.js +3414 -1555
- package/dist/tools/index.d.ts +1 -0
- package/dist/tools/plugin-registration-adversarial.test.d.ts +1 -0
- package/dist/tools/pre-check-batch.d.ts +3 -1
- package/dist/tools/tool-names.d.ts +1 -1
- package/dist/tools/update-task-status.d.ts +47 -0
- package/package.json +1 -4
package/README.md
CHANGED
|
@@ -694,7 +694,9 @@ The following tools can be assigned to agents via overrides:
|
|
|
694
694
|
| `secretscan` | Scan for secrets in code |
|
|
695
695
|
| `symbols` | Extract exported symbols |
|
|
696
696
|
| `test_runner` | Run project tests |
|
|
697
|
+
| `update_task_status` | Mark plan tasks as pending/in_progress/completed/blocked; track phase progress |
|
|
697
698
|
| `todo_extract` | Extract TODO/FIXME comments |
|
|
699
|
+
| `write_retro` | Document phase retrospectives via the phase_complete workflow; capture lessons learned |
|
|
698
700
|
| `phase_complete` | Enforces phase completion, verifies required agents, logs events, resets state |
|
|
699
701
|
|
|
700
702
|
---
|