@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.
Files changed (53) hide show
  1. package/README.md +12 -6
  2. package/agent-catalog/agentOS/SKILL.md +22 -0
  3. package/agent-catalog/agentOS/references/agent/decision-graph.json +530 -0
  4. package/agent-catalog/agentOS/references/agent/errors.json +497 -0
  5. package/agent-catalog/agentOS/references/agent/invariant-matrix.json +337 -0
  6. package/agent-catalog/agentOS/references/agent/primitives.json +989 -0
  7. package/agent-catalog/agentOS/references/agent/recipes.json +109 -0
  8. package/agent-catalog/agentOS/references/agent/start-here.md +25 -0
  9. package/agent-catalog/agentOS/references/package-map.md +73 -0
  10. package/agent-catalog/agentOS/references/provenance.json +251 -0
  11. package/agent-catalog/agentOS/references/public-api/cli.md +20 -0
  12. package/agent-catalog/agentOS/references/public-api/client.md +90 -0
  13. package/agent-catalog/agentOS/references/public-api/core.md +1907 -0
  14. package/agent-catalog/agentOS/references/public-api/runtime.md +843 -0
  15. package/dist/build/agent-authoring/config.d.ts +20 -5
  16. package/dist/build/agent-authoring/config.js +132 -32
  17. package/dist/build/agent-authoring/manifest-compiler.d.ts +131 -2
  18. package/dist/build/agent-authoring/manifest-compiler.js +630 -8
  19. package/dist/build/agent-authoring/shared.d.ts +2 -0
  20. package/dist/build/agent-authoring/shared.js +2 -0
  21. package/dist/build/agent-authoring/static-target.d.ts +6 -3
  22. package/dist/build/agent-authoring/static-target.js +1900 -281
  23. package/dist/build/agent-authoring.d.ts +3 -3
  24. package/dist/build/agent-authoring.js +1 -1
  25. package/dist/build/build-cli.d.ts +1 -1
  26. package/dist/build/build-cli.js +1629 -26
  27. package/dist/check/algorithmic/client-boundary-checks.mjs +3 -34
  28. package/dist/check/algorithmic/convergence-smoke-checks.mjs +652 -6
  29. package/dist/check/algorithmic/distribution-checks.mjs +8 -7
  30. package/dist/check/algorithmic/package-boundary-checks.mjs +3 -2
  31. package/dist/check/algorithmic/repo-surface-checks.mjs +55 -1
  32. package/dist/check/algorithmic/static-target-checks.mjs +83 -5
  33. package/dist/check/algorithmic-checks.mjs +10 -17
  34. package/dist/check/default-gate.mjs +3 -3
  35. package/dist/check/effect-scan-gate.mjs +121 -0
  36. package/dist/check/package-graph.mjs +2 -32
  37. package/dist/consumer-overlay.mjs +1281 -0
  38. package/dist/lib/public-api-model.mjs +19 -0
  39. package/dist/lib/repo-source-files.mjs +26 -0
  40. package/dist/lib/ts-module-loader.mjs +44 -0
  41. package/dist/lib/workspace-manifest.mjs +77 -0
  42. package/dist/main.mjs +171 -21
  43. package/dist/release-status.mjs +515 -0
  44. package/package.json +8 -4
  45. package/dist/check/check-coverage.mjs +0 -231
  46. package/dist/generate/generate-agent-docs.mjs +0 -435
  47. package/dist/generate/generate-carrier-reference.mjs +0 -514
  48. package/dist/generate/generate-docs.mjs +0 -345
  49. package/dist/generate/generate-effect-skill-manifests.mjs +0 -193
  50. package/dist/generate/project-docs-site.mjs +0 -190
  51. package/dist/lib/boundary-rules.mjs +0 -63
  52. package/dist/lib/capability-routes.mjs +0 -354
  53. package/dist/lib/projection-sink.mjs +0 -113
@@ -0,0 +1,843 @@
1
+ # @yansirplus/runtime Public API Intent
2
+
3
+ ## Local Runtime Boundary
4
+
5
+ `./local:createLocalAgentRuntime` is the public dev/test harness. It exposes the
6
+ local runtime as `submit`, `events`, `diagnostics`, and `inspect` over the same
7
+ lowering substrate used by generated local targets.
8
+
9
+ `./local:lowerLocalAgentRuntime` is the product lowerer used by generated
10
+ `node@1` `LocalAgentApp` output. Use it, or the generated app, when product
11
+ sessions, workflows, channels, schedules, dynamic capability wiring, generated
12
+ target identity, or `submitWithProductLink` are part of the boundary. It is not
13
+ a license to duplicate raw `resolveRuntime + submitAgentEffect +
14
+ workspaceOperations` assembly in product code.
15
+
16
+ Product links are runtime evidence links only. agentOS owns runtime run ids,
17
+ terminal runtime status, tool events, diagnostics, and evidence correlation.
18
+ Product applications own product control-plane facts such as Change, Candidate,
19
+ Grant, Intent, Receipt, approval, deployment, and product receipt records.
20
+
21
+ ## External Effect Boundary
22
+
23
+ `./external-effect` is the public vocabulary-neutral runner for one
24
+ idempotent external-effect attempt. It owns only the orchestration join between
25
+ "no existing attempt" and "found existing attempt" over caller-owned `Event`,
26
+ `Request`, `Projection`, and `AttemptKey` types.
27
+
28
+ `defineExternalEffectAttempt` is only a type-fixing helper over the same
29
+ runner. It lets callers bind their `Spec`, `Event`, `Projection`, `Request`,
30
+ and `AttemptKey` algebra once while leaving the Effect `E` and `R` channels to
31
+ the supplied effects.
32
+
33
+ It does not own claim envelopes, ledger event records, receipt envelopes,
34
+ witness models, record stores, idempotency-key derivation, provider material, or
35
+ product control-plane vocabulary. Concrete callers supply those facts through
36
+ their own carrier/projection contracts.
37
+
38
+ `./testing` exposes external-effect conformance as an adapter-driven report.
39
+ Adapters must map their caller-owned events, requests, projections, witnesses,
40
+ receipts, and external-system outcomes to each scenario's required observation
41
+ keys. The helper validates the report shape; it does not define product facts or
42
+ durable-operation vocabulary.
43
+
44
+ ## Public exports
45
+
46
+ - `.:AcquireCtx`
47
+ - `.:Admission`
48
+ - `.:AgentSessionProjection`
49
+ - `.:AgentSessionStatus`
50
+ - `.:AgentSessionTurnProjection`
51
+ - `.:AgentSessionTurnLinksProjection`
52
+ - `.:AgentSessionTurnRuntimeLink`
53
+ - `.:AnyAttachedStreamHandler`
54
+ - `.:AnyDurableTrigger`
55
+ - `.:AnyMaterializedProjectionDefinition`
56
+ - `.:applyProjectionEvent`
57
+ - `.:applyProjectionEventResult`
58
+ - `.:AttachedStreamCancellationMode`
59
+ - `.:AttachedStreamCancelResult`
60
+ - `.:AttachedStreamCancelSpec`
61
+ - `.:AttachedStreamCtx`
62
+ - `.:AttachedStreamDetachMode`
63
+ - `.:AttachedStreamHandler`
64
+ - `.:AttachedStreamHandlerOutput`
65
+ - `.:AttachedStreamOutputSource`
66
+ - `.:attachedStreamParseFail`
67
+ - `.:attachedStreamParseOk`
68
+ - `.:AttachedStreamParseResult`
69
+ - `.:AttachedStreamQueue`
70
+ - `.:AttachedStreamRegistry`
71
+ - `.:AttachedStreamRegistryMap`
72
+ - `.:AttachedStreams`
73
+ - `.:AttachedStreamSendResult`
74
+ - `.:AttachedStreamSendSpec`
75
+ - `.:AttachedStreamServiceError`
76
+ - `.:AttachedStreamSession`
77
+ - `.:AttachedStreamsService`
78
+ - `.:AttachedStreamStartSpec`
79
+ - `.:AttachedStreamTerminal`
80
+ - `.:AttachedStreamTerminalCommitAck`
81
+ - `.:AttachedStreamTerminalCommitSpec`
82
+ - `.:AttachedStreamTx`
83
+ - `.:bindWorkspaceToolsForRuntime`
84
+ - `.:BindWorkspaceToolsForRuntimeOptions`
85
+ - `.:boundaryCommitIdentity`
86
+ - `.:BoundaryCommitIdentity`
87
+ - `.:BoundaryCommitRejected`
88
+ - `.:BoundaryEvents`
89
+ - `.:CapabilityContract`
90
+ - `.:CapabilityEventHandlerContext`
91
+ - `.:CapabilityInstallContext`
92
+ - `.:CapabilityInstallation`
93
+ - `.:CapabilityRequirement`
94
+ - `.:CapabilityRequirements`
95
+ - `.:CapabilityRuntimeHandle`
96
+ - `.:commitBoundaryEvent`
97
+ - `.:ContinuationProjection`
98
+ - `.:ContinuationResumeDecisionResult`
99
+ - `.:createAttachedStreamQueue`
100
+ - `.:createAttachedStreamSseResponse`
101
+ - `.:createSseHttpResponse`
102
+ - `.:createSseHttpTextResponse`
103
+ - `.:createWorkspaceEnv`
104
+ - `.:CreateWorkspaceEnvOptions`
105
+ - `.:createWorkspaceTools`
106
+ - `.:CreateWorkspaceToolsOptions`
107
+ - `.:decodeSseHttpEvents`
108
+ - `.:decodeStructuredOutputFromItems`
109
+ - `.:DEFAULT_TRIGGER_ACQUIRE_DEADLINE_MS`
110
+ - `.:DEFAULT_TRIGGER_DRAIN_MAX_ITERATIONS`
111
+ - `.:defineCapability`
112
+ - `.:DefineCapabilitySpec`
113
+ - `.:defineHost`
114
+ - `.:DefineHostSpec`
115
+ - `.:defineProjection`
116
+ - `.:defineWorkspaceAgentMount`
117
+ - `.:diffWorkspaceFiles`
118
+ - `.:Dispatch`
119
+ - `.:drainTriggerPumpUntilQuiet`
120
+ - `.:DurableTrigger`
121
+ - `.:DurableTriggerCancellationMode`
122
+ - `.:DurableTriggerRegistry`
123
+ - `.:editWorkspaceFile`
124
+ - `.:EditWorkspaceFileOptions`
125
+ - `.:encodeSseHttpData`
126
+ - `.:encodeSseHttpEvent`
127
+ - `.:encodeSseHttpJsonEvent`
128
+ - `.:fingerprintFailureDiagnostic`
129
+ - `.:getAttachedStreamHandler`
130
+ - `.:getDurableTrigger`
131
+ - `.:getProjection`
132
+ - `.:globWorkspaceFiles`
133
+ - `.:GlobWorkspaceFilesOptions`
134
+ - `.:grepWorkspaceFiles`
135
+ - `.:GrepWorkspaceFilesOptions`
136
+ - `.:HostProfile`
137
+ - `.:HostProvidedFact`
138
+ - `.:InputRequestProjection`
139
+ - `.:InputRequestResumeDecisionResult`
140
+ - `.:InspectionBindingSummary`
141
+ - `.:InspectionCompileSection`
142
+ - `.:InspectionExecutionDomain`
143
+ - `.:InspectionExecutionDomainBinding`
144
+ - `.:InspectionExecutionDomainReplayLaw`
145
+ - `.:InspectionGraphRegistration`
146
+ - `.:InspectionHostFactStatus`
147
+ - `.:InspectionManifestSummary`
148
+ - `.:InspectionNamedBinding`
149
+ - `.:InspectionReceiptBackedToolBinding`
150
+ - `.:InspectionResolveSection`
151
+ - `.:InspectionRuntimeSection`
152
+ - `.:InspectionSnapshot`
153
+ - `.:InspectionToolAuthority`
154
+ - `.:InspectionToolBinding`
155
+ - `.:InspectionToolExecution`
156
+ - `.:InspectionToolExecutionDeterministic`
157
+ - `.:InspectionToolExecutionExternal`
158
+ - `.:InspectionToolIntentBinding`
159
+ - `.:InspectionUnavailableSection`
160
+ - `.:isWorkspaceAgentCommandName`
161
+ - `.:isWorkspaceAgentProjectionName`
162
+ - `.:Ledger`
163
+ - `.:makeAttachedStreamRegistry`
164
+ - `.:MakeAttachedStreamRegistryOptions`
165
+ - `.:makeAttachedStreamService`
166
+ - `.:MakeAttachedStreamServiceSpec`
167
+ - `.:makeDurableTriggerRegistry`
168
+ - `.:makeProjectionRegistry`
169
+ - `.:makeProjectionRegistryResult`
170
+ - `.:makeWitnessPort`
171
+ - `.:MaterializedProjectionDefinition`
172
+ - `.:MaterializedProjectionEventIdentity`
173
+ - `.:MaterializedProjectionGetSpec`
174
+ - `.:MaterializedProjectionListSpec`
175
+ - `.:MaterializedProjectionRebuildResult`
176
+ - `.:MaterializedProjectionRegistry`
177
+ - `.:MaterializedProjectionRow`
178
+ - `.:MaterializedProjections`
179
+ - `.:MaterializedProjectionStatus`
180
+ - `.:normalizeWorkspaceToolPath`
181
+ - `.:NormalizeWorkspaceToolPathOptions`
182
+ - `.:nodeHost`
183
+ - `.:parseSseHttpEventBlock`
184
+ - `.:projectAgentSession`
185
+ - `.:projectAgentSessionTurnLinks`
186
+ - `.:projectContinuation`
187
+ - `.:projectContinuationRefs`
188
+ - `.:projectInputRequest`
189
+ - `.:projectInputRequests`
190
+ - `.:ProjectInspectionSnapshotInput`
191
+ - `.:projectInspectionSnapshot`
192
+ - `.:ProjectionApplicationError`
193
+ - `.:ProjectionApplyEventResult`
194
+ - `.:ProjectionApplyResult`
195
+ - `.:ProjectionCurrentLookup`
196
+ - `.:ProjectionCurrentRow`
197
+ - `.:projectionDelete`
198
+ - `.:ProjectionDelete`
199
+ - `.:projectionFail`
200
+ - `.:ProjectionFail`
201
+ - `.:ProjectionIdentifyMalformed`
202
+ - `.:ProjectionIdentifyOk`
203
+ - `.:ProjectionIdentifyResult`
204
+ - `.:ProjectionIdentifySkip`
205
+ - `.:projectionIdentity`
206
+ - `.:projectionKeep`
207
+ - `.:ProjectionKeep`
208
+ - `.:projectionMalformed`
209
+ - `.:projectionPut`
210
+ - `.:ProjectionPut`
211
+ - `.:ProjectionReduceContext`
212
+ - `.:ProjectionReduceResult`
213
+ - `.:ProjectionReducerReturnedThenable`
214
+ - `.:ProjectionRegistry`
215
+ - `.:ProjectionRegistryBuildResult`
216
+ - `.:ProjectionRegistryError`
217
+ - `.:projectionSkip`
218
+ - `.:ProjectionStatus`
219
+ - `.:ProjectionWaitSpec`
220
+ - `.:ProjectionWaitTimedOut`
221
+ - `.:PreflightDiagnostic`
222
+ - `.:PreflightDiagnosticSink`
223
+ - `.:projectRecoveryAttemptBudget`
224
+ - `.:projectRunsPage`
225
+ - `.:projectRunInspection`
226
+ - `.:projectRunStatus`
227
+ - `.:projectRunTrace`
228
+ - `.:projectSubmitResult`
229
+ - `.:projectTelemetryEventTree`
230
+ - `.:projectWorkflowRun`
231
+ - `.:projectWorkflowRunLinks`
232
+ - `.:projectWorkspaceJobObservability`
233
+ - `.:Quota`
234
+ - `.:recordLedgerPortEvent`
235
+ - `.:recordLedgerPortEvents`
236
+ - `.:ResolvedCapabilityEventHandlerFactory`
237
+ - `.:ResolvedCapabilityInstallGraph`
238
+ - `.:ResolvedHostFacts`
239
+ - `.:ResolvedRuntime`
240
+ - `.:ResolveRuntimeInstallGraphResult`
241
+ - `.:ResolveRuntimeOptions`
242
+ - `.:ResolveRuntimeResult`
243
+ - `.:resolveRuntime`
244
+ - `.:resolveRuntimeInstallGraph`
245
+ - `.:RunInspection`
246
+ - `.:RunInspectionDiagnostic`
247
+ - `.:Resources`
248
+ - `.:responseToSseHttpChunks`
249
+ - `.:RUN_BEARING_KINDS`
250
+ - `.:RUNTIME_DIAGNOSTIC_EVENTS`
251
+ - `.:RUNTIME_DIAGNOSTIC_EVENT_PREFIX`
252
+ - `.:RUNTIME_DIAGNOSTIC_FACT_OWNER`
253
+ - `.:RUNTIME_DIAGNOSTIC_KIND`
254
+ - `.:RUNTIME_DIAGNOSTIC_RESERVED_KINDS`
255
+ - `.:runtimeDiagnosticBoundaryContract`
256
+ - `.:runtimeDiagnosticBoundaryPackage`
257
+ - `.:runtimeDiagnosticCarrier`
258
+ - `.:runtimeDiagnosticSettlementContract`
259
+ - `.:runSynchronousAttachedStreamCommit`
260
+ - `.:runSynchronousTriggerCommit`
261
+ - `.:runtimeStorageError`
262
+ - `.:RuntimeStorageError`
263
+ - `.:RuntimeStorageOperation`
264
+ - `.:runtimeStorageOrJsonError`
265
+ - `.:runWorkspaceJobEffect`
266
+ - `.:RunWorkspaceJobSpec`
267
+ - `.:scheduledEventTrigger`
268
+ - `.:Scheduler`
269
+ - `.:settleToolAdmissionRejected`
270
+ - `.:settleToolExecuted`
271
+ - `.:settleToolExecutionRejected`
272
+ - `.:settleToolPolicyRejected`
273
+ - `.:SSE_HTTP_CONTENT_TYPE`
274
+ - `.:SseHttpChunk`
275
+ - `.:SseHttpEvent`
276
+ - `.:SseHttpResponseOptions`
277
+ - `.:SseHttpSource`
278
+ - `.:StructuredDecodeResult`
279
+ - `.:submitResumeDecisionFromContinuationProjection`
280
+ - `.:submitResumeDecisionFromInputRequestProjection`
281
+ - `.:Tool`
282
+ - `.:ToolDefinition`
283
+ - `.:toolErrorReason`
284
+ - `.:toolExecutionRejectionKind`
285
+ - `.:toolSettlementContract`
286
+ - `.:TriggerCancellation`
287
+ - `.:TriggerCancelResult`
288
+ - `.:TriggerCancelSpec`
289
+ - `.:TriggerDrainResult`
290
+ - `.:TriggerDrainUntilQuietOptions`
291
+ - `.:TriggerDrainUntilQuietResult`
292
+ - `.:TriggerEventSpec`
293
+ - `.:TriggerIntentSpec`
294
+ - `.:triggerParseFail`
295
+ - `.:triggerParseOk`
296
+ - `.:TriggerParseResult`
297
+ - `.:TriggerPump`
298
+ - `.:TriggerRegistry`
299
+ - `.:TriggerStuckResult`
300
+ - `.:TriggerStuckRow`
301
+ - `.:TriggerTx`
302
+ - `.:UnregisteredProjectionKind`
303
+ - `.:validateBoundaryEventPayload`
304
+ - `.:validateCommittedBoundaryEvent`
305
+ - `.:waitForProjection`
306
+ - `.:walkWorkspaceFiles`
307
+ - `.:WalkWorkspaceFilesOptions`
308
+ - `.:WitnessPort`
309
+ - `.:WitnessPortIssue`
310
+ - `.:WitnessPortRejected`
311
+ - `.:WitnessPortService`
312
+ - `.:WitnessRequest`
313
+ - `.:WorkflowRunAttemptProjection`
314
+ - `.:WorkflowRunError`
315
+ - `.:WorkflowRunLinksProjection`
316
+ - `.:WorkflowRunProjection`
317
+ - `.:WorkflowRunRuntimeLink`
318
+ - `.:WorkflowRunStatus`
319
+ - `.:WORKSPACE_AGENT_COMMAND`
320
+ - `.:WORKSPACE_AGENT_PROJECTION`
321
+ - `.:WORKSPACE_AGENT_PROJECTION_SCHEMA`
322
+ - `.:WORKSPACE_OPERATION_HOST_FACT`
323
+ - `.:WORKSPACE_OP_FACT_OWNER`
324
+ - `.:WORKSPACE_OP_KIND`
325
+ - `.:WORKSPACE_OP_PROJECTION_KIND`
326
+ - `.:workspaceOperations`
327
+ - `.:WorkspaceOperationBindingEnvResolverInput`
328
+ - `.:WorkspaceOperationEnvResolver`
329
+ - `.:WorkspaceOperationEnvResolverInput`
330
+ - `.:WorkspaceOperationHostFacts`
331
+ - `.:WorkspaceOperationsOptions`
332
+ - `.:WorkspaceOperationRequestedEnvResolverInput`
333
+ - `.:WORKSPACE_TOOL_DEFAULT_DECLARATIONS`
334
+ - `.:WORKSPACE_TOOL_EXPOSURE_PROFILES`
335
+ - `.:WORKSPACE_TOOL_NAMES`
336
+ - `.:WORKSPACE_TOOL_SPECS`
337
+ - `.:WorkspaceAgentCommandInputByName`
338
+ - `.:WorkspaceAgentCommandName`
339
+ - `.:WorkspaceAgentCommandOutputByName`
340
+ - `.:WorkspaceAgentCustomCommandInput`
341
+ - `.:WorkspaceAgentDecideInputRequestCommandInput`
342
+ - `.:WorkspaceAgentDestroyCommandInput`
343
+ - `.:WorkspaceAgentDriverMount`
344
+ - `.:WorkspaceAgentFileEntry`
345
+ - `.:WorkspaceAgentFilesProjection`
346
+ - `.:WorkspaceAgentFilesProjectionShape`
347
+ - `.:WorkspaceAgentGeneratedMount`
348
+ - `.:WorkspaceAgentMutationCommandOutput`
349
+ - `.:WorkspaceAgentProjectionName`
350
+ - `.:WorkspaceAgentProjectionRead`
351
+ - `.:WorkspaceAgentProjectionSchema`
352
+ - `.:WorkspaceAgentProjectionSink`
353
+ - `.:WorkspaceAgentProjectionValueByName`
354
+ - `.:WorkspaceAgentReadFileCommandInput`
355
+ - `.:WorkspaceAgentReadFileCommandOutput`
356
+ - `.:WorkspaceAgentReadStateCommandInput`
357
+ - `.:WorkspaceAgentReadStateCommandOutput`
358
+ - `.:WorkspaceAgentResetCommandInput`
359
+ - `.:WorkspaceAgentResumeInputRequestCommandInput`
360
+ - `.:WorkspaceAgentStateProjection`
361
+ - `.:WorkspaceAgentStateProjectionShape`
362
+ - `.:WorkspaceAgentSubmitCommandInput`
363
+ - `.:WorkspaceBashResult`
364
+ - `.:WorkspaceEditFileResult`
365
+ - `.:WorkspaceEnv`
366
+ - `.:WorkspaceEnvBackend`
367
+ - `.:WorkspaceEnvInputError`
368
+ - `.:workspaceEnvMaterialRef`
369
+ - `.:WorkspaceExecOptions`
370
+ - `.:WorkspaceExecResult`
371
+ - `.:WorkspaceFilesDiff`
372
+ - `.:WorkspaceFileSnapshot`
373
+ - `.:WorkspaceFileStat`
374
+ - `.:WorkspaceGlobFilesResult`
375
+ - `.:WorkspaceGrepFilesResult`
376
+ - `.:WorkspaceGrepMatch`
377
+ - `.:WorkspaceGrepMode`
378
+ - `.:WorkspaceJobAttemptContext`
379
+ - `.:WorkspaceJobCandidateMissing`
380
+ - `.:WorkspaceJobDataPlane`
381
+ - `.:WorkspaceJobDataPlaneFailed`
382
+ - `.:WorkspaceJobFailureExplanation`
383
+ - `.:WorkspaceJobFinalizedArtifact`
384
+ - `.:WorkspaceJobObservabilityProjection`
385
+ - `.:WorkspaceJobObservabilityRequest`
386
+ - `.:WorkspaceJobRecovery`
387
+ - `.:WorkspaceJobRepairDecisionInput`
388
+ - `.:WorkspaceJobRunIdMismatch`
389
+ - `.:WorkspaceJobSeedFile`
390
+ - `.:WorkspaceJobTerminalArtifactBuild`
391
+ - `.:WorkspaceJobTerminalArtifactWriteResult`
392
+ - `.:WorkspaceJobVerifier`
393
+ - `.:WorkspaceJobVerifierFailed`
394
+ - `.:WorkspaceJobVerifierResult`
395
+ - `.:WorkspaceMutationPolicy`
396
+ - `.:WorkspaceOperationOptions`
397
+ - `.:WorkspaceReadFileLineRange`
398
+ - `.:WorkspaceReadFileResult`
399
+ - `.:WorkspaceShellPolicy`
400
+ - `.:WorkspaceToolCategory`
401
+ - `.:WorkspaceToolDefaultDeclaration`
402
+ - `.:WorkspaceToolEffect`
403
+ - `.:WorkspaceToolEnvRef`
404
+ - `.:WorkspaceToolExecHookInput`
405
+ - `.:WorkspaceToolExposurePolicy`
406
+ - `.:WorkspaceToolExposureProfile`
407
+ - `.:WorkspaceToolHooks`
408
+ - `.:WorkspaceToolInteractionFloor`
409
+ - `.:WorkspaceToolName`
410
+ - `.:WorkspaceToolReceiptPolicy`
411
+ - `.:WorkspaceTools`
412
+ - `.:WorkspaceToolSpec`
413
+ - `.:WorkspaceToolWriteHookInput`
414
+ - `.:WorkspaceWriteFileResult`
415
+ - `./admission:Admission`
416
+ - `./ag-ui:AG_UI_WIRE_COMPATIBILITY`
417
+ - `./ag-ui:AgUiContext`
418
+ - `./ag-ui:AgUiContextSchema`
419
+ - `./ag-ui:AgUiCustomFrame`
420
+ - `./ag-ui:AgUiEventType`
421
+ - `./ag-ui:AgUiFrame`
422
+ - `./ag-ui:AgUiFrameSafetyIssue`
423
+ - `./ag-ui:AgUiFrameSafetySpec`
424
+ - `./ag-ui:AgUiInputRequestResumeBinding`
425
+ - `./ag-ui:AgUiLedgerEnvelopeFrame`
426
+ - `./ag-ui:AgUiLedgerEnvelopeProjectionSpec`
427
+ - `./ag-ui:AgUiLedgerEventEnvelope`
428
+ - `./ag-ui:AgUiLedgerProjectionSpec`
429
+ - `./ag-ui:AgUiMessage`
430
+ - `./ag-ui:AgUiMessageRole`
431
+ - `./ag-ui:AgUiMessageRoleSchema`
432
+ - `./ag-ui:AgUiMessageSchema`
433
+ - `./ag-ui:AgUiReasoningFrame`
434
+ - `./ag-ui:AgUiRecordedLedgerEvent`
435
+ - `./ag-ui:AgUiResumeEntrySchema`
436
+ - `./ag-ui:AgUiRunAgentInput`
437
+ - `./ag-ui:AgUiRunAgentInputSchema`
438
+ - `./ag-ui:agUiRunAgentInputToSubmitInput`
439
+ - `./ag-ui:AgUiRunErrorFrame`
440
+ - `./ag-ui:AgUiRunFinishedFrame`
441
+ - `./ag-ui:AgUiRunStartedFrame`
442
+ - `./ag-ui:AgUiRuntimeProjectionSpec`
443
+ - `./ag-ui:AgUiSafeEventFrameProjector`
444
+ - `./ag-ui:AgUiSafeEventProjector`
445
+ - `./ag-ui:AgUiSafeLedgerEvent`
446
+ - `./ag-ui:AgUiSafeValue`
447
+ - `./ag-ui:AgUiSseChunk`
448
+ - `./ag-ui:AgUiSubmitDefaults`
449
+ - `./ag-ui:AgUiTextMessageContentFrame`
450
+ - `./ag-ui:AgUiTextMessageEndFrame`
451
+ - `./ag-ui:AgUiTextMessageStartFrame`
452
+ - `./ag-ui:AgUiTool`
453
+ - `./ag-ui:AgUiToolCallArgsFrame`
454
+ - `./ag-ui:AgUiToolCallEndFrame`
455
+ - `./ag-ui:AgUiToolCallResultFrame`
456
+ - `./ag-ui:AgUiToolCallStartFrame`
457
+ - `./ag-ui:AgUiToolSchema`
458
+ - `./ag-ui:decodeAgUiRecordedLedgerEvent`
459
+ - `./ag-ui:decodeAgUiRunAgentInput`
460
+ - `./ag-ui:decodeLedgerEventToAgUiEnvelope`
461
+ - `./ag-ui:encodeAgUiLedgerEventEnvelopeSse`
462
+ - `./ag-ui:framesForAgUiLedgerEnvelope`
463
+ - `./ag-ui:framesForAgUiLedgerEnvelopes`
464
+ - `./ag-ui:projectLedgerEventsToAgUiEnvelopes`
465
+ - `./ag-ui:projectLedgerEventsToAgUiFrames`
466
+ - `./ag-ui:projectLedgerEventToAgUiEnvelope`
467
+ - `./ag-ui:projectLedgerSseToAgUiEnvelopes`
468
+ - `./ag-ui:projectLedgerSseToAgUiSse`
469
+ - `./ag-ui:projectSafeLedgerEventToAgUiFrames`
470
+ - `./ag-ui:projectToolsToAgUiTools`
471
+ - `./ag-ui:projectToolToAgUiTool`
472
+ - `./ag-ui:verifyAgUiFrameSafety`
473
+ - `./capability:CapabilityConfigRequirement`
474
+ - `./capability:CapabilityContract`
475
+ - `./capability:CapabilityEventHandlerContext`
476
+ - `./capability:CapabilityHostFactRequirement`
477
+ - `./capability:CapabilityInstallContext`
478
+ - `./capability:CapabilityInstallation`
479
+ - `./capability:CapabilityPeerRequirement`
480
+ - `./capability:CapabilityRequirement`
481
+ - `./capability:CapabilityRequirements`
482
+ - `./capability:CapabilityRuntimeHandle`
483
+ - `./capability:CapabilitySecretRequirement`
484
+ - `./capability:defineCapability`
485
+ - `./capability:DefineCapabilitySpec`
486
+ - `./capability:defineHost`
487
+ - `./capability:DefineHostSpec`
488
+ - `./capability:HostProfile`
489
+ - `./capability:HostProvidedFact`
490
+ - `./capability:nodeHost`
491
+ - `./capability:PreflightDiagnostic`
492
+ - `./capability:PreflightDiagnosticSink`
493
+ - `./capability:ResolvedCapabilityEventHandlerFactory`
494
+ - `./capability:ResolvedCapabilityInstallGraph`
495
+ - `./capability:ResolvedHostFacts`
496
+ - `./capability:ResolvedRuntime`
497
+ - `./capability:ResolveRuntimeInstallGraphResult`
498
+ - `./capability:ResolveRuntimeOptions`
499
+ - `./capability:ResolveRuntimeResult`
500
+ - `./capability:resolveRuntime`
501
+ - `./capability:resolveRuntimeInstallGraph`
502
+ - `./capability:WORKSPACE_OPERATION_HOST_FACT`
503
+ - `./capability:workspaceOperations`
504
+ - `./capability:WorkspaceOperationBindingEnvResolverInput`
505
+ - `./capability:WorkspaceOperationEnvResolver`
506
+ - `./capability:WorkspaceOperationEnvResolverInput`
507
+ - `./capability:WorkspaceOperationHostFacts`
508
+ - `./capability:WorkspaceOperationsOptions`
509
+ - `./capability:WorkspaceOperationRequestedEnvResolverInput`
510
+ - `./cloudflare:AgentAttachedStreamCancelSpec`
511
+ - `./cloudflare:AgentAttachedStreamSpec`
512
+ - `./cloudflare:AgentDeclaredIntent`
513
+ - `./cloudflare:AgentDurableObjectConfig`
514
+ - `./cloudflare:AgentEventHandlerContext`
515
+ - `./cloudflare:AgentEventHandlerRegistration`
516
+ - `./cloudflare:AgentRuntimeClient`
517
+ - `./cloudflare:AgentRuntimeReaderClient`
518
+ - `./cloudflare:AgentSubmitSpec`
519
+ - `./cloudflare:AgentTriggerCancelSpec`
520
+ - `./cloudflare:AgentTriggerIntentSpec`
521
+ - `./cloudflare:AgentWorkspaceJobSpec`
522
+ - `./cloudflare:CloudflareAgentBindingSource`
523
+ - `./cloudflare:CloudflareAgentDeploymentSpec`
524
+ - `./cloudflare:CloudflareAgentDriverConfig`
525
+ - `./cloudflare:CloudflareAgentEnv`
526
+ - `./cloudflare:CloudflareAgentMount`
527
+ - `./cloudflare:cloudflareAgentMountPort`
528
+ - `./cloudflare:CloudflareAgentMountPort`
529
+ - `./cloudflare:CloudflareAgentProjectionSinks`
530
+ - `./cloudflare:CloudflareAgentProjectionSource`
531
+ - `./cloudflare:CloudflareAttachedStreamFactory`
532
+ - `./cloudflare:CloudflareAttachedStreamFactoryContext`
533
+ - `./cloudflare:CloudflareAttachedStreamSource`
534
+ - `./cloudflare:CloudflareLedgerSseSource`
535
+ - `./cloudflare:CloudflareTriggerFactory`
536
+ - `./cloudflare:CloudflareTriggerFactoryContext`
537
+ - `./cloudflare:CloudflareTriggerSource`
538
+ - `./cloudflare:CloudflareWorkspaceJobProjectionReader`
539
+ - `./cloudflare:CloudflareWorkspaceJobResponseOptions`
540
+ - `./cloudflare:CloudflareWorkspaceJobResponseProjection`
541
+ - `./cloudflare:createAgentDurableObject`
542
+ - `./cloudflare:createCloudflareLedgerAgUiHistorySseResponse`
543
+ - `./cloudflare:createCloudflareLedgerAgUiSseResponse`
544
+ - `./cloudflare:createCloudflareWorkspaceJobResponse`
545
+ - `./cloudflare:DispatchTargetNamespace`
546
+ - `./cloudflare:DispatchTargetRegistry`
547
+ - `./cloudflare:durableObjectDispatchTarget`
548
+ - `./cloudflare:httpDispatchTarget`
549
+ - `./cloudflare:HttpDispatchTargetSpec`
550
+ - `./cloudflare:makeCloudflareWorkspaceEnv`
551
+ - `./cloudflare:materializeCloudflareAgentDeployment`
552
+ - `./cloudflare:MaterializedAgentConfig`
553
+ - `./cloudflare:mountCloudflareAgent`
554
+ - `./cloudflare:providerDispatchTarget`
555
+ - `./cloudflare:ProviderDispatchTargetSpec`
556
+ - `./cloudflare:queueDispatchTarget`
557
+ - `./cloudflare:QueueDispatchTargetBinding`
558
+ - `./cloudflare/do-rpc:DURABLE_OBJECT_RPC_INVOKE`
559
+ - `./cloudflare/do-rpc:durableObjectRpcClient`
560
+ - `./cloudflare/do-rpc:durableObjectRpcInvoke`
561
+ - `./cloudflare/do-rpc:DurableObjectRpcClient`
562
+ - `./cloudflare/do-rpc:DurableObjectRpcErrorV1`
563
+ - `./cloudflare/do-rpc:DurableObjectRpcRejected`
564
+ - `./cloudflare/do-rpc:DurableObjectRpcResult`
565
+ - `./cloudflare/do-rpc:DurableObjectRpcServer`
566
+ - `./cloudflare/do-rpc:FunctionFree`
567
+ - `./cloudflare/ops-api:AgentDOIntrospection`
568
+ - `./cloudflare/ops-api:AttemptKey`
569
+ - `./cloudflare/ops-api:CloudflareAgentDOIntrospectionRpc`
570
+ - `./cloudflare/ops-api:cloudflareAgentDoOpsStubFor`
571
+ - `./cloudflare/ops-api:CloudflareAgentDOResolvedScope`
572
+ - `./cloudflare/ops-api:decodeAttemptKey`
573
+ - `./cloudflare/ops-api:encodeAttemptKey`
574
+ - `./cloudflare/ops-api:mountOpsApi`
575
+ - `./cloudflare/ops-api:MountOpsApiOptions`
576
+ - `./cloudflare/ops-api:OpsAction`
577
+ - `./cloudflare/ops-api:OpsAuth`
578
+ - `./cloudflare/ops-api:OpsErrorBody`
579
+ - `./cloudflare/ops-api:OpsErrorCode`
580
+ - `./cloudflare/ops-api:OpsPrincipal`
581
+ - `./cloudflare/ops-api:ResolvedScope`
582
+ - `./cloudflare/ops-api:RunListPage`
583
+ - `./cloudflare/ops-api:RunListSpec`
584
+ - `./cloudflare/ops-api:RunStatus`
585
+ - `./cloudflare/ops-api:RunSummary`
586
+ - `./cloudflare/ops-api:ScopeResolver`
587
+ - `./cloudflare/ops-api:ScopeSummary`
588
+ - `./cloudflare/ops-api:ScopeSurface`
589
+ - `./channel:ChannelContext`
590
+ - `./channel:ChannelDispatch`
591
+ - `./channel:ChannelHandler`
592
+ - `./channel:ChannelMethod`
593
+ - `./channel:ChannelPrincipal`
594
+ - `./channel:ChannelRequest`
595
+ - `./channel:ChannelRoute`
596
+ - `./channel:ChannelRuntime`
597
+ - `./channel:ChannelSubmit`
598
+ - `./channel:ChannelVerifier`
599
+ - `./channel:DefinedChannel`
600
+ - `./channel:createChannelContext`
601
+ - `./channel:defineChannel`
602
+ - `./channel:get`
603
+ - `./channel:post`
604
+ - `./channel:put`
605
+ - `./channel:del`
606
+ - `./channel:patch`
607
+ - `./external-effect:ExternalEffectAttemptLookup`
608
+ - `./external-effect:ExternalEffectRequestedState`
609
+ - `./external-effect:DefinedExternalEffectAttempt`
610
+ - `./external-effect:defineExternalEffectAttempt`
611
+ - `./external-effect:RunExternalEffectAttemptSpec`
612
+ - `./external-effect:runExternalEffectAttempt`
613
+ - `./schedule:CronMinuteExpression`
614
+ - `./schedule:DefinedSchedule`
615
+ - `./schedule:ScheduleContext`
616
+ - `./schedule:ScheduleContextSpec`
617
+ - `./schedule:ScheduleDefinition`
618
+ - `./schedule:ScheduleFireIdentitySpec`
619
+ - `./schedule:ScheduleFireDispatchInput`
620
+ - `./schedule:ScheduleFireRequestedEventSpec`
621
+ - `./schedule:ScheduleFireDispatchedEventSpec`
622
+ - `./schedule:ScheduleFireFailedEventSpec`
623
+ - `./schedule:ScheduleFireDispatchResult`
624
+ - `./schedule:ScheduleFireDeliveryDispatchInput`
625
+ - `./schedule:ScheduleFireDeliveryDispatchResult`
626
+ - `./schedule:ScheduleDefinitionProjection`
627
+ - `./schedule:ScheduleFireStatus`
628
+ - `./schedule:ScheduleFireSessionProductProjection`
629
+ - `./schedule:ScheduleFireWorkflowProductProjection`
630
+ - `./schedule:ScheduleFireProductProjection`
631
+ - `./schedule:ScheduleFireBaseProjection`
632
+ - `./schedule:ScheduleFireProjection`
633
+ - `./schedule:ScheduleFireHistorySpec`
634
+ - `./schedule:ScheduleFireHistoryProjection`
635
+ - `./schedule:ScheduleHandler`
636
+ - `./schedule:SchedulePrincipal`
637
+ - `./schedule:ScheduleRuntime`
638
+ - `./schedule:ScheduleSessionSubmitTurnInput`
639
+ - `./schedule:ScheduleSessions`
640
+ - `./schedule:ScheduleWorkflowRunInput`
641
+ - `./schedule:ScheduleWorkflows`
642
+ - `./schedule:ScheduledMinute`
643
+ - `./schedule:createScheduleContext`
644
+ - `./schedule:cronMinuteExpression`
645
+ - `./schedule:defineSchedule`
646
+ - `./schedule:dispatchScheduleFire`
647
+ - `./schedule:dispatchScheduleFireDelivery`
648
+ - `./schedule:projectScheduleFireHistory`
649
+ - `./schedule:projectScheduleIngressDeliveryHistory`
650
+ - `./schedule:scheduleFireId`
651
+ - `./schedule:scheduledMinute`
652
+ - `./in-memory:createInMemoryRuntimeBackend`
653
+ - `./in-memory:InMemoryAdmissionLive`
654
+ - `./in-memory:InMemoryAttachedStreamsLive`
655
+ - `./in-memory:InMemoryBoundaryEventsLive`
656
+ - `./in-memory:InMemoryDispatchLive`
657
+ - `./in-memory:InMemoryDispatchTargetRegistry`
658
+ - `./in-memory:InMemoryEventHandlerRegistration`
659
+ - `./in-memory:InMemoryEventSpec`
660
+ - `./in-memory:InMemoryEventSubscription`
661
+ - `./in-memory:InMemoryLedgerLive`
662
+ - `./in-memory:InMemoryLlmTransportLive`
663
+ - `./in-memory:InMemoryLlmTransportOptions`
664
+ - `./in-memory:InMemoryMaterializedProjectionsLive`
665
+ - `./in-memory:InMemoryQuotaLive`
666
+ - `./in-memory:InMemoryResourcesLive`
667
+ - `./in-memory:InMemoryRuntimeBackend`
668
+ - `./in-memory:InMemoryRuntimeServices`
669
+ - `./in-memory:InMemorySchedulerLive`
670
+ - `./in-memory:makeInMemoryRuntimeLayer`
671
+ - `./in-memory:ResolvedRuntimeInstallGraph`
672
+ - `./llm-effect-ai/anthropic:AnthropicEffectAiLlmTransportLive`
673
+ - `./llm-effect-ai/anthropic:defaultEffectAiLanguageModelFactory`
674
+ - `./llm-effect-ai/anthropic:makeAnthropicEffectAiLlmTransportLayer`
675
+ - `./llm-effect-ai/openai-compatible:makeOpenAiCompatibleLlmTransportLayer`
676
+ - `./llm-effect-ai/openai-compatible:OpenAiCompatibleLlmTransportLive`
677
+ - `./llm-effect-ai/openai-compatible:OpenAiCompatibleProviderMaterialPreflightInput`
678
+ - `./llm-effect-ai/openai-compatible:preflightOpenAiCompatibleProviderMaterial`
679
+ - `./llm-effect-ai/openai-compatible:ProviderMaterialPreflightDiagnostic`
680
+ - `./local:CreateLocalAgentRuntimeOptions`
681
+ - `./local:createLocalAgentRuntime`
682
+ - `./local:CreateLocalWorkspaceEnvOptions`
683
+ - `./local:createLocalWorkspaceEnv`
684
+ - `./local:LocalAgentRuntime`
685
+ - `./local:LocalAgentRuntimeLlm`
686
+ - `./local:LocalAgentRuntimeLlmPreflight`
687
+ - `./local:LocalAgentRuntimeLlmPreflightInput`
688
+ - `./local:LocalAgentRuntimeResolveError`
689
+ - `./local:LocalAgentRuntimeTarget`
690
+ - `./local:LocalAgentSubmitInput`
691
+ - `./local:LocalAgentRuntimeTestLlm`
692
+ - `./local:LocalAgentRuntimeTransportLlm`
693
+ - `./local:LocalWorkspaceEnvError`
694
+ - `./local:LoweredLocalAgentRuntime`
695
+ - `./local:LowerLocalAgentRuntimeOptions`
696
+ - `./local:lowerLocalAgentRuntime`
697
+ - `./node:FactOwnerRef`
698
+ - `./node:NodePostgresBackend`
699
+ - `./node:NodePostgresBackendOptions`
700
+ - `./node:NodePostgresEventSubscription`
701
+ - `./node:nodePostgresProjectionKey`
702
+ - `./node:nodePostgresRuntimeIdentity`
703
+ - `./run-projector:AgentSessionProjection`
704
+ - `./run-projector:AgentSessionListProjection`
705
+ - `./run-projector:AgentSessionStatus`
706
+ - `./run-projector:AgentSessionTurnProjection`
707
+ - `./run-projector:AgentSessionTurnLinksProjection`
708
+ - `./run-projector:AgentSessionTurnRuntimeLink`
709
+ - `./run-projector:projectAgentSession`
710
+ - `./run-projector:projectAgentSessions`
711
+ - `./run-projector:projectAgentSessionTurnLinks`
712
+ - `./run-projector:projectRunsPage`
713
+ - `./run-projector:projectRunInspection`
714
+ - `./run-projector:projectRunStatus`
715
+ - `./run-projector:projectRunTrace`
716
+ - `./run-projector:projectSubmitResult`
717
+ - `./run-projector:projectWorkflowRun`
718
+ - `./run-projector:projectWorkflowRuns`
719
+ - `./run-projector:projectWorkflowRunLinks`
720
+ - `./run-projector:RUN_BEARING_KINDS`
721
+ - `./run-projector:RunInspection`
722
+ - `./run-projector:RunInspectionDiagnostic`
723
+ - `./run-projector:WorkflowRunAttemptProjection`
724
+ - `./run-projector:WorkflowRunError`
725
+ - `./run-projector:WorkflowRunListProjection`
726
+ - `./run-projector:WorkflowRunLinksProjection`
727
+ - `./run-projector:WorkflowRunProjection`
728
+ - `./run-projector:WorkflowRunRuntimeLink`
729
+ - `./run-projector:WorkflowRunStatus`
730
+ - `./sse-http:createAttachedStreamSseResponse`
731
+ - `./sse-http:createSseHttpResponse`
732
+ - `./sse-http:createSseHttpTextResponse`
733
+ - `./sse-http:decodeSseHttpEvents`
734
+ - `./sse-http:encodeSseHttpData`
735
+ - `./sse-http:encodeSseHttpEvent`
736
+ - `./sse-http:encodeSseHttpJsonEvent`
737
+ - `./sse-http:parseSseHttpEventBlock`
738
+ - `./sse-http:responseToSseHttpChunks`
739
+ - `./sse-http:SSE_HTTP_CONTENT_TYPE`
740
+ - `./sse-http:SseHttpChunk`
741
+ - `./sse-http:SseHttpEvent`
742
+ - `./sse-http:SseHttpResponseOptions`
743
+ - `./sse-http:SseHttpSource`
744
+ - `./telemetry-otlp:OTLP_GENAI_SEMCONV_MAPPING_VERSION`
745
+ - `./telemetry-otlp:OtlpAttributeValue`
746
+ - `./telemetry-otlp:OtlpProjection`
747
+ - `./telemetry-otlp:OtlpProjectionSpan`
748
+ - `./telemetry-otlp:projectOtlpSpans`
749
+ - `./testing:EXTERNAL_EFFECT_CONFORMANCE_SCENARIOS`
750
+ - `./testing:createInMemoryWorkspaceEnv`
751
+ - `./testing:CreateInMemoryWorkspaceEnvOptions`
752
+ - `./testing:ExternalEffectConformanceAdapter`
753
+ - `./testing:ExternalEffectConformanceEvidence`
754
+ - `./testing:ExternalEffectConformanceIssue`
755
+ - `./testing:ExternalEffectConformanceReport`
756
+ - `./testing:ExternalEffectConformanceScenario`
757
+ - `./testing:ExternalEffectConformanceScenarioId`
758
+ - `./testing:ExternalEffectConformanceScenarioReport`
759
+ - `./testing:ExternalEffectConformanceScenarioResult`
760
+ - `./testing:externalEffectConformance`
761
+ - `./testing:InMemoryWorkspaceEnvError`
762
+ - `./testing:InMemoryWorkspaceExecScript`
763
+ - `./workspace-agent:defineWorkspaceAgentMount`
764
+ - `./workspace-agent:isWorkspaceAgentCommandName`
765
+ - `./workspace-agent:isWorkspaceAgentProjectionName`
766
+ - `./workspace-agent:WORKSPACE_AGENT_COMMAND`
767
+ - `./workspace-agent:WORKSPACE_AGENT_PROJECTION`
768
+ - `./workspace-agent:WORKSPACE_AGENT_PROJECTION_SCHEMA`
769
+ - `./workspace-agent:WorkspaceAgentCommandInputByName`
770
+ - `./workspace-agent:WorkspaceAgentCommandName`
771
+ - `./workspace-agent:WorkspaceAgentCommandOutputByName`
772
+ - `./workspace-agent:WorkspaceAgentCustomCommandInput`
773
+ - `./workspace-agent:WorkspaceAgentDecideInputRequestCommandInput`
774
+ - `./workspace-agent:WorkspaceAgentDestroyCommandInput`
775
+ - `./workspace-agent:WorkspaceAgentDriverMount`
776
+ - `./workspace-agent:WorkspaceAgentFileEntry`
777
+ - `./workspace-agent:WorkspaceAgentFilesProjection`
778
+ - `./workspace-agent:WorkspaceAgentFilesProjectionShape`
779
+ - `./workspace-agent:WorkspaceAgentGeneratedMount`
780
+ - `./workspace-agent:WorkspaceAgentMutationCommandOutput`
781
+ - `./workspace-agent:WorkspaceAgentProjectionName`
782
+ - `./workspace-agent:WorkspaceAgentProjectionRead`
783
+ - `./workspace-agent:WorkspaceAgentProjectionSchema`
784
+ - `./workspace-agent:WorkspaceAgentProjectionSink`
785
+ - `./workspace-agent:WorkspaceAgentProjectionValueByName`
786
+ - `./workspace-agent:WorkspaceAgentReadFileCommandInput`
787
+ - `./workspace-agent:WorkspaceAgentReadFileCommandOutput`
788
+ - `./workspace-agent:WorkspaceAgentReadStateCommandInput`
789
+ - `./workspace-agent:WorkspaceAgentReadStateCommandOutput`
790
+ - `./workspace-agent:WorkspaceAgentResetCommandInput`
791
+ - `./workspace-agent:WorkspaceAgentResumeInputRequestCommandInput`
792
+ - `./workspace-agent:WorkspaceAgentStateProjection`
793
+ - `./workspace-agent:WorkspaceAgentStateProjectionShape`
794
+ - `./workspace-agent:WorkspaceAgentSubmitCommandInput`
795
+ - `./workspace-binding:bindWorkspaceToolsForRuntime`
796
+ - `./workspace-binding:BindWorkspaceToolsForRuntimeOptions`
797
+ - `./workspace-binding:workspaceEnvMaterialRef`
798
+ - `./workspace-binding:WorkspaceMutationPolicy`
799
+ - `./workspace-binding:WorkspaceShellPolicy`
800
+ - `./workspace-binding:WorkspaceToolExposurePolicy`
801
+ - `./workspace-binding:WorkspaceToolExposureProfile`
802
+
803
+ - `./capability:DynamicCapabilityResolverDefinition`
804
+ - `./capability:DynamicCapabilityResolverServiceInput`
805
+ - `./capability:DynamicCapabilityResolverServiceIssue`
806
+ - `./capability:DynamicCapabilityResolverServiceResult`
807
+ - `./capability:makeDynamicCapabilityContext`
808
+ - `./capability:runDynamicCapabilityResolvers`
809
+
810
+ ## Experimental exports
811
+
812
+ - `.:StructuredCallFailureClassification`
813
+ - `.:classifyStructuredCallFailure`
814
+ - `.:structuredOutputRequest`
815
+ - `./llm-effect-ai:EFFECT_AI_TRANSPORT_ADAPTER_VERSION`
816
+ - `./llm-effect-ai:EffectAiAborted`
817
+ - `./llm-effect-ai:EffectAiAdapterError`
818
+ - `./llm-effect-ai:EffectAiJsonEncodeFailed`
819
+ - `./llm-effect-ai:EffectAiLanguageModelFactory`
820
+ - `./llm-effect-ai:EffectAiMissingUsage`
821
+ - `./llm-effect-ai:EffectAiPromptError`
822
+ - `./llm-effect-ai:EffectAiProviderExecutedToolRejected`
823
+ - `./llm-effect-ai:EffectAiResolvedRoute`
824
+ - `./llm-effect-ai:EffectAiSupportedRoute`
825
+ - `./llm-effect-ai:EffectAiToolHandlerCalled`
826
+ - `./llm-effect-ai:EffectAiUnsupportedOutputPart`
827
+ - `./llm-effect-ai:EffectAiUnsupportedRoute`
828
+ - `./llm-effect-ai:OpenAiCompatibleLlmTransportLive`
829
+ - `./llm-effect-ai:callEffectAiLanguageModel`
830
+ - `./llm-effect-ai:effectAiPromptFromMessages`
831
+ - `./llm-effect-ai:effectAiToolFromDefinition`
832
+ - `./llm-effect-ai:effectAiToolkitFromToolDefinitions`
833
+ - `./llm-effect-ai:makeEffectAiLlmTransportLayer`
834
+ - `./llm-effect-ai:makeOpenAiCompatibleLlmTransportLayer`
835
+ - `./llm-effect-ai:normalizeEffectAiResponse`
836
+ - `./llm-effect-ai:OpenAiCompatibleProviderMaterialPreflightInput`
837
+ - `./llm-effect-ai:preflightOpenAiCompatibleProviderMaterial`
838
+ - `./llm-effect-ai:ProviderMaterialPreflightDiagnostic`
839
+ - `./llm-effect-ai:resolveEffectAiRoute`
840
+
841
+ ## Internal-only exports
842
+
843
+ Any package file or symbol not listed above.