@yansirplus/cli 0.5.17 → 0.5.19
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 +12 -6
- package/agent-catalog/agentOS/SKILL.md +22 -0
- package/agent-catalog/agentOS/references/agent/decision-graph.json +530 -0
- package/agent-catalog/agentOS/references/agent/errors.json +497 -0
- package/agent-catalog/agentOS/references/agent/invariant-matrix.json +337 -0
- package/agent-catalog/agentOS/references/agent/primitives.json +989 -0
- package/agent-catalog/agentOS/references/agent/recipes.json +109 -0
- package/agent-catalog/agentOS/references/agent/start-here.md +25 -0
- package/agent-catalog/agentOS/references/package-map.md +73 -0
- package/agent-catalog/agentOS/references/provenance.json +251 -0
- package/agent-catalog/agentOS/references/public-api/cli.md +20 -0
- package/agent-catalog/agentOS/references/public-api/client.md +90 -0
- package/agent-catalog/agentOS/references/public-api/core.md +1907 -0
- package/agent-catalog/agentOS/references/public-api/runtime.md +843 -0
- package/dist/build/agent-authoring/config.d.ts +20 -5
- package/dist/build/agent-authoring/config.js +132 -32
- package/dist/build/agent-authoring/manifest-compiler.d.ts +131 -2
- package/dist/build/agent-authoring/manifest-compiler.js +630 -8
- package/dist/build/agent-authoring/shared.d.ts +2 -0
- package/dist/build/agent-authoring/shared.js +2 -0
- package/dist/build/agent-authoring/static-target.d.ts +6 -3
- package/dist/build/agent-authoring/static-target.js +1900 -281
- package/dist/build/agent-authoring.d.ts +3 -3
- package/dist/build/agent-authoring.js +1 -1
- package/dist/build/build-cli.d.ts +1 -1
- package/dist/build/build-cli.js +1629 -26
- package/dist/check/algorithmic/client-boundary-checks.mjs +3 -34
- package/dist/check/algorithmic/convergence-smoke-checks.mjs +652 -6
- package/dist/check/algorithmic/distribution-checks.mjs +8 -7
- package/dist/check/algorithmic/package-boundary-checks.mjs +3 -2
- package/dist/check/algorithmic/repo-surface-checks.mjs +55 -1
- package/dist/check/algorithmic/static-target-checks.mjs +83 -5
- package/dist/check/algorithmic-checks.mjs +10 -17
- package/dist/check/default-gate.mjs +3 -3
- package/dist/check/effect-scan-gate.mjs +121 -0
- package/dist/check/package-graph.mjs +2 -32
- package/dist/consumer-overlay.mjs +1281 -0
- package/dist/lib/public-api-model.mjs +19 -0
- package/dist/lib/repo-source-files.mjs +26 -0
- package/dist/lib/ts-module-loader.mjs +44 -0
- package/dist/lib/workspace-manifest.mjs +77 -0
- package/dist/main.mjs +171 -21
- package/dist/release-status.mjs +515 -0
- package/package.json +8 -4
- package/dist/check/check-coverage.mjs +0 -231
- package/dist/generate/generate-agent-docs.mjs +0 -435
- package/dist/generate/generate-carrier-reference.mjs +0 -514
- package/dist/generate/generate-docs.mjs +0 -345
- package/dist/generate/generate-effect-skill-manifests.mjs +0 -193
- package/dist/generate/project-docs-site.mjs +0 -190
- package/dist/lib/boundary-rules.mjs +0 -63
- package/dist/lib/capability-routes.mjs +0 -354
- package/dist/lib/projection-sink.mjs +0 -113
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
{
|
|
2
|
+
"generatedBy": "packages/cli/src/generate/generate-agent-docs.mjs",
|
|
3
|
+
"source": [
|
|
4
|
+
"docs/agent/invariants.source.json",
|
|
5
|
+
"exported TSDoc @agentosInvariant tags",
|
|
6
|
+
"docs/agent/error-metadata.source.json"
|
|
7
|
+
],
|
|
8
|
+
"invariants": [
|
|
9
|
+
{
|
|
10
|
+
"invariant": "invariant.algebra.type-or-boot-proof",
|
|
11
|
+
"statement": "Already-clear algebra must become type-proof or boot-proof.",
|
|
12
|
+
"primitives": [
|
|
13
|
+
"primitive.kernel.defineProductTool",
|
|
14
|
+
"primitive.kernel.EffectClaim",
|
|
15
|
+
"primitive.kernel.ExecutionDomain",
|
|
16
|
+
"primitive.kernel.ExecutionDomainDeclaration",
|
|
17
|
+
"primitive.kernel.ExecutionDomainRegistry",
|
|
18
|
+
"primitive.kernel.ExecutionDomainReplayLaw",
|
|
19
|
+
"primitive.kernel.IndeterminateClaim",
|
|
20
|
+
"primitive.kernel.LivedClaim",
|
|
21
|
+
"primitive.kernel.PreClaim",
|
|
22
|
+
"primitive.kernel.RejectedClaim",
|
|
23
|
+
"primitive.kernel.Tool",
|
|
24
|
+
"primitive.kernel.ToolAdmitInput",
|
|
25
|
+
"primitive.kernel.ToolExecution",
|
|
26
|
+
"primitive.kernel.ToolExecutionContext"
|
|
27
|
+
],
|
|
28
|
+
"errors": ["agent_os.invalid_resource_amount"],
|
|
29
|
+
"docs": [
|
|
30
|
+
"docs/boundary-contract.md",
|
|
31
|
+
"docs/concepts/tool-execution-domain.md",
|
|
32
|
+
"docs/packages/runtime.md",
|
|
33
|
+
"docs/README.md"
|
|
34
|
+
],
|
|
35
|
+
"tests": [
|
|
36
|
+
"packages/core/test/kernel/effect-claim.test.ts",
|
|
37
|
+
"packages/core/test/kernel/tools.test.ts"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"invariant": "invariant.ledger.single-commit-source",
|
|
42
|
+
"statement": "Every ledger fact has one commit primitive as its source generator.",
|
|
43
|
+
"primitives": ["primitive.runtime.Ledger", "primitive.runtime.LedgerCommitEventSpec"],
|
|
44
|
+
"errors": [
|
|
45
|
+
"agent_os.driver_ledger_commit_shape_mismatch",
|
|
46
|
+
"agent_os.durable_trigger_acquire_cancelled",
|
|
47
|
+
"agent_os.durable_trigger_commit_returned_thenable",
|
|
48
|
+
"agent_os.durable_trigger_drain_limit_exceeded",
|
|
49
|
+
"agent_os.invalid_schedule_at",
|
|
50
|
+
"agent_os.json_stringify_error",
|
|
51
|
+
"agent_os.resource_insufficient",
|
|
52
|
+
"agent_os.resource_reservation_closed",
|
|
53
|
+
"agent_os.resource_reservation_not_found",
|
|
54
|
+
"agent_os.runtime_ledger_transition_rejected",
|
|
55
|
+
"agent_os.runtime_storage_error",
|
|
56
|
+
"agent_os.sql_error",
|
|
57
|
+
"agent_os.trigger_factory_error",
|
|
58
|
+
"agent_os.unregistered_durable_trigger_kind"
|
|
59
|
+
],
|
|
60
|
+
"docs": [
|
|
61
|
+
"docs/concepts/durable-process-algebra.md",
|
|
62
|
+
"docs/concepts/durable-truth.md",
|
|
63
|
+
"docs/packages/runtime.md"
|
|
64
|
+
],
|
|
65
|
+
"tests": [
|
|
66
|
+
"packages/runtime/test/cloudflare/ledger-commit-contract.test.ts",
|
|
67
|
+
"packages/runtime/test/in-memory/commit-fanout-contract.test.ts"
|
|
68
|
+
]
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"invariant": "invariant.algebra.single-code-source",
|
|
72
|
+
"statement": "Every algebra has one code source; projections and docs derive from that source.",
|
|
73
|
+
"primitives": [
|
|
74
|
+
"primitive.agent-authoring.compileAgentTree",
|
|
75
|
+
"primitive.agent-authoring.linkWorkspaceStaticTarget",
|
|
76
|
+
"primitive.kernel.AgentSchema",
|
|
77
|
+
"primitive.kernel.AgentSchemaProjections",
|
|
78
|
+
"primitive.kernel.projectAgentSchema"
|
|
79
|
+
],
|
|
80
|
+
"errors": [
|
|
81
|
+
"agent_os.effect_ai_json_encode_failed",
|
|
82
|
+
"agent_os.effect_ai_missing_usage",
|
|
83
|
+
"agent_os.effect_ai_provider_executed_tool_rejected",
|
|
84
|
+
"agent_os.effect_ai_tool_handler_called",
|
|
85
|
+
"agent_os.effect_ai_unsupported_output_part",
|
|
86
|
+
"agent_os.projection_definition_error",
|
|
87
|
+
"agent_os.projection_run_failed",
|
|
88
|
+
"agent_os.provider_output_decode_error"
|
|
89
|
+
],
|
|
90
|
+
"docs": [
|
|
91
|
+
"docs/concepts/agent-schema.md",
|
|
92
|
+
"docs/concepts/materialized-projections.md",
|
|
93
|
+
"docs/guides/build-natural-language-workspace-agent.md",
|
|
94
|
+
"docs/packages/runtime.md",
|
|
95
|
+
"docs/verification.md"
|
|
96
|
+
],
|
|
97
|
+
"tests": [
|
|
98
|
+
"packages/core/test/runtime-protocol/runtime-events.test.ts",
|
|
99
|
+
"packages/cli/src/check/algorithmic-checks.mjs"
|
|
100
|
+
]
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"invariant": "invariant.boundary.runtime-validation-external-only",
|
|
104
|
+
"statement": "Runtime validation is only for unknown external input, not internally constructed states.",
|
|
105
|
+
"primitives": ["primitive.kernel.EffectClaim", "primitive.llm_protocol.LlmTransport"],
|
|
106
|
+
"errors": [
|
|
107
|
+
"agent_os.aead_sealed_codec_failure",
|
|
108
|
+
"agent_os.backend_protocol_parse_failure",
|
|
109
|
+
"agent_os.dispatch_payload_parse_failure",
|
|
110
|
+
"agent_os.effect_ai_aborted",
|
|
111
|
+
"agent_os.effect_ai_prompt_error",
|
|
112
|
+
"agent_os.effect_ai_unsupported_route",
|
|
113
|
+
"agent_os.invalid_trace_context",
|
|
114
|
+
"agent_os.llm_call_timed_out",
|
|
115
|
+
"agent_os.llm_call_timeout",
|
|
116
|
+
"agent_os.postgres_harness_error",
|
|
117
|
+
"agent_os.provider_http_failure",
|
|
118
|
+
"agent_os.ref_resolution_failed",
|
|
119
|
+
"agent_os.rpc_method_missing",
|
|
120
|
+
"agent_os.rpc_untyped_error",
|
|
121
|
+
"agent_os.witness_port_rejected"
|
|
122
|
+
],
|
|
123
|
+
"docs": [
|
|
124
|
+
"docs/boundary-contract.md",
|
|
125
|
+
"docs/concepts/agent-schema.md",
|
|
126
|
+
"docs/concepts/carriers-and-material.md",
|
|
127
|
+
"docs/packages/core.md",
|
|
128
|
+
"docs/packages/runtime.md",
|
|
129
|
+
"docs/README.md"
|
|
130
|
+
],
|
|
131
|
+
"tests": [
|
|
132
|
+
"packages/core/test/kernel/effect-claim.test.ts",
|
|
133
|
+
"packages/core/test/runtime-protocol/runtime-events.test.ts"
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"invariant": "invariant.boundary.owner-owned-safe-projection",
|
|
138
|
+
"statement": "Browser-safe ledger event views are projected by the fact owner before any wire adapter or product renderer consumes them.",
|
|
139
|
+
"primitives": [
|
|
140
|
+
"primitive.ag-ui.projectLedgerEventToAgUiEnvelope",
|
|
141
|
+
"primitive.ag-ui.projectLedgerSseToAgUiSse",
|
|
142
|
+
"primitive.kernel.SafeLedgerEvent"
|
|
143
|
+
],
|
|
144
|
+
"errors": [],
|
|
145
|
+
"docs": ["docs/concepts/ag-ui-wire-adapter.md", "docs/concepts/durable-truth.md"],
|
|
146
|
+
"tests": [
|
|
147
|
+
"packages/core/test/runtime-protocol/runtime-events.test.ts",
|
|
148
|
+
"packages/runtime/test/cloudflare/workspace-host-helpers.test.ts"
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"invariant": "invariant.capability.single-generator",
|
|
153
|
+
"statement": "CapabilityContract installation facts are validated by defineCapability(): capabilityId must equal carrier.ownerId, sourcePackageName is derived from the carrier, and install output is a description rather than backend state mutation.",
|
|
154
|
+
"primitives": ["primitive.runtime.defineCapability"],
|
|
155
|
+
"errors": [],
|
|
156
|
+
"docs": ["docs/advanced/capability-authoring/define-capability.md"],
|
|
157
|
+
"tests": ["packages/runtime/test/capability/capability-contract.test.ts"]
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"invariant": "invariant.host.fact-owner",
|
|
161
|
+
"statement": "Host profiles are the single source of truth for environment-provided facts; capabilities may only require facts declared by host profiles, and materialized host facts enter capability code only through CapabilityInstallContext.host.",
|
|
162
|
+
"primitives": ["primitive.runtime.defineHost"],
|
|
163
|
+
"errors": [],
|
|
164
|
+
"docs": ["docs/advanced/capability-authoring/define-host.md"],
|
|
165
|
+
"tests": ["packages/runtime/test/capability/resolve.test.ts"]
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"invariant": "invariant.resolve.single-assembly-point",
|
|
169
|
+
"statement": "For CapabilityContract inputs, resolveRuntime is the assembly point: requirement checks run before install, install outputs are globally validated before backend construction, and capability install functions do not receive backend state.",
|
|
170
|
+
"primitives": ["primitive.runtime.resolveRuntime"],
|
|
171
|
+
"errors": [],
|
|
172
|
+
"docs": ["docs/guides/capabilities/resolve-runtime.md"],
|
|
173
|
+
"tests": ["packages/runtime/test/capability/resolve.test.ts"]
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"invariant": "invariant.d10.truth-identity",
|
|
177
|
+
"statement": "For each scopeRef and effectAuthorityRef, ledger facts are the only durable truth and observable state is recomputed from those facts.",
|
|
178
|
+
"primitives": [
|
|
179
|
+
"primitive.kernel.AuthorityRef",
|
|
180
|
+
"primitive.kernel.BoundaryContract",
|
|
181
|
+
"primitive.kernel.BoundaryProjectionContract",
|
|
182
|
+
"primitive.kernel.EffectAuthorityContract",
|
|
183
|
+
"primitive.kernel.LedgerEvent",
|
|
184
|
+
"primitive.kernel.MaterialRef",
|
|
185
|
+
"primitive.kernel.ScopeRef",
|
|
186
|
+
"primitive.kernel.ToolContract",
|
|
187
|
+
"primitive.runtime.defineProjection",
|
|
188
|
+
"primitive.runtime.Ledger",
|
|
189
|
+
"primitive.runtime.LedgerTruthIdentity",
|
|
190
|
+
"primitive.runtime.MaterializedProjectionDefinition",
|
|
191
|
+
"primitive.runtime.MaterializedProjections",
|
|
192
|
+
"primitive.runtime.projectFailureDiagnostics",
|
|
193
|
+
"primitive.runtime.ProjectionIdentifyResult",
|
|
194
|
+
"primitive.runtime.ProjectionReduceContext",
|
|
195
|
+
"primitive.runtime.ProjectionReduceResult",
|
|
196
|
+
"primitive.runtime.projectRunStatus",
|
|
197
|
+
"primitive.runtime.projectRunTrace",
|
|
198
|
+
"primitive.runtime.projectSubmitResult",
|
|
199
|
+
"primitive.runtime.SubmitResult",
|
|
200
|
+
"primitive.runtime.SubmitSpec",
|
|
201
|
+
"primitive.runtime.waitForProjection"
|
|
202
|
+
],
|
|
203
|
+
"errors": [
|
|
204
|
+
"agent_os.boundary_commit_rejected",
|
|
205
|
+
"agent_os.cloudflare_ledger_schema_error",
|
|
206
|
+
"agent_os.dispatch_binding_ref_malformed",
|
|
207
|
+
"agent_os.dispatch_scope_mismatch",
|
|
208
|
+
"agent_os.dispatch_target_not_found",
|
|
209
|
+
"agent_os.missing_submit_run_binding",
|
|
210
|
+
"agent_os.projection_application_error",
|
|
211
|
+
"agent_os.projection_reducer_returned_thenable",
|
|
212
|
+
"agent_os.projection_registry_error",
|
|
213
|
+
"agent_os.projection_wait_timed_out",
|
|
214
|
+
"agent_os.scope_missing",
|
|
215
|
+
"agent_os.stream_identity_error",
|
|
216
|
+
"agent_os.unregistered_projection_kind",
|
|
217
|
+
"agent_os.unsupported_scope_ref"
|
|
218
|
+
],
|
|
219
|
+
"docs": [
|
|
220
|
+
"docs/boundary-contract.md",
|
|
221
|
+
"docs/concepts/carriers-and-material.md",
|
|
222
|
+
"docs/concepts/durable-truth.md",
|
|
223
|
+
"docs/concepts/materialized-projections.md",
|
|
224
|
+
"docs/concepts/tool-execution-domain.md",
|
|
225
|
+
"docs/packages/core.md",
|
|
226
|
+
"docs/packages/runtime.md",
|
|
227
|
+
"docs/tutorials/streaming-chatbot.md"
|
|
228
|
+
],
|
|
229
|
+
"tests": [
|
|
230
|
+
"packages/core/test/backend-protocol/contract/runtime-backend-contract.ts",
|
|
231
|
+
"packages/runtime/test/cloudflare/backend-protocol-contract.test.ts",
|
|
232
|
+
"packages/runtime/test/in-memory/backend-protocol-contract.test.ts"
|
|
233
|
+
]
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"invariant": "invariant.d10.namespace-integrity",
|
|
237
|
+
"statement": "For each factOwnerRef, event kind ownership is declared once; commit injects factOwnerRef and rejects owner/kind mismatch.",
|
|
238
|
+
"primitives": [
|
|
239
|
+
"primitive.kernel.BoundaryContract",
|
|
240
|
+
"primitive.kernel.FactOwnerRef",
|
|
241
|
+
"primitive.kernel.LedgerEvent"
|
|
242
|
+
],
|
|
243
|
+
"errors": [
|
|
244
|
+
"agent_os.boundary_commit_rejected",
|
|
245
|
+
"agent_os.capability_rejected",
|
|
246
|
+
"agent_os.extension_capability_conflict"
|
|
247
|
+
],
|
|
248
|
+
"docs": ["docs/boundary-contract.md", "docs/concepts/durable-truth.md"],
|
|
249
|
+
"tests": [
|
|
250
|
+
"packages/runtime/test/boundary-commit.test.ts",
|
|
251
|
+
"packages/runtime/test/cloudflare/extension-capability.runtime.test.ts"
|
|
252
|
+
]
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"invariant": "invariant.docs.agent-projection",
|
|
256
|
+
"statement": "Agent-facing docs indexes are projections; source JSON and exported TSDoc own routable ids.",
|
|
257
|
+
"primitives": [
|
|
258
|
+
"primitive.agent-authoring.compileAgentTree",
|
|
259
|
+
"primitive.agent-authoring.linkWorkspaceStaticTarget"
|
|
260
|
+
],
|
|
261
|
+
"errors": ["agent_os.projection_sink_failure"],
|
|
262
|
+
"docs": [
|
|
263
|
+
"docs/concepts/materialized-projections.md",
|
|
264
|
+
"docs/guides/build-natural-language-workspace-agent.md",
|
|
265
|
+
"docs/verification.md"
|
|
266
|
+
],
|
|
267
|
+
"tests": [
|
|
268
|
+
"packages/cli/src/generate/generate-docs.mjs",
|
|
269
|
+
"packages/cli/src/check/check-coverage.source.json",
|
|
270
|
+
"packages/cli/src/check/algorithmic-checks.mjs"
|
|
271
|
+
]
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"invariant": "invariant.ag-ui.sse-axis",
|
|
275
|
+
"statement": "AG-UI owns AG-UI frame/envelope projection, generic SSE owns only codec and Response wrapping, and host packages compose the two without reversing the dependency.",
|
|
276
|
+
"primitives": [
|
|
277
|
+
"primitive.cloudflare-do.createCloudflareLedgerAgUiHistorySseResponse",
|
|
278
|
+
"primitive.cloudflare-do.createCloudflareLedgerAgUiSseResponse"
|
|
279
|
+
],
|
|
280
|
+
"errors": [],
|
|
281
|
+
"docs": ["docs/concepts/ag-ui-wire-adapter.md", "docs/packages/runtime.md"],
|
|
282
|
+
"tests": [
|
|
283
|
+
"packages/cli/src/check/algorithmic-checks.mjs",
|
|
284
|
+
"packages/runtime/test/cloudflare/workspace-host-helpers.test.ts"
|
|
285
|
+
]
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"invariant": "invariant.workspace-op.carrier-single-writer",
|
|
289
|
+
"statement": "Only the workspace-op carrier constructs workspace_op.* terminal payloads; host providers execute requested facts and commit through the carrier boundary capability.",
|
|
290
|
+
"primitives": [],
|
|
291
|
+
"errors": [],
|
|
292
|
+
"docs": ["docs/packages/runtime.md"],
|
|
293
|
+
"tests": [
|
|
294
|
+
"packages/runtime/test/cloudflare/workspace-host-helpers.test.ts",
|
|
295
|
+
"packages/runtime/test/submit-agent-runtime-events.test.ts"
|
|
296
|
+
]
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"invariant": "invariant.workspace-job.host-workspace-lifecycle",
|
|
300
|
+
"statement": "Cloudflare hosts resolve one provider-neutral WorkspaceEnv lease per scope/runId and keep Sandbox binding validation and cleanup outside product modules.",
|
|
301
|
+
"primitives": [],
|
|
302
|
+
"errors": [],
|
|
303
|
+
"docs": ["docs/packages/runtime.md"],
|
|
304
|
+
"tests": ["packages/runtime/test/cloudflare/workspace-host-helpers.test.ts"]
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"invariant": "invariant.workspace-job.verified-terminal",
|
|
308
|
+
"statement": "Workspace job deliverables are terminal projections joined through workspace_job.terminal_finalized; written, readback, hashed, verified, and delivered terminal bytes flow through one closed pipeline, and verifier repair attempts are aggregated by agentOS before a job terminal projection is delivered.",
|
|
309
|
+
"primitives": [
|
|
310
|
+
"primitive.cloudflare-do.createCloudflareWorkspaceJobResponse",
|
|
311
|
+
"primitive.runtime.runWorkspaceJobEffect"
|
|
312
|
+
],
|
|
313
|
+
"errors": [
|
|
314
|
+
"agent_os.workspace_job_candidate_missing",
|
|
315
|
+
"agent_os.workspace_job_data_plane_failed",
|
|
316
|
+
"agent_os.workspace_job_run_id_mismatch",
|
|
317
|
+
"agent_os.workspace_job_verifier_failed"
|
|
318
|
+
],
|
|
319
|
+
"docs": ["docs/packages/runtime.md"],
|
|
320
|
+
"tests": [
|
|
321
|
+
"packages/runtime/test/workspace-job.test.ts",
|
|
322
|
+
"packages/runtime/test/cloudflare/workspace-host-helpers.test.ts"
|
|
323
|
+
]
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"invariant": "invariant.workspace-job.failure-observability-join",
|
|
327
|
+
"statement": "Workspace job failure explanation is derived by runtime composition from workspace-job terminal facts joined with runtime diagnostic projections; carrier facts remain terminal vocabulary and consumer projections do not expose runtime numeric run ids.",
|
|
328
|
+
"primitives": ["primitive.runtime.projectWorkspaceJobObservability"],
|
|
329
|
+
"errors": [],
|
|
330
|
+
"docs": ["docs/packages/runtime.md"],
|
|
331
|
+
"tests": [
|
|
332
|
+
"packages/runtime/test/workspace-job.test.ts",
|
|
333
|
+
"packages/runtime/test/cloudflare/workspace-host-helpers.test.ts"
|
|
334
|
+
]
|
|
335
|
+
}
|
|
336
|
+
]
|
|
337
|
+
}
|