opencode-swarm 6.24.0 → 6.25.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 +1 -0
- package/dist/agents/architect-permission.adversarial.test.d.ts +5 -0
- package/dist/cli/index.js +2 -0
- package/dist/config/constants.architect-whitelist.test.d.ts +1 -0
- package/dist/index.js +609 -298
- package/dist/tools/barrel-export-check-gate-status.test.d.ts +6 -0
- package/dist/tools/check-gate-status.adversarial.test.d.ts +1 -0
- package/dist/tools/check-gate-status.d.ts +7 -0
- package/dist/tools/check-gate-status.gates.test.d.ts +1 -0
- package/dist/tools/check-gate-status.plugin-registration.test.d.ts +1 -0
- package/dist/tools/index.d.ts +1 -0
- package/dist/tools/tool-names.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -907,6 +907,7 @@ The following tools can be assigned to agents via overrides:
|
|
|
907
907
|
| Tool | Purpose |
|
|
908
908
|
|------|---------|
|
|
909
909
|
| `checkpoint` | Save/restore git checkpoints |
|
|
910
|
+
| `check_gate_status` | Read-only query of task gate status |
|
|
910
911
|
| `complexity_hotspots` | Identify high-risk code areas |
|
|
911
912
|
| `detect_domains` | Detect SME domains from text |
|
|
912
913
|
| `diff` | Analyze git diffs and changes |
|
package/dist/cli/index.js
CHANGED
|
@@ -16645,6 +16645,7 @@ var TOOL_NAMES = [
|
|
|
16645
16645
|
"schema_drift",
|
|
16646
16646
|
"todo_extract",
|
|
16647
16647
|
"evidence_check",
|
|
16648
|
+
"check_gate_status",
|
|
16648
16649
|
"sbom_generate",
|
|
16649
16650
|
"checkpoint",
|
|
16650
16651
|
"pkg_audit",
|
|
@@ -16680,6 +16681,7 @@ var ALL_AGENT_NAMES = [
|
|
|
16680
16681
|
var AGENT_TOOL_MAP = {
|
|
16681
16682
|
architect: [
|
|
16682
16683
|
"checkpoint",
|
|
16684
|
+
"check_gate_status",
|
|
16683
16685
|
"complexity_hotspots",
|
|
16684
16686
|
"detect_domains",
|
|
16685
16687
|
"evidence_check",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|