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