opencode-swarm 7.28.2 → 7.29.0
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 +42 -442
- package/dist/cli/index.js +55 -13
- package/dist/hooks/knowledge-application.d.ts +12 -0
- package/dist/hooks/skill-propagation-gate.d.ts +16 -4
- package/dist/index.js +351 -117
- package/dist/tools/test-runner.d.ts +0 -1
- package/dist/utils/bun-compat.d.ts +10 -0
- package/package.json +1 -1
|
@@ -23,7 +23,6 @@ export interface TestRunnerArgs {
|
|
|
23
23
|
files?: string[];
|
|
24
24
|
coverage?: boolean;
|
|
25
25
|
timeout_ms?: number;
|
|
26
|
-
allow_full_suite?: boolean;
|
|
27
26
|
}
|
|
28
27
|
export type RegressionOutcome = 'pass' | 'skip' | 'regression' | 'scope_exceeded' | 'error';
|
|
29
28
|
export interface TestTotals {
|
|
@@ -71,6 +71,16 @@ export interface BunCompatSpawnOptions {
|
|
|
71
71
|
stdout?: 'inherit' | 'ignore' | 'pipe';
|
|
72
72
|
stderr?: 'inherit' | 'ignore' | 'pipe';
|
|
73
73
|
timeout?: number;
|
|
74
|
+
/**
|
|
75
|
+
* When true, spawn the child as its own process-group leader (Node path:
|
|
76
|
+
* `detached`) and kill the entire descendant tree on `kill()`/timeout
|
|
77
|
+
* rather than only the direct child. A test runner that forks worker
|
|
78
|
+
* processes (jest/vitest, or a runaway suite) can otherwise outlive a
|
|
79
|
+
* `proc.kill()` of the parent and keep consuming memory after the timeout.
|
|
80
|
+
* Opt-in because the default single-child kill is correct for the many
|
|
81
|
+
* short-lived `bunSpawn` callers (git, lint, version checks).
|
|
82
|
+
*/
|
|
83
|
+
killProcessTree?: boolean;
|
|
74
84
|
}
|
|
75
85
|
export interface BunCompatStream {
|
|
76
86
|
text(): Promise<string>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.29.0",
|
|
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",
|