@agent-relay/sdk 3.2.0 → 3.2.2
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/bin/agent-relay-broker-darwin-arm64 +0 -0
- package/bin/agent-relay-broker-darwin-x64 +0 -0
- package/bin/agent-relay-broker-linux-arm64 +0 -0
- package/bin/agent-relay-broker-linux-x64 +0 -0
- package/dist/__tests__/completion-pipeline.test.d.ts +14 -0
- package/dist/__tests__/completion-pipeline.test.d.ts.map +1 -0
- package/dist/__tests__/completion-pipeline.test.js +1476 -0
- package/dist/__tests__/completion-pipeline.test.js.map +1 -0
- package/dist/__tests__/e2e-owner-review.test.js +2 -2
- package/dist/__tests__/e2e-owner-review.test.js.map +1 -1
- package/dist/examples/example.js +1 -1
- package/dist/examples/example.js.map +1 -1
- package/dist/relay-adapter.js +4 -4
- package/dist/relay-adapter.js.map +1 -1
- package/dist/workflows/builder.d.ts +18 -3
- package/dist/workflows/builder.d.ts.map +1 -1
- package/dist/workflows/builder.js +24 -12
- package/dist/workflows/builder.js.map +1 -1
- package/dist/workflows/runner.d.ts +55 -2
- package/dist/workflows/runner.d.ts.map +1 -1
- package/dist/workflows/runner.js +1370 -108
- package/dist/workflows/runner.js.map +1 -1
- package/dist/workflows/trajectory.d.ts +6 -2
- package/dist/workflows/trajectory.d.ts.map +1 -1
- package/dist/workflows/trajectory.js +37 -2
- package/dist/workflows/trajectory.js.map +1 -1
- package/dist/workflows/types.d.ts +88 -0
- package/dist/workflows/types.d.ts.map +1 -1
- package/dist/workflows/types.js.map +1 -1
- package/dist/workflows/validator.js +1 -1
- package/dist/workflows/validator.js.map +1 -1
- package/package.json +2 -2
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Completion Pipeline tests for Point-Person-Led Completion spec.
|
|
3
|
+
*
|
|
4
|
+
* Validates:
|
|
5
|
+
* 1. Evidence-based completion (verification passes without marker)
|
|
6
|
+
* 2. Owner decision parsing (OWNER_DECISION: COMPLETE/INCOMPLETE_RETRY/INCOMPLETE_FAIL)
|
|
7
|
+
* 3. Tolerant review parsing (accepts semantic equivalents)
|
|
8
|
+
* 4. Channel evidence contributions (WORKER_DONE signals)
|
|
9
|
+
* 5. Backward compatibility with marker-based workflows
|
|
10
|
+
* 6. Codex/Gemini/Supervisor pattern compatibility
|
|
11
|
+
* 7. Map-reduce workflows remain unaffected
|
|
12
|
+
*/
|
|
13
|
+
export {};
|
|
14
|
+
//# sourceMappingURL=completion-pipeline.test.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"completion-pipeline.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/completion-pipeline.test.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG"}
|