opencode-swarm 7.141.0 → 7.141.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.
Files changed (44) hide show
  1. package/dist/cli/{config-doctor-ayer8jwj.js → config-doctor-xs2p0xy3.js} +2 -2
  2. package/dist/cli/{core-yep18rkf.js → core-znrxk8gw.js} +1 -1
  3. package/dist/cli/{curator-fkwhph34.js → curator-a95x81ek.js} +17 -17
  4. package/dist/cli/{curator-llm-factory-b1wtbwwv.js → curator-llm-factory-ak7p0scv.js} +17 -17
  5. package/dist/cli/{dispatch-y8rergph.js → dispatch-rd10kdk1.js} +1 -1
  6. package/dist/cli/{evidence-summary-service-8e6594tg.js → evidence-summary-service-2gk48s5s.js} +4 -4
  7. package/dist/cli/{guardrail-explain-fhx1kft6.js → guardrail-explain-4st3vc3d.js} +18 -18
  8. package/dist/cli/{guardrail-log-x94s1jh9.js → guardrail-log-vjexgpfm.js} +3 -3
  9. package/dist/cli/{hive-promoter-3ay1hffy.js → hive-promoter-g9ad9vad.js} +17 -17
  10. package/dist/cli/{index-x5kk9gyk.js → index-2ygp3pnx.js} +5 -5
  11. package/dist/cli/{index-pkby67j3.js → index-39xs96mk.js} +1 -1
  12. package/dist/cli/{index-m54erqap.js → index-3gfdb0t9.js} +1 -1
  13. package/dist/cli/{index-9snyxgtf.js → index-44nf5s90.js} +1 -1
  14. package/dist/cli/{index-nkr3j0j1.js → index-5ykn39wq.js} +2 -2
  15. package/dist/cli/{index-sd1w4pya.js → index-8056f16v.js} +2 -2
  16. package/dist/cli/{index-w95sxwfr.js → index-8s4vnqts.js} +1 -1
  17. package/dist/cli/{index-awwqa1f5.js → index-c6m3t5n2.js} +2 -2
  18. package/dist/cli/{index-nk2ma3mh.js → index-dx1mdsrj.js} +134 -72
  19. package/dist/cli/{index-ays8g6cm.js → index-ebwznsfy.js} +54 -14
  20. package/dist/cli/{index-h375yxj5.js → index-g29r600w.js} +19 -19
  21. package/dist/cli/{index-fcsf8vjm.js → index-hjf8pjd4.js} +3 -3
  22. package/dist/cli/{index-xcqst95a.js → index-mr397tze.js} +1 -1
  23. package/dist/cli/{index-g4w73p1v.js → index-pkxt2rg2.js} +1 -1
  24. package/dist/cli/{index-acpsb3g1.js → index-ry609ctr.js} +3 -3
  25. package/dist/cli/{index-ytnm84ed.js → index-vnr917xf.js} +3 -3
  26. package/dist/cli/{index-b9mwe99e.js → index-w9613ace.js} +4 -4
  27. package/dist/cli/{index-10zsx1x2.js → index-wbf8sv70.js} +1 -1
  28. package/dist/cli/{index-1dwa96x7.js → index-ysapwztd.js} +2 -2
  29. package/dist/cli/{index-fckf6g01.js → index-z8yr1yra.js} +1 -1
  30. package/dist/cli/{index-rx33k785.js → index-zqshpey0.js} +1 -1
  31. package/dist/cli/index.js +17 -17
  32. package/dist/cli/{knowledge-escalator-53m3sh8p.js → knowledge-escalator-5xg6vmr4.js} +6 -6
  33. package/dist/cli/{knowledge-events-s5pmx5h3.js → knowledge-events-qvzpqt5b.js} +4 -4
  34. package/dist/cli/{knowledge-store-dv70gxxc.js → knowledge-store-k5td1vqx.js} +1 -1
  35. package/dist/cli/{knowledge-validator-je30smbr.js → knowledge-validator-zz26gk5d.js} +2 -2
  36. package/dist/cli/{scan-cursor-tcdcjbp9.js → scan-cursor-nhcpebh5.js} +2 -2
  37. package/dist/cli/{schema-6cg2smxx.js → schema-6ecb0xhn.js} +1 -1
  38. package/dist/cli/{scope-persistence-v51d74j2.js → scope-persistence-yet1hvmq.js} +4 -4
  39. package/dist/cli/{skill-generator-7kp8s0ne.js → skill-generator-j0mbd2pp.js} +7 -7
  40. package/dist/cli/{worktree-isolation-g6t99t0x.js → worktree-isolation-445zjngp.js} +17 -17
  41. package/dist/index.js +12 -12
  42. package/dist/lang/backend.d.ts +1 -0
  43. package/dist/tools/test-runner.d.ts +3 -2
  44. package/package.json +1 -1
@@ -97,6 +97,7 @@ export interface BuildTestCommandOpts {
97
97
  scope?: TestScope;
98
98
  coverage?: boolean;
99
99
  bail?: boolean;
100
+ targets?: string[];
100
101
  nativeTarget?: NativeTestTarget;
101
102
  }
102
103
  /**
@@ -28,6 +28,7 @@ export type TestFramework = (typeof SUPPORTED_FRAMEWORKS)[number] | 'none';
28
28
  export interface TestRunnerArgs {
29
29
  scope?: TestScope;
30
30
  files?: string[];
31
+ targets?: string[];
31
32
  native_target?: NativeTestTarget;
32
33
  coverage?: boolean;
33
34
  timeout_ms?: number;
@@ -107,7 +108,7 @@ export declare function detectTestFrameworkViaDispatch(cwd: string): Promise<Tes
107
108
  * Returns null on framework=`none` or when dispatch fails — callers (the
108
109
  * test-runner) then surface "no test command available".
109
110
  */
110
- export declare function buildTestCommandViaDispatch(framework: TestFramework, scope: TestScope, files: string[], coverage: boolean, baseDir: string, bail: boolean, nativeTarget?: NativeTestTarget): Promise<string[] | null>;
111
+ export declare function buildTestCommandViaDispatch(framework: TestFramework, scope: TestScope, files: string[], coverage: boolean, baseDir: string, bail: boolean, targets?: string[], nativeTarget?: NativeTestTarget): Promise<string[] | null>;
111
112
  /**
112
113
  * Parse test output via the LanguageBackend dispatch path. Calls
113
114
  * `backend.parseTestOutput` for the directory's resolved backend and
@@ -152,7 +153,7 @@ export declare function isLanguageSpecificTestFile(basename: string): boolean;
152
153
  */
153
154
  export declare function getTestFilesFromConvention(sourceFiles: string[], workingDir?: string): string[];
154
155
  declare function formatNativeHistoryTestFile(target: NativeTestTarget, historyPath: string): string;
155
- export declare function runTests(framework: TestFramework, scope: TestScope, files: string[], coverage: boolean, timeout_ms: number, cwd: string, bail: boolean, nativeTarget?: NativeTestTarget): Promise<TestResult>;
156
+ export declare function runTests(framework: TestFramework, scope: TestScope, files: string[], coverage: boolean, timeout_ms: number, cwd: string, bail: boolean, targets?: string[], nativeTarget?: NativeTestTarget): Promise<TestResult>;
156
157
  declare function selectHistoryForAnalysis(history: ReturnType<typeof getAllHistory>): TestRunRecord[];
157
158
  export declare const test_runner: ReturnType<typeof tool>;
158
159
  export declare const _internals: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "7.141.0",
3
+ "version": "7.141.1",
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",