opencode-swarm 7.144.7 → 7.144.8
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/dist/cli/{capability-probe-976tt4ba.js → capability-probe-va4kk8vg.js} +2 -2
- package/dist/cli/{config-doctor-zdvaq4nb.js → config-doctor-zbqfp0v6.js} +2 -2
- package/dist/cli/{core-j7f118a5.js → core-pz9gwatq.js} +1 -1
- package/dist/cli/{curator-llm-factory-eny079d1.js → curator-llm-factory-3nq3p02z.js} +19 -19
- package/dist/cli/{curator-97sm8wn0.js → curator-sk0dyvke.js} +19 -19
- package/dist/cli/{evidence-summary-service-kwtb2d14.js → evidence-summary-service-abwrjqd0.js} +7 -7
- package/dist/cli/{gate-evidence-rk9j0hc4.js → gate-evidence-aa7vvtcd.js} +2 -2
- package/dist/cli/{guardrail-explain-8gggptqj.js → guardrail-explain-hvtyr2fz.js} +20 -20
- package/dist/cli/{guardrail-log-zbqf4ws6.js → guardrail-log-jw5mzs0d.js} +3 -3
- package/dist/cli/{hive-promoter-qzvtp5wx.js → hive-promoter-m20j63yg.js} +19 -19
- package/dist/cli/{index-bx20cv1v.js → index-0v1f2sdb.js} +2 -2
- package/dist/cli/{index-b44qqqt2.js → index-3g0xk6tk.js} +1 -1
- package/dist/cli/{index-77h4xjn5.js → index-3k3nbs52.js} +4 -4
- package/dist/cli/{index-zq9gs0yk.js → index-7qb0hn8n.js} +1 -1
- package/dist/cli/{index-zy7f84cs.js → index-85gkedsf.js} +14 -5
- package/dist/cli/{index-c1cfsg9y.js → index-8dbzaf0m.js} +1 -1
- package/dist/cli/{index-xjgwr4c6.js → index-bv44950t.js} +1 -1
- package/dist/cli/{index-x4q96ejx.js → index-c2rpht77.js} +50 -47
- package/dist/cli/{index-qm0mz7rj.js → index-cx51wy0c.js} +3 -3
- package/dist/cli/{index-d879g58v.js → index-d1dbpxxk.js} +1 -1
- package/dist/cli/{index-x4eqd82b.js → index-gfvkttvd.js} +1 -1
- package/dist/cli/{index-grkev1g6.js → index-jdxnzbah.js} +1 -1
- package/dist/cli/{index-jszgrk71.js → index-k7fk9fjs.js} +2 -2
- package/dist/cli/{index-gmdgap01.js → index-nmy6rss1.js} +1 -1
- package/dist/cli/{index-00fk9c3b.js → index-r14qx363.js} +1 -1
- package/dist/cli/{index-yz0hfa4g.js → index-r2rkwvzq.js} +2 -2
- package/dist/cli/{index-w9bnt74s.js → index-sxe5nyq4.js} +3 -3
- package/dist/cli/{index-r2q0nd0a.js → index-t2ntgzts.js} +3 -3
- package/dist/cli/{index-39jbnhar.js → index-t72g4a7y.js} +21 -21
- package/dist/cli/{index-7bvd5nh2.js → index-tffg4mwr.js} +1 -1
- package/dist/cli/{index-q7zy6dej.js → index-xp5g9eps.js} +1 -1
- package/dist/cli/{index-pzsezhek.js → index-xx8tm58n.js} +5 -5
- package/dist/cli/{index-s1xefrx7.js → index-z4fssj97.js} +7 -4
- package/dist/cli/index.js +19 -19
- package/dist/cli/{knowledge-escalator-fhc6ecbv.js → knowledge-escalator-mg8qb7tm.js} +6 -6
- package/dist/cli/{knowledge-events-31g69mx2.js → knowledge-events-3zxf8xpb.js} +4 -4
- package/dist/cli/{knowledge-store-g389c1cy.js → knowledge-store-awnm8s6c.js} +1 -1
- package/dist/cli/{knowledge-validator-sng5xt5a.js → knowledge-validator-3ke5scx3.js} +2 -2
- package/dist/cli/{scan-cursor-qm3tsvvw.js → scan-cursor-00rbxkb4.js} +2 -2
- package/dist/cli/{schema-vnghba3d.js → schema-5nmkp1pc.js} +1 -1
- package/dist/cli/{scope-persistence-k9mqd414.js → scope-persistence-6m79atw9.js} +4 -4
- package/dist/cli/{skill-generator-v1wdh3ne.js → skill-generator-gv70s796.js} +7 -7
- package/dist/cli/{worktree-isolation-bxt3rftm.js → worktree-isolation-bne0p54w.js} +19 -19
- package/dist/git/branch.d.ts +9 -0
- package/dist/hooks/delegation-gate/worktree-isolation.d.ts +5 -0
- package/dist/index.js +4 -4
- package/dist/sandbox/executor.d.ts +6 -0
- package/package.json +1 -1
|
@@ -19,6 +19,12 @@ export declare class SandboxError extends Error {
|
|
|
19
19
|
* sandbox command syntax on any platform.
|
|
20
20
|
*/
|
|
21
21
|
export declare function isValidEnvKey(key: string): boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Returns true when `key` belongs to one of the env-var families that must
|
|
24
|
+
* never be sourced from a repo-resident (untrusted) env file.
|
|
25
|
+
* See `UNTRUSTED_ENV_KEY_PREFIXES` for the rationale.
|
|
26
|
+
*/
|
|
27
|
+
export declare function isUntrustedEnvKey(key: string): boolean;
|
|
22
28
|
/**
|
|
23
29
|
* Interface for platform-specific sandbox executors.
|
|
24
30
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "7.144.
|
|
3
|
+
"version": "7.144.8",
|
|
4
4
|
"description": "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|