opencode-swarm 6.74.1 → 6.76.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/dist/__tests__/evidence-lock.adversarial.test.d.ts +8 -0
- package/dist/__tests__/evidence-lock.test.d.ts +6 -0
- package/dist/__tests__/gate-evidence.adversarial.test.d.ts +7 -0
- package/dist/cli/index.js +1482 -1127
- package/dist/config/schema.d.ts +11 -0
- package/dist/evidence/lock.d.ts +36 -0
- package/dist/index.js +5385 -5061
- package/dist/parallel/dispatcher/index.d.ts +2 -0
- package/dist/parallel/dispatcher/noop-dispatcher.d.ts +18 -0
- package/dist/parallel/dispatcher/noop-dispatcher.test.d.ts +10 -0
- package/dist/parallel/dispatcher/types.d.ts +33 -0
- package/dist/parallel/index.d.ts +1 -0
- package/dist/plan/manager.cas-backoff.test.d.ts +10 -0
- package/dist/plan/manager.d.ts +17 -0
- package/dist/state/agent-run-context.d.ts +24 -0
- package/dist/state.agent-run-context.test.d.ts +10 -0
- package/dist/state.d.ts +16 -2
- package/dist/telemetry.d.ts +1 -1
- package/dist/tools/test-runner.d.ts +32 -0
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Adversarial tests for evidence write locking — 16 concurrent writers.
|
|
3
|
+
*
|
|
4
|
+
* Proves that no writes are lost when concurrent callers race on the same
|
|
5
|
+
* evidence file. Each writer appends a unique marker; after all settle we
|
|
6
|
+
* assert every marker is present exactly once.
|
|
7
|
+
*/
|
|
8
|
+
export {};
|