Skip to main content

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

veryfront/agent

AI agents with memory, tools, and multi-agent composition.

Import

import {
  agent,
  AgentRuntime,
  registerAgent,
  getAgentsAsTools,
  createMemory,
  addFirstTurnStarterIntentRootOwnershipReminder,
} from "veryfront/agent";

Examples

Basic agent

import { agent } from "veryfront/agent";

const assistant = agent({
  system: "You are a helpful assistant.",
});

Agent with tools

import { agent } from "veryfront/agent";
import { tool } from "veryfront/tool";
import { z } from "zod";

const searchTool = tool({
  id: "search",
  description: "Search the knowledge base",
  inputSchema: z.object({ query: z.string() }),
  execute: async ({ query }) => ({ results: [] }),
});

const assistant = agent({
  system: "You are a helpful assistant.",
  tools: { search: searchTool },
  memory: { type: "conversation", maxMessages: 50 },
});

Agent with materialized runtime tools

import { agent } from "veryfront/agent";
import { createRemoteMCPToolSource, loadRemoteToolsFromSource } from "veryfront/tool";

const docsTools = createRemoteMCPToolSource({
  id: "docs-mcp",
  endpoint: "https://docs.example.com/mcp",
  headers: { Authorization: "Bearer <TOKEN>" },
});

const runtimeTools = await loadRemoteToolsFromSource(docsTools, {
  context: { projectId: "proj_123" },
  toolNameAliases: { search_docs: "docs_search" },
});

const assistant = agent({
  system: "Use the docs tools when the answer needs project documentation.",
  tools: runtimeTools,
  maxSteps: 5,
});

Agent with skills

import { agent } from "veryfront/agent";

const assistant = agent({
  system: "You are a support engineer. Use skills when relevant.",
  skills: ["incident-response", "repo-maintainer"], // or `true` for all discovered skills
  tools: {
    Read: true,
    "github:list-issues": true,
  },
});

Streaming API route

// app/api/ag-ui/route.ts
import { agent, createAgUiHandler } from "veryfront/agent";

const assistant = agent({
  system: "You are a helpful assistant.",
});

export const POST = createAgUiHandler({ agent: assistant });

Multi-agent composition

import { agent, registerAgent, getAgentsAsTools } from "veryfront/agent";

const researcher = agent({ system: "Research topics thoroughly." });
const writer = agent({ system: "Write clear prose." });

registerAgent(researcher);
registerAgent(writer);

const orchestrator = agent({
  system: "Coordinate research and writing.",
  tools: getAgentsAsTools(["researcher", "writer"]),
});

API

agent(config)

Agent helper.
PropertyTypeDescriptionSource
id?stringUnique identifier (auto-generated if omitted)source
name?stringHuman-readable display name for registry and control-plane listings.source
description?stringOptional summary shown in registry and control-plane listings.source
model?ModelStringOptional model string in “provider/model” format.source
systemstring | (() => string) | (() => Promise<string>)System prompt: string, function, or async functionsource
tools?true | Record<string, Tool | boolean>Tools available to the agentsource
remoteTools?RemoteToolSource[]source
allowedRemoteTools?string[]Optional remote tool name allowlist. When set, only matching tools from remoteTools are exposed to the model and executable at runtime.source
maxSteps?numberMax tool-call iterations per requestsource
streaming?booleanEnable streaming responsessource
memory?MemoryConfigConversation memory settingssource
middleware?AgentMiddleware[]Execution middleware pipelinesource
edge?EdgeConfigEdge runtime configurationsource
multimodal?{ vision?: boolean; audio?: boolean }Enable vision and/or audiosource
allowedModels?ModelString[]Restrict runtime model overrides to these “provider/model” strings.source
resolveModelTransport?ModelTransportResolverOptional request-aware hook for overriding the resolved model runtime and provider transport options on a per-call basis.source
resolveRuntimeState?RuntimeStateResolverOptional step-boundary hook for refreshing the runtime system prompt and host-owned context during a long-lived run.source
onToolResult?ToolExecutionResultHandlerOptional hook invoked after the runtime executes a configured local, registry, integration, or remote tool and before the tool result is persisted or streamed back to callers.source
skills?true | string[]Enable skills for this agent.source
suggestions?Suggestionssource
security?falseSet to false to disable the default security middlewaresource
Returns: Agent

agent.generate(input)

Run the agent and return a complete response. Accepts a string or message array as input.
PropertyTypeDescriptionSource
inputstring | Message[]Prompt string or message historysource
context?Record<string, unknown>Additional context passed to the agentsource
model?ModelStringOverride the agent’s default model for this request. Must be in allowedModels if configured.source
maxOutputTokens?numberOverride the maximum model output tokens for this request.source
Returns: Promise<AgentResponse>

agent.stream(input)

Run the agent and stream the response. Returns a result with .toDataStreamResponse() for API routes.
PropertyTypeDescriptionSource
input?stringPrompt stringsource
messages?Message[]Conversation message historysource
context?Record<string, unknown>Additional context passed to the agentsource
model?ModelStringOverride the agent’s default model for this request. Must be in allowedModels if configured.source
maxOutputTokens?numberOverride the maximum model output tokens for this request.source
onToolCall?(toolCall: ToolCall) => voidCallback fired when a tool is invokedsource
onChunk?(chunk: string) => voidCallback fired for each text chunksource
onFinish?(response: AgentResponse) => voidsource
abortSignal?AbortSignalsource
Returns: Promise<AgentStreamResult>

agent.respond(request)

Convert an HTTP request into an AG-UI streaming response for route handlers. Returns: Promise<Response>

agent.getMemory()

Get the agent’s memory instance. Returns: Memory<Message>

agent.getMemoryStats()

Get memory usage statistics (message count, estimated tokens, type). Returns: Promise<{ totalMessages: number; estimatedTokens: number; type: string }>

agent.clearMemory()

Clear all stored messages from memory. Returns: Promise<void>

Exports

Components

NameDescriptionSource
AgUiDetachedStartAcceptedSchemaSchema for AG-UI detached start accepted.source
AgUiDetachedStartRequestSchemaSchema for AG-UI detached start request.source
AgUiRequestSchemaSchema for AG-UI request.source
AgUiResumeSignalSchemaSchema for AG-UI resume signal.source
AppendConversationRunEventsResponseSchemaSchema for append conversation run events response.source
CompleteConversationRunResponseSchemaSchema for complete conversation run response.source
CONVERSATION_HOSTED_ABORTED_TERMINAL_ERROR_CODEShared conversation hosted aborted terminal error code value.source
CONVERSATION_HOSTED_INCOMPLETE_TOOL_CALLS_TERMINAL_ERROR_CODEShared conversation hosted incomplete tool calls terminal error code value.source
CONVERSATION_HOSTED_STREAM_ERROR_TERMINAL_ERROR_CODEShared conversation hosted stream error terminal error code value.source
ConversationMessageRecordSchemaSchema for conversation message record.source
ConversationRecordSchemaSchema for conversation record.source
ConversationRunEventSchemaSchema for conversation run event.source
ConversationRunProjectionSchemaSchema for conversation run projection.source
ConversationRunStatusSchemaSchema for conversation run status.source
ConversationRunTargetsSchemaSchema for conversation run targets.source
DEFAULT_FORK_RESPONSE_PROMISE_TIMEOUT_MSDefault value for fork response promise timeout ms.source
DEFAULT_HOSTED_CHILD_AGENT_IDDefault value for hosted child agent ID.source
DEFAULT_HOSTED_CHILD_EXCLUDED_TOOL_NAMESDefault value for hosted child excluded tool names.source
DEFAULT_HOSTED_CHILD_FORK_STREAM_ACTIVE_TOOL_TIMEOUT_MSDefault value for hosted child fork stream active tool timeout ms.source
DEFAULT_HOSTED_CHILD_FORK_STREAM_FINALIZATION_TIMEOUT_MSDefault value for hosted child fork stream finalization timeout ms.source
DEFAULT_HOSTED_CHILD_FORK_STREAM_IDLE_TIMEOUT_MSDefault value for hosted child fork stream idle timeout ms.source
DEFAULT_HOSTED_CHILD_FORK_STREAM_POST_TOOL_IDLE_TIMEOUT_MSDefault value for hosted child fork stream post tool idle timeout ms.source
DEFAULT_HOSTED_CHILD_REQUESTED_TOOL_COMPANIONSDefault value for hosted child requested tool companions.source
DEFAULT_HOSTED_CHILD_SANDBOX_REQUIRED_CUE_PATTERNDefault value for hosted child sandbox required cue pattern.source
DEFAULT_HOSTED_CHILD_STATUS_POLL_INTERVAL_MSDefault value for hosted child status poll interval ms.source
DEFAULT_PROJECT_STEERING_PATHSDefault value for project steering paths.source
DEFAULT_RUNTIME_AGENT_CONTEXT_MARKERDefault value for runtime agent context marker.source
DELEGATE_ONLY_WHEN_MATERIALLY_HELPFULShared delegate only when materially helpful value.source
ExternalAgentWorkerRequestSnapshotSchemaZod schema for external agent worker request snapshot.source
ExternalAgentWorkerRunSchemaZod schema for external agent worker run.source
ExternalAgentWorkerSchemaZod schema for external agent worker.source
ExternalAgentWorkerSessionSchemaZod schema for external agent worker session.source
FIRST_TURN_STARTER_INTENT_ROOT_OWNERSHIP_BLOCK_MESSAGEShared first turn starter intent root ownership block message value.source
FIRST_TURN_STARTER_INTENT_ROOT_OWNERSHIP_CONTEXT_KEYShared first turn starter intent root ownership context key value.source
FIRST_TURN_STARTER_INTENT_ROOT_OWNERSHIP_REMINDERShared first turn starter intent root ownership reminder value.source
HOSTED_CHILD_FORK_INSTRUCTIONS_BASEShared hosted child fork instructions base value.source
HOSTED_CHILD_STREAM_TIMEOUT_TOKENShared hosted child stream timeout token value.source
InvokeAgentChildRunLifecycleCustomEventSchemaSchema for invoke agent child run lifecycle custom event.source
InvokeAgentChildRunLifecycleValueSchemaSchema for invoke agent child run lifecycle value.source
InvokeAgentChildRunStateDeltaSchemaSchema for invoke agent child run state delta.source
KEEP_ROOT_ASSISTANT_VISIBLE_OWNERShared keep root assistant visible owner value.source
LOAD_SKILL_CONTINUATION_REMINDERShared load skill continuation reminder value.source
LOAD_SKILL_CONTINUE_SAME_TURNShared load skill continue same turn value.source
LOAD_SKILL_CONTINUE_SAME_TURN_NOWShared load skill continue same turn now value.source
LOAD_SKILL_DELEGATION_THRESHOLDShared load skill delegation threshold value.source
LOAD_SKILL_OVERRIDE_FORWARDINGShared load skill override forwarding value.source
LOAD_SKILL_ROOT_OWNERSHIPShared load skill root ownership value.source
LOAD_SKILL_TOOL_INTERSECTIONShared load skill tool intersection value.source
LOAD_SKILL_USE_ALLOWED_TOOLSShared load skill use allowed tools value.source
MAX_RUNTIME_SKILL_PROMPT_ENTRIESMaximum value for runtime skill prompt entries.source
NO_DELEGATION_NARRATION_UNLESS_ASKEDShared no delegation narration unless asked value.source
PROJECT_STEERING_FILE_MUTATION_TOOL_NAMESShared project steering file mutation tool names value.source
ROOT_OWNED_CHILD_RESULT_INSTRUCTIONShared root owned child result instruction value.source
RUNTIME_LOAD_SKILL_CONTINUATION_NOTEShared runtime load skill continuation note value.source
RUNTIME_LOAD_SKILL_DESCRIPTIONShared runtime load skill description value.source
RuntimeAgentContextItemSchemaSchema for runtime agent context item.source
RuntimeAgentIdSchemaSchema for runtime agent ID.source
RuntimeAgentProjectContextSchemaSchema for runtime agent project context.source
RuntimeAgentRunContextSchemaSchema for runtime agent run context.source
RuntimeAgentRunIdSchemaSchema for runtime agent run ID.source
RuntimeAgentRunInvocationSchemaSchema for runtime agent run invocation.source
RuntimeAgentServiceIdSchemaSchema for runtime agent service ID.source
RuntimeAgentSourceContextSchemaSchema for runtime agent source context.source
RuntimeAgentTargetKindSchemaSchema for runtime agent target kind.source
RuntimeAgentToolCallIdSchemaSchema for runtime agent tool call ID.source
RuntimeAgentToolNameSchemaSchema for runtime agent tool name.source
RuntimeAgentToolSchemaSchema for runtime agent tool.source
RuntimeAgentValidatedClaimsSchemaSchema for runtime agent validated claims.source
RuntimeSkillFrontmatterSchemaSchema for runtime skill frontmatter.source
SLASH_COMMAND_ARTIFACT_REMINDERShared slash command artifact reminder value.source
SYNTHESIZE_DELEGATED_FINDINGS_IN_ROOT_VOICEShared synthesize delegated findings in root voice value.source

Functions

NameDescriptionSource
addFirstTurnStarterIntentRootOwnershipReminderAdd first turn starter intent root ownership reminder helper.source
addLoadSkillContinuationReminderAdd load skill continuation reminder helper.source
addSlashCommandArtifactReminderAdd slash command artifact reminder helper.source
agentAgent helper.source
agentAsToolAgent as tool helper.source
appendConversationRunEventsAppend conversation run events.source
appendHostedChildMirrorChunkAppend hosted child mirror chunk.source
appendMissingChildRunToolCallsAppend missing child run tool calls.source
appendMissingChildRunToolResultsAppend missing child run tool results.source
applyAgentProjectContextChangeApply agent project context change helper.source
applyDefaultResearchArtifactPathApply default research artifact path helper.source
applyPartToStreamedStepStateState for apply part to streamed step.source
bootstrapAgentServiceBootstrap agent service helper.source
bootstrapConversationAgentRunBootstrap conversation agent run helper.source
bootstrapHostedChildRunBootstrap hosted child run helper.source
buildAgentRunTraceAttributesBuilds agent run trace attributes.source
buildAgUiBrowserFinalizeResponseResponse payload for build AG-UI browser finalize.source
buildAgUiSseTraceSignatureBuild a compact ordered event-type signature for regression checks.source
buildChatStreamChunkMessageMetadataBuilds chat stream chunk message metadata.source
buildChildRunExecutionSnapshotBuilds child run execution snapshot.source
buildChildRunExhaustedStepBudgetErrorMessageMessage shape for build child run exhausted step budget error.source
buildChildRunFailureResultResult returned from build child run failure.source
buildChildRunFailureSnapshotBuilds child run failure snapshot.source
buildChildRunResultCommonBuilds child run result common.source
buildChildRunResultSummaryBuilds child run result summary.source
buildChildRunSuccessResultResult returned from build child run success.source
buildChildRunSuccessSnapshotBuilds child run success snapshot.source
buildDefaultHostedChildForkToolSetBuilds default hosted child fork tool set.source
buildDefaultResearchArtifactPathReminderBuilds default research artifact path reminder.source
buildDefaultResearchArtifactPathsBuilds default research artifact paths.source
buildDetachedAgUiStartRequestRequest payload for build detached AG-UI start.source
buildDetachedFallbackChunksBuilds detached fallback chunks.source
buildDetachedFallbackMessageStateState for build detached fallback message.source
buildExecuteToolTraceAttributesBuilds execute tool trace attributes.source
buildFinalizedAgentRunTraceAttributesBuilds finalized agent run trace attributes.source
buildFinalizedMessageFallbackChunksBuilds finalized message fallback chunks.source
buildFinalizedMessageStateState for build finalized message.source
buildForkRuntimeStepFromResponseResponse payload for build fork runtime step from.source
buildHostedChatRequestForwardedPropsFromRuntimeAgentInvocationBuilds hosted chat request forwarded props from runtime agent invocation.source
buildHostedChatRequestFromRuntimeAgentInvocationBuilds hosted chat request from runtime agent invocation.source
buildHostedChatRequestInputFromRuntimeAgentInvocationBuilds hosted chat request input from runtime agent invocation.source
buildHostedChildCompletedLogBuilds hosted child completed log.source
buildHostedChildConversationBodyBuilds hosted child conversation body.source
buildHostedChildErrorLogBuilds hosted child error log.source
buildHostedChildExhaustedStepBudgetLogBuilds hosted child exhausted step budget log.source
buildHostedChildForkInstructionsBuilds hosted child fork instructions.source
buildHostedChildToolDescriptionBuilds hosted child tool description.source
buildHostedDurableChildInvokeFailureResultResult returned from build hosted durable child invoke failure.source
buildHostedDurableChildInvokeSuccessResultResult returned from build hosted durable child invoke success.source
buildHostedDurableChildInvokeTerminalFailureResultResult returned from build hosted durable child invoke terminal failure.source
buildInputRequestLifecycleDataEventEvent emitted for build input request lifecycle data.source
buildInvokeAgentChildRunLifecycleCustomEventEvent emitted for build invoke agent child run lifecycle custom.source
buildInvokeAgentChildRunProgressEventsBuilds invoke agent child run progress events.source
buildInvokeAgentChildRunStateDeltaBuilds invoke agent child run state delta.source
buildInvokeAgentFollowupInstructionBuilds invoke agent followup instruction.source
buildInvokeAgentTraceAttributesBuilds invoke agent trace attributes.source
buildParsedHostedAgUiRequestRequest payload for build parsed hosted AG-UI.source
buildParsedHostedChatRequestRequest payload for build parsed hosted chat.source
buildRecoveredStepPartsBuilds recovered step parts.source
buildRootOwnedChildResultHintBuilds root owned child result hint.source
buildRootOwnedChildRunResultHintBuilds root owned child run result hint.source
buildRootOwnedChildRunResultTextBuilds root owned child run result text.source
buildRootOwnedDelegatedFindingsInstructionBuilds root owned delegated findings instruction.source
buildRuntimeAgentControlPlaneStreamRequestFromInvocationBuilds runtime agent control plane stream request from invocation.source
buildRuntimeAvailableSkillsPromptBlockBuilds runtime available skills prompt block.source
buildRuntimeLoadedSkillResponseResponse payload for build runtime loaded skill.source
buildRuntimeSkillDefinitionDefinition for build runtime skill.source
buildStarterIntentRootOwnershipBlockMessageMessage shape for build starter intent root ownership block.source
buildStarterIntentRootOwnershipReminderBuilds starter intent root ownership reminder.source
buildStudioMcpHeadersBuilds studio MCP headers.source
buildVeryfrontCloudRuntimeInstructionsBuilds Veryfront Cloud runtime instructions.source
cleanupAfterHostedChatExecutionFinalizationCleanup after hosted chat execution finalization helper.source
clearProjectAgentRuntimeRegistriesClear project agent runtime registries.source
clientAllowsStudioMcpClient allows studio MCP helper.source
cloneMirroredToolChunkStateState for clone mirrored tool chunk.source
closeChildRunExecutionBuffersClose child run execution buffers helper.source
closeHostedChildReasoningSegmentClose hosted child reasoning segment helper.source
closeHostedChildTextSegmentClose hosted child text segment helper.source
closeHostedMirroredOpenToolCallsClose hosted mirrored open tool calls helper.source
composeAbortSignalsCompose abort signals helper.source
computeOpenToolCallsCompute open tool calls.source
containsExactArtifactPathValueContains exact artifact path value helper.source
convertAgentRuntimeMessagesToProviderMessagesConvert agent runtime messages to provider messages.source
convertCompactedProviderMessagesToChildForkRuntimeMessagesConvert compacted provider messages to child fork runtime messages.source
convertProviderMessagesToAgentRuntimeMessagesConvert provider messages to agent runtime messages.source
createAgentServiceRegistrationLifecycleCreate agent service registration lifecycle.source
createAgentServiceRuntimeCreate agent service runtime.source
createAgentServiceServerRuntimeCreate agent service server runtime.source
createAgUiBrowserChunkEncoderCreate AG-UI browser chunk encoder.source
createAgUiBrowserEncoderStateState for create AG-UI browser encoder.source
createAgUiBrowserFinalizeTrackerCreate AG-UI browser finalize tracker.source
createAgUiBrowserResponseStreamCreate AG-UI browser response stream.source
createAgUiCancelHandlerHandler for create AG-UI cancel.source
createAgUiChatUiChunkBrowserEncoderCreate AG-UI chat UI chunk browser encoder.source
createAgUiChatUiTrackedBrowserResponseResponse payload for create AG-UI chat UI tracked browser.source
createAgUiChunkEncoderBridgeCreate AG-UI chunk encoder bridge.source
createAgUiDetachedStartHandlerHandler for create AG-UI detached start.source
createAgUiHandlerHandler for create AG-UI.source
createAgUiHandlerHandler for create AG-UI.source
createAgUiHandlerHandler for create AG-UI.source
createAgUiResumeHandlerHandler for create AG-UI resume.source
createAgUiRunErrorEventEvent emitted for create AG-UI run error.source
createAgUiRuntimeBrowserResponseResponse payload for create AG-UI runtime browser.source
createAgUiRuntimeChatStreamEncoderCreate AG-UI runtime chat stream encoder.source
createAgUiRuntimeContextMapCreate AG-UI runtime context map.source
createAgUiRuntimeEventEncoderCreate AG-UI runtime event encoder.source
createAgUiRuntimeHandlerHandler for create AG-UI runtime.source
createAgUiSseErrorResponseResponse payload for create AG-UI sse error.source
createAgUiSseResponseResponse payload for create AG-UI sse.source
createAgUiTrackedBrowserResponseResponse payload for create AG-UI tracked browser.source
createBootstrappedHostedChatExecutionRuntimeCreate bootstrapped hosted chat execution runtime.source
createChatUiMessageStreamFromDataStreamCreate chat UI message stream from data stream.source
createConversationAgentRunCreate conversation agent run.source
createConversationChildLifecycleAdapterCreate conversation child lifecycle adapter.source
createConversationHostedLifecycleAdapterCreate conversation hosted lifecycle adapter.source
createConversationHostedStreamLifecycleAdapterCreate conversation hosted stream lifecycle adapter.source
createConversationHostedTerminalAdapterCreate conversation hosted terminal adapter.source
createConversationMessageMessage shape for create conversation.source
createConversationRecordRecord shape for create conversation.source
createConversationRootRunContextContext for create conversation root run.source
createConversationRootRunStartAdapterCreate conversation root run start adapter.source
createConversationRunChunkMirrorCreate conversation run chunk mirror.source
createConversationRunContextContext for create conversation run.source
createConversationRunEventQueueControllerCreate conversation run event queue controller.source
createConversationRunMirrorCreate conversation run mirror.source
createConversationRunStreamMirrorCreate conversation run stream mirror.source
createDefaultHostedChatRuntimeCreate default hosted chat runtime.source
createDefaultHostedInvokeAgentToolCreate default hosted invoke agent tool.source
createDefaultHostedProjectSteeringRefreshCreate default hosted project steering refresh.source
createDefaultResearchRunArtifactMirrorHandlerHandler for create default research run artifact mirror.source
createDetachedRunShutdownLifecycleCreate detached run shutdown lifecycle.source
createDetachedRunTrackerCreate detached run tracker.source
createExternalAgentWorkerClientCreate external agent worker client.source
createForkRuntimeStreamMappingStateState for create fork runtime stream mapping.source
createForkRuntimeUserMessageMessage shape for create fork runtime user.source
createFrameworkStreamStateState for create framework stream.source
createHostedAgentProjectSteeringCreate hosted agent project steering.source
createHostedAgentRunSpanControllerCreate hosted agent run span controller.source
createHostedAgentServiceRouteSetCreate hosted agent service route set.source
createHostedAgentServiceRuntimeCreate hosted agent service runtime.source
createHostedAgUiValidationErrorResponseResponse payload for create hosted AG-UI validation error.source
createHostedChatExecutionRuntimeCreate hosted chat execution runtime.source
createHostedChatExecutionRuntimeBootstrapCreate hosted chat execution runtime bootstrap.source
createHostedChatFinalizeDetachedBuildStateState for create hosted chat finalize detached build.source
createHostedChatFinalizeResponseBuildStateState for create hosted chat finalize response build.source
createHostedChatRuntimeAgentAdapterCreate hosted chat runtime agent adapter.source
createHostedChatStreamFinalizationHooksCreate hosted chat stream finalization hooks.source
createHostedChildExecutionLogWriterCreate hosted child execution log writer.source
createHostedChildForkRunContextContext for create hosted child fork run.source
createHostedChildInvokeToolCreate hosted child invoke tool.source
createHostedChildMirrorContextContext for create hosted child mirror.source
createHostedChildPendingToolLifecycleCreate hosted child pending tool lifecycle.source
createHostedChildPendingToolLifecycleLoggerCreate hosted child pending tool lifecycle logger.source
createHostedConversationRunChunkMirrorCreate hosted conversation run chunk mirror.source
createHostedDurableChildForkRunContextContext for create hosted durable child fork run.source
createHostedDurableChildInvokeTraceRecorderCreate hosted durable child invoke trace recorder.source
createHostedFormInputToolCreate hosted form input tool.source
createHostedMirroredUiStreamCreate hosted mirrored UI stream.source
createHostedProjectRemoteToolSourceCreate hosted project remote tool source.source
createHostedProjectRemoteToolSourcesCreate hosted project remote tool sources.source
createHostedProjectSteeringAdapterCreate hosted project steering adapter.source
createHostedRootRunLifecycleRuntimeAdapterCreate hosted root run lifecycle runtime adapter.source
createHostedRuntimeStateResolverCreate hosted runtime state resolver.source
createHostedServiceAuthCreate hosted service auth.source
createInitialForkRuntimeMessagesCreate initial fork runtime messages.source
createInputRequestRequest payload for create input.source
createLiveStudioMcpToolsCreate live studio MCP tools.source
createMemoryCreate memory.source
createMirroredToolChunkStateState for create mirrored tool chunk.source
createNodeAgentServiceRuntimeInfrastructureCreate node agent service runtime infrastructure.source
createNodeVeryfrontCloudAgentServiceRuntimeCreate node Veryfront Cloud agent service runtime.source
createRedisMemoryCreate redis memory.source
createRequestAuthCacheCreate request auth cache.source
createRuntimeAgentDefinitionFromAgentCreate runtime agent definition from agent.source
createRuntimeAgentFromMarkdownDefinitionDefinition for create runtime agent from markdown.source
createRuntimeAgentSystemMessagesCreate runtime agent system messages.source
createRuntimeLoadSkillToolCreate runtime load skill tool.source
createRuntimeProjectFilesClientCreate runtime project files client.source
createRuntimeProjectSkillLoaderCreate runtime project skill loader.source
createRuntimePromptBlockCreate runtime prompt block.source
createStreamedStepStateState for create streamed step.source
createToolExecutionDataEventBridgeStreamCreate tool execution data event bridge stream.source
createToolResultPartCreate a chat tool-result part.source
createVeryfrontCloudHostedChatExecutionRootRunOptionsOptions accepted by create Veryfront Cloud hosted chat execution root run.source
createVeryfrontCloudPreparedHostedChatExecutionRuntimeOptionsOptions accepted by create Veryfront Cloud prepared hosted chat execution runtime.source
createVeryfrontCloudRuntimeSystemMessagesCreate Veryfront Cloud runtime system messages.source
createWorkflowCreate workflow.source
dedupeChatUiMessageChunksDedupe chat UI message chunks.source
defineAgentServiceDefine an agent service and expose a policy-neutral runtime shell.source
deriveAgUiForwardedConfigConfiguration used by derive AG-UI forwarded.source
deriveHostedAgUiChatContextContext for derive hosted AG-UI chat.source
describeProjectAgentRuntimeAgentIdCandidatesDescribe project agent runtime agent ID candidates helper.source
discoverProjectAgentRuntimeDiscover project agent runtime helper.source
dispatchConversationHostedStreamErrorStateState for dispatch conversation hosted stream error.source
dispatchConversationHostedTerminalStateState for dispatch conversation hosted terminal.source
doesProjectAgentRuntimeAgentMatchSourceDoes project agent runtime agent match source helper.source
encodeConversationRunEventsEncode conversation run events helper.source
ensureConversationProjectLinkEnsure conversation project link helper.source
evaluateSlashCommandArtifactPolicyEvaluate slash command artifact policy helper.source
evaluateStarterIntentTurnPolicyEvaluate starter intent turn policy helper.source
executeAgUiDetachedStartExecute AG-UI detached start.source
executeDefaultHostedInvokeAgentToolExecute default hosted invoke agent tool.source
executeDurableHumanInputFlowExecute durable human input flow.source
executeHostedChildForkRunContextStreamExecute hosted child fork run context stream.source
executeHostedChildForkStreamExecute hosted child fork stream.source
executeHostedChildForkToolInputInput payload for execute hosted child fork tool.source
executeHostedChildForkWithPreparedToolsExecute hosted child fork with prepared tools.source
executeHostedDurableChatRunExecute hosted durable chat run.source
executeHostedDurableChildForkExecute hosted durable child fork.source
executeHostedLocalChildInvokeExecute hosted local child invoke.source
expandAllowedRemoteToolNamesExpand allowed remote tool names helper.source
expandHostedChildRequestedToolsExpand hosted child requested tools helper.source
extractChatMessageMetadataExtract chat message metadata.source
extractLatestUserTextExtract latest user text.source
extractStarterIntentIdExtract starter intent ID.source
fetchConversationRecordRecord shape for fetch conversation.source
fetchDefaultHostedProjectSteeringFetch default hosted project steering helper.source
fetchLatestConversationUserTextFetch latest conversation user text helper.source
filterAgentTraceAttributesFilter agent trace attributes.source
filterHostedChatRuntimeLocalToolsFilter hosted chat runtime local tools.source
finalizeAgUiBrowserEventsFinalize AG-UI browser events helper.source
finalizeChildRunExecutionResourcesFinalize child run execution resources helper.source
finalizeConversationAgentRunFinalize conversation agent run helper.source
finalizeHostedChildForkCompletionFinalize hosted child fork completion helper.source
finalizeHostedChildForkRunContextResourcesFinalize hosted child fork run context resources helper.source
finalizeHostedDetachedFinalize hosted detached helper.source
finalizeHostedResponseResponse payload for finalize hosted.source
findLatestUserConversationMessageContextContext for find latest user conversation message.source
flattenSystemInstructionsFlatten system instructions helper.source
flushConversationRunEventBatchesFlush conversation run event batches.source
flushConversationRunEventQueueFlush conversation run event queue.source
formatChildRunStreamPartErrorError shape for format child run stream part.source
formatRuntimeSkillMetadataFormats runtime skill metadata.source
getAgentReturn agent.source
getAgentRuntimeTextPartReturn a runtime text part when the value carries text.source
getAgentRuntimeToolCallPartReturn a runtime tool-call part when the value carries a tool call.source
getAgentRuntimeToolResultPartReturn a runtime tool-result part when the value carries a tool result.source
getAgentsAsToolsReturn agents as tools.source
getAgUiChatUiMessageChunkMetadataReturn AG-UI chat UI message chunk metadata.source
getAgUiChatUiMessageMetadataFromChunkReturn AG-UI chat UI message metadata from chunk.source
getAgUiChatUiMessageUsageMetadataReturn AG-UI chat UI message usage metadata.source
getAgUiSseEventsOfTypeFilter parsed AG-UI SSE events by normalized event type.source
getAgUiSseStringFieldReturn a string field from a parsed AG-UI SSE event record.source
getAllAgentIdsReturn all agent IDs.source
getChildRunSnapshotUsageReturn child run snapshot usage.source
getConfirmedProjectContextSwitchIdReturn confirmed project context switch ID.source
getConversationRunReturn conversation run.source
getConversationRunEventJsonByteLengthReturn conversation run event JSON byte length.source
getEmptyHostedFinalizedMessageTerminalErrorError shape for get empty hosted finalized message terminal.source
getForkRuntimeAllowedToolNamesReturn fork runtime allowed tool names.source
getForwardedHostedModelIdReturn forwarded hosted model ID.source
getForwardedHostedRuntimeOverridesReturn forwarded hosted runtime overrides.source
getHostedChildWrittenArtifactPathReturn hosted child written artifact path.source
getHostedMirroredAbortErrorTextReturn hosted mirrored abort error text.source
getHostedServiceTokenFromRequestRequest payload for get hosted service token from.source
getHostedStreamErrorTextReturn hosted stream error text.source
getInputRequestRequest payload for get input.source
getMaxForkRuntimeStepCountReturn max fork runtime step count.source
getProjectAgentRuntimeAgentIdCandidatesReturn project agent runtime agent ID candidates.source
getProjectSteeringMutationReturn project steering mutation.source
getProviderNativeToolNamesReturn provider native tool names.source
getProviderToolProfileReturn provider tool profile.source
getRuntimeAgentMarkdownDefinitionDefinition for get runtime agent markdown.source
getRuntimeProjectFileReturn runtime project file.source
getRuntimeProjectFilesReturn runtime project files.source
getRuntimeProjectInstructionsReturn runtime project instructions.source
getRuntimeProjectSkillCatalogReturn runtime project skill catalog.source
getRuntimeUploadUrlReturn runtime upload URL.source
getTextFromPartsReturn text from parts.source
getToolArgumentsReturn tool arguments.source
handleHostedChildForkFailureProcess a hosted child fork failure.source
handleHostedChildForkRunContextErrorError shape for handle hosted child fork run context.source
handleHostedChildForkStreamPartProcess a hosted child fork stream part.source
hasArgsCheck whether args is present.source
hasInputInput payload for has.source
initializeNodeAgentServiceOpenTelemetryInitialize node agent service open telemetry.source
initializeNodeHostedAgentServiceOpenTelemetryInitialize node hosted agent service open telemetry.source
installAbortRejectionGuardInstall abort rejection guard helper.source
isAbortRejectionReasonCheck whether a rejection came from an abort signal.source
isActiveConversationRunStatusCheck whether a conversation run status is active.source
isAgentTraceAttributeValueCheck whether a value can be used as an agent trace attribute.source
isAlreadyMirroredHostedChunkCheck whether a hosted chunk was already mirrored.source
isAppendableConversationRunProjectionCheck whether a conversation run projection can accept more events.source
isChildRunAbortErrorError shape for is child run abort.source
isCursorMismatchConversationRunAppendErrorError shape for is cursor mismatch conversation run append.source
isDurableMirroredOutputChunkCheck whether a durable chunk mirrors tool output.source
isHostedChildCreateFileAlreadyExistsResultResult returned from is hosted child create file already exists.source
isHostedChildTerminalErrorCodeCheck whether a code is a hosted child terminal error.source
isHostedChildTextProjectArtifactPromptCheck whether a prompt asks for a hosted child text project artifact.source
isHostedServiceAuthErrorError shape for is hosted service auth.source
isIgnorableConversationRunAppendErrorError shape for is ignorable conversation run append.source
isResponseLikeCheck whether a value behaves like a Response.source
isRuntimeAgentMarkdownAgentCheck whether a runtime agent uses markdown configuration.source
isStarterIntentRootOwnershipRequiredCheck whether starter intent root ownership is required.source
isSuccessfulProjectSteeringMutationResultResult returned from is successful project steering mutation.source
listRuntimeBuiltinSkillReferenceFilesList runtime builtin skill reference files.source
listRuntimeBuiltinSkillReferencesList runtime builtin skill references.source
loadAgentServiceEnvFilesLoads agent service env files.source
loadRuntimeAgentMarkdownDefinitionFromFileLoads runtime agent markdown definition from file.source
loadRuntimeBuiltinSkillCatalogLoads runtime builtin skill catalog.source
mapAgUiRuntimeEventToForkPartsMap AG-UI runtime event to fork parts.source
mapFrameworkEventToForkPartsHandles map framework event to fork parts.source
mapHostedStreamPartToChatUiChunksMap hosted stream part to chat UI chunks.source
mapRuntimeStreamEventToAgUiBrowserEventsMap runtime stream event to AG-UI browser events.source
mergeToolCallInputInput payload for merge tool call.source
mergeToolInputDeltaMerge tool input delta helper.source
mirrorDefaultResearchRunArtifactMirror default research run artifact helper.source
monitorConversationRunStatusMonitor conversation run status helper.source
monitorHostedChildRunStatusMonitor hosted child run status helper.source
normalizeAgUiBrowserRuntimeRequestRequest payload for normalize AG-UI browser runtime.source
normalizeAgUiMessagesNormalizes AG-UI messages.source
normalizeAgUiRuntimeMessagesNormalizes AG-UI runtime messages.source
normalizeChatMessageMetadataNormalizes chat message metadata.source
normalizeChatUiMessageChunkNormalizes chat UI message chunk.source
normalizeChatUiMessageChunkToAgUiRuntimeEventEvent emitted for normalize chat UI message chunk to AG-UI runtime.source
normalizeChatUiMessageStreamNormalizes chat UI message stream.source
normalizeConversationRunEventEvent emitted for normalize conversation run.source
normalizeConversationRunEventsNormalizes conversation run events.source
normalizeEncodedConversationRunEventsNormalizes encoded conversation run events.source
normalizeHostedChildArtifactPathNormalizes hosted child artifact path.source
normalizeParsedHostedChatRequestRequest payload for normalize parsed hosted chat.source
normalizeRuntimeSkillReferencePathNormalizes runtime skill reference path.source
parseAgentServiceConfigConfiguration used by parse agent service.source
parseAgUiContextBooleanParses AG-UI context boolean.source
parseAgUiContextJsonValueParses AG-UI context JSON value.source
parseAgUiContextNullableStringParses AG-UI context nullable string.source
parseAgUiContextSchemaZod schema for parse AG-UI context.source
parseAgUiContextStringParses AG-UI context string.source
parseAgUiRequestRequest payload for parse AG-UI.source
parseAgUiRequestOrErrorError shape for parse AG-UI request or.source
parseAgUiRuntimeRequestRequest payload for parse AG-UI runtime.source
parseAgUiRuntimeRequestOrErrorError shape for parse AG-UI runtime request or.source
parseAgUiSseResponseParse an AG-UI SSE Response into normalized events, text, tool starts, and terminal error state.source
parseAppendConversationRunEventsErrorBodyParses append conversation run events error body.source
parseDataStreamSseEventsParses data stream sse events.source
parseHostedAgentServiceConfigConfiguration used by parse hosted agent service.source
parseHostedChatRequestFromRequestRequest payload for parse hosted chat request from.source
parseRuntimeAgentMarkdownDefinitionDefinition for parse runtime agent markdown.source
parseRuntimeAgentRunInvocationParses runtime agent run invocation.source
parseRuntimeAgentRunInvocationHostedChatRequestFromRequestRequest payload for parse runtime agent run invocation hosted chat request from.source
parseRuntimeAgentRunInvocationOrErrorError shape for parse runtime agent run invocation or.source
parseRuntimeSkillDocumentParses runtime skill document.source
parseRuntimeSkillMetadataParses runtime skill metadata.source
parseToolInputObjectParses tool input object.source
persistConversationUserMessageMessage shape for persist conversation user.source
persistLatestConversationUserMessageMessage shape for persist latest conversation user.source
prepareAgentRuntimeMessagesFromUiMessagesPrepare agent runtime messages from UI messages.source
prepareConversationRootRunContextContext for prepare conversation root run.source
prepareConversationRootRunLifecyclePrepare conversation root run lifecycle.source
prepareConversationRunChunkEventsPrepare conversation run chunk events.source
prepareConversationRunExternalEventsPrepare conversation run external events.source
prepareConversationRunStreamEventsPrepare conversation run stream events.source
prepareDefaultHostedChildForkRuntimeToolsPrepare default hosted child fork runtime tools.source
prepareDefaultHostedChildForkSandboxToolSourcesPrepare default hosted child fork sandbox tool sources.source
prepareDefaultHostedChildForkToolAssemblyPrepare default hosted child fork tool assembly.source
prepareDefaultHostedChildForkToolSourcesPrepare default hosted child fork tool sources.source
prepareHostedChatExecutionPrepare hosted chat execution.source
prepareHostedChatRuntimeCreationOptionsOptions accepted by prepare hosted chat runtime creation.source
prepareHostedChatRuntimeMessagesPrepare hosted chat runtime messages.source
prepareHostedChatRuntimeToolAssemblyPrepare hosted chat runtime tool assembly.source
prepareHostedChildForkRuntimeStepMessagesPrepare hosted child fork runtime step messages.source
prepareHostedConversationRootRunContextContext for prepare hosted conversation root run.source
prepareVeryfrontCloudHostedChatExecutionPrepare Veryfront Cloud hosted chat execution.source
publishInvokeAgentChildRunProgressPublish invoke agent child run progress helper.source
readRuntimeBuiltinDirectorySkillRead runtime builtin directory skill helper.source
readRuntimeBuiltinFlatSkillRead runtime builtin flat skill helper.source
readRuntimeBuiltinSkillRead runtime builtin skill helper.source
readRuntimeBuiltinSkillEntriesRead runtime builtin skill entries helper.source
readRuntimeBuiltinSkillReferenceFileRead runtime builtin skill reference file helper.source
recordMirroredToolChunkStateState for record mirrored tool chunk.source
recoverConversationRunAppendExecutionRecover conversation run append execution helper.source
recoverConversationRunAppendFailureRecover conversation run append failure helper.source
recoverConversationRunCursorMismatchRecover conversation run cursor mismatch helper.source
registerAgentRegisters agent.source
resolveAgentServiceRegistrationInputInput payload for resolve agent service registration.source
resolveConversationHostedStreamErrorStateState for resolve conversation hosted stream error.source
resolveConversationHostedTerminalStateState for resolve conversation hosted terminal.source
resolveConversationRunTargetsResolves conversation run targets.source
resolveForkRuntimeContinuationStateState for resolve fork runtime continuation.source
resolveForkStepResponseResponse payload for resolve fork step.source
resolveHostedChildForkRuntimeConfigConfiguration used by resolve hosted child fork runtime.source
resolveHostedChildForkThinkingOverrideResolves hosted child fork thinking override.source
resolveHostedChildPromiseWithTimeoutResolves hosted child promise with timeout.source
resolveHostedChildStreamWatchdogStateState for resolve hosted child stream watchdog.source
resolveHostedChildTerminalErrorCodeResolves a code is a hosted child terminal error.source
resolveHostedDurableRunSetupErrorResponseResponse payload for resolve hosted durable run setup error.source
resolveHostedRuntimeRequestConfigConfiguration used by resolve hosted runtime request.source
resolveHostedRuntimeThinkingOverrideResolves hosted runtime thinking override.source
resolveNodeAgentServiceTelemetryConfigConfiguration used by resolve node agent service telemetry.source
resolveNodeHostedAgentServiceTelemetryConfigConfiguration used by resolve node hosted agent service telemetry.source
resolveRuntimeAgentDefinitionsDirResolves runtime agent definitions dir.source
resolveRuntimeAgentMarkdownDefinitionFilePathResolves runtime agent markdown definition file path.source
resolveRuntimeBuiltinSkillReferenceFilePathResolves runtime builtin skill reference file path.source
resolveRuntimeBuiltinSkillsDirResolves runtime builtin skills dir.source
resolveRuntimeClientProfileResolves runtime client profile.source
resolveRuntimeMessageFileUrlsResolves runtime message file urls.source
resolveSingleProjectAgentRuntimeAgentIdResolves single project agent runtime agent ID.source
resyncConversationRunAppendCursorResync conversation run append cursor helper.source
runAgentRuntimeForkStepRun agent runtime fork step.source
runAgentServiceMainRun agent service main.source
runFrameworkForkStepHandles run framework fork step.source
runHostedChildExecutionLifecycleRun hosted child execution lifecycle.source
runHostedChildLifecycleRun hosted child lifecycle.source
runHostedLifecycleRun hosted lifecycle.source
runHostedResponseStreamWithHeartbeatRun hosted response stream with heartbeat.source
runPreparedHostedChatExecutionDetachedRun prepared hosted chat execution detached.source
sanitizeDefaultHostedChildRequestedToolsSanitize default hosted child requested tools.source
sanitizeHostedChildRequestedToolsSanitize hosted child requested tools.source
sanitizeProviderToolSchemaZod schema for sanitize provider tool.source
selectDefaultHostedChildForkRuntimeToolsSelect default hosted child fork runtime tools helper.source
selectHostedChildForkRuntimeToolsSelect hosted child fork runtime tools helper.source
selectProviderCompatibleToolNamesSelect provider compatible tool names helper.source
selectProviderCompatibleToolsSelect provider compatible tools helper.source
shouldBlockHostedChildSameTurnRetryShould block hosted child same turn retry helper.source
shouldContinueForkRuntimeStepShould continue fork runtime step helper.source
shouldFailEmptyHostedFinalizedMessageMessage shape for should fail empty hosted finalized.source
shouldInjectDefaultResearchArtifactPathShould inject default research artifact path helper.source
shouldPruneSandboxToolsFromHostedChildRequestRequest payload for should prune sandbox tools from hosted child.source
shouldReinforceLoadSkillContinuationShould reinforce load skill continuation helper.source
shouldRetryCreateResearchArtifactAsUpdateShould retry create research artifact as update helper.source
shouldSkipHostedChildTerminalPersistenceShould skip hosted child terminal persistence helper.source
startAgentRuntimeForkStarts agent runtime fork.source
startAgentRuntimeForkWithHostToolsStarts agent runtime fork with host tools.source
startAgentServiceStarts agent service.source
startAgentServiceRuntimeStarts agent service runtime.source
startAgentServiceServerStarts agent service server.source
startConversationRootRunStarts conversation root run.source
startHostedChildForkRuntimeWithHostToolsStarts hosted child fork runtime with host tools.source
startNodeAgentServiceStarts node agent service.source
startNodeAgentServiceServerStarts node agent service server.source
startNodeHostedAgentServiceStarts node hosted agent service.source
startNodeVeryfrontCloudAgentServiceStarts node Veryfront Cloud agent service.source
streamDataStreamEventsStream data stream events helper.source
streamPreparedHostedChatExecutionToAgUiResponseResponse payload for stream prepared hosted chat execution to AG-UI.source
stringifyAgUiSseEventStringify an AG-UI SSE event or fallback value for diagnostics.source
stripLeadingEmptyObjectPlaceholderNormalize provider tool input by removing transient empty-object prefixes.source
summarizeChildRunResultTextSummarize child run result text helper.source
summarizeChildRunResultValueSummarize child run result value helper.source
throwIfChildRunAbortedThrow if child run aborted helper.source
toChildRunToolInputRecordRecord shape for to child run tool input.source
toConversationHostedTerminalStateState for to conversation hosted terminal.source
toConversationRunStreamEventEvent emitted for to conversation run stream.source
toHostedChatExecutionFinalStateState for to hosted chat execution final.source
toMirroredHostedStreamPartConverts a value to mirrored hosted stream part.source
updateDefaultResearchArtifactsUpdate default research artifacts helper.source
validateRuntimeAgentTargetSelectionValidates runtime agent target selection.source
veryfrontMcpServerVeryfront MCP server helper.source
waitForDurableHumanInputResolutionWait for durable human input resolution helper.source
waitForHumanInputInput payload for wait for human.source
withDefaultResearchArtifactPathApplies default research artifact path.source
withHostedChildRerunnableFileWriteFallbacksApplies hosted child rerunnable file write fallbacks.source
withHostedChildStreamIdleTimeoutApplies hosted child stream idle timeout.source
withRootOwnedChildResultHintApplies root owned child result hint.source
withRuntimeToolInventoryApplies runtime tool inventory.source
wrapHostedChildProjectSwitchToolWrap hosted child project switch tool helper.source
wrapHostedChildSteeringMutationToolWrap hosted child steering mutation tool helper.source
writeHostedChildExecutionLogEntryEntry shape for write hosted child execution log.source

Classes

NameDescriptionSource
AgentRuntimeImplement agent runtime.source
AgentRuntimeMessageConversionErrorError shape for agent runtime message conversion.source
AppendConversationRunEventsErrorError shape for append conversation run events.source
BufferMemoryImplement buffer memory.source
ConversationMemoryImplement conversation memory.source
ConversationRunEventEncoderImplement conversation run event encoder.source
ConversationRunTerminalStateErrorError shape for conversation run terminal state.source
HostedChildStreamIdleTimeoutErrorError shape for hosted child stream idle timeout.source
HostedChildTerminalStateErrorError shape for hosted child terminal state.source
HostedServiceAuthErrorError shape for hosted service auth.source
HumanInputResumeErrorError shape for human input resume.source
InvalidHumanInputResultErrorError shape for invalid human input result.source
RedisMemoryImplement redis memory.source
RunAlreadyExistsErrorError shape for run already exists.source
RunCancelledErrorError shape for run cancelled.source
RunNotActiveErrorError shape for run not active.source
RunResumeSessionManagerImplement run resume session manager.source
RuntimeProjectFilesApiAuthErrorError shape for runtime project files API auth.source
SummaryMemoryImplement summary memory.source
WaitConflictErrorError shape for wait conflict.source
WaitNotPendingErrorError shape for wait not pending.source

Types

NameDescriptionSource
AbortRejectionEventEvent emitted for abort rejection.source
AbortRejectionEventTargetPublic API contract for abort rejection event target.source
AbortRejectionGuardLoggerPublic API contract for abort rejection guard logger.source
AbortRejectionProcessTargetPublic API contract for abort rejection process target.source
ActiveConversationRunStatusPublic API contract for a conversation run status is active.source
AgentPublic API contract for agent.source
AgentConfigConfiguration used by agent.source
AgentContextContext for agent.source
AgentContractFramework-owned agent service contract.source
AgentMessageMessage exchanged with an agent.source
AgentMiddlewarePublic API contract for agent middleware.source
AgentPushRuntimeServiceRestPublic API contract for agent push runtime service rest.source
AgentRegistryPublic API contract for agent registry.source
AgentResponseResponse payload for agent.source
AgentRuntimeForkStepRunnerPublic API contract for agent runtime fork step runner.source
AgentRuntimeMessageMessage shape for agent runtime.source
AgentRuntimeMessagePartPublic API contract for agent runtime message part.source
AgentServiceBootstrapExitPublic API contract for agent service bootstrap exit.source
AgentServiceConfigConfiguration used by agent service.source
AgentServiceConfigInputInput payload for agent service config.source
AgentServiceCorsConfigConfiguration used by agent service cors.source
AgentServiceDefinitionType-preserving service definition for request-native agent service runtimes.source
AgentServiceEnvFileLoadOptionsOptions accepted by agent service env file load.source
AgentServiceEnvFileLoadResultResult returned from agent service env file load.source
AgentServiceOptionsOptions accepted by agent service.source
AgentServicePreparedExecutionPublic API contract for agent service prepared execution.source
AgentServiceProcessTargetPublic API contract for agent service process target.source
AgentServiceRegistrationConfigConfiguration used by agent service registration.source
AgentServiceRegistrationLifecyclePublic API contract for agent service registration lifecycle.source
AgentServiceRegistrationLoggerPublic API contract for agent service registration logger.source
AgentServiceRegistrationModePublic API contract for agent service registration mode.source
AgentServiceRegistryContractMulti-agent service contract. Framework services route to defaultAgentId unless the host chooses another registered agent.source
AgentServiceRoutePublic API contract for agent service route.source
AgentServiceRouteMethodHost-facing server config for the agent service runtime shell.source
AgentServiceRuntimeBundlePublic API contract for agent service runtime bundle.source
AgentServiceRuntimeConfigConfiguration used by agent service runtime.source
AgentServiceRuntimeLoggerPublic API contract for agent service runtime logger.source
AgentServiceRuntimeTracePublic API contract for agent service runtime trace.source
AgentServiceServerPublic API contract for agent service server.source
AgentServiceServerConfigConfiguration used by agent service server.source
AgentServiceServerLifecyclePublic API contract for agent service server lifecycle.source
AgentServiceSingleAgentContractSingle-agent convenience accepted by defineAgentService(). Implementations must normalize this shape into the same registry path used by multi-agent services so framework users are not boxed into one-agent-per-process.source
AgentServiceTraceContextContext for agent service trace.source
AgentServiceTraceContextGetterPublic API contract for agent service trace context getter.source
AgentStatusPublic API contract for agent status.source
AgentStreamResultResult returned from agent stream.source
AgentTraceAttributesPublic API contract for agent trace attributes.source
AgentTraceAttributeValuePublic API contract for a value can be used as an agent trace attribute.source
AgentTraceUsagePublic API contract for agent trace usage.source
AgUiBeforeStreamPublic API contract for AG-UI before stream.source
AgUiBeforeStreamContextContext for AG-UI before stream.source
AgUiBeforeStreamMessageInputInput payload for AG-UI before stream message.source
AgUiBeforeStreamResultResult returned from AG-UI before stream.source
AgUiBrowserChunkEncoderPublic API contract for AG-UI browser chunk encoder.source
AgUiBrowserEncodedEventEvent emitted for AG-UI browser encoded.source
AgUiBrowserEncoderStateState for AG-UI browser encoder.source
AgUiBrowserFinalizeTrackerPublic API contract for AG-UI browser finalize tracker.source
AgUiBrowserResponseEncoderPublic API contract for AG-UI browser response encoder.source
AgUiBrowserResponseExecutionPublic API contract for AG-UI browser response execution.source
AgUiBrowserResponseRequestStateState for AG-UI browser response request.source
AgUiBrowserRunFinishedMetadataPublic API contract for AG-UI browser run finished metadata.source
AgUiCancelHandlerOptionsOptions accepted by AG-UI cancel handler.source
AgUiChatUiChunkBrowserEncoderPublic API contract for AG-UI chat UI chunk browser encoder.source
AgUiChunkEncoderBridgePublic API contract for AG-UI chunk encoder bridge.source
AgUiContextItemPublic API contract for AG-UI context item.source
AgUiDetachedStartAcceptedPublic API contract for AG-UI detached start accepted.source
AgUiDetachedStartHandlerOptionsOptions accepted by AG-UI detached start handler.source
AgUiDetachedStartRequestRequest payload for AG-UI detached start.source
AgUiForwardedConfigOptionsOptions accepted by AG-UI forwarded config.source
AgUiHandlerConfigWithAgentPublic API contract for AG-UI handler config with agent.source
AgUiHandlerOptionsOptions accepted by AG-UI handler.source
AgUiInjectedToolPublic API contract for AG-UI injected tool.source
AgUiRequestRequest payload for AG-UI.source
AgUiResumeHandlerOptionsOptions accepted by AG-UI resume handler.source
AgUiResumeSignalPublic API contract for AG-UI resume signal.source
AgUiResumeValuePublic API contract for AG-UI resume value.source
AgUiRuntimeChatStreamEncoderPublic API contract for AG-UI runtime chat stream encoder.source
AgUiRuntimeChatStreamEncoderStateState for AG-UI runtime chat stream encoder.source
AgUiRuntimeContextItemPublic API contract for AG-UI runtime context item.source
AgUiRuntimeEventEncoderPublic API contract for AG-UI runtime event encoder.source
AgUiRuntimeHandlerConfigConfiguration used by AG-UI runtime handler.source
AgUiRuntimeHandlerConfigWithAgentPublic API contract for AG-UI runtime handler config with agent.source
AgUiRuntimeHandlerExecutePublic API contract for AG-UI runtime handler execute.source
AgUiRuntimeHandlerExecuteInputInput payload for AG-UI runtime handler execute.source
AgUiRuntimeHandlerOptionsOptions accepted by AG-UI runtime handler.source
AgUiRuntimeInjectedToolPublic API contract for AG-UI runtime injected tool.source
AgUiRuntimeLifecycleContextContext for AG-UI runtime lifecycle.source
AgUiRuntimeMessageMessage shape for AG-UI runtime.source
AgUiRuntimeRequestRequest payload for AG-UI runtime.source
AgUiRuntimeStreamEventEvent emitted for AG-UI runtime stream.source
AgUiSseEventEvent emitted for AG-UI sse.source
AgUiSseEventTypeNormalized AG-UI runtime event type value.source
AgUiSseProgressSnapshotProgress snapshot emitted while parsing an AG-UI SSE response.source
AppendConversationRunEventsResponseResponse payload for append conversation run events.source
AppendExternalAgentWorkerRunEventsInputInput payload for append external agent worker run events.source
BootstrapAgentServiceOptionsOptions accepted by bootstrap agent service.source
BootstrapConversationAgentRunResultResult returned from bootstrap conversation agent run.source
BootstrapHostedChildRunInputInput payload for bootstrap hosted child run.source
BootstrapHostedChildRunResultResult returned from bootstrap hosted child run.source
BootstrappedHostedChatExecutionRuntimePublic API contract for bootstrapped hosted chat execution runtime.source
BuildChatStreamChunkMessageMetadataInputInput payload for build chat stream chunk message metadata.source
BuildDetachedFallbackChunksInputInput payload for build detached fallback chunks.source
BuildDetachedFallbackMessageInputInput payload for build detached fallback message.source
BuildFinalizedMessageFallbackChunksInputInput payload for build finalized message fallback chunks.source
BuildFinalizedMessageStateInputInput payload for build finalized message state.source
BuildHostedDurableChildInvokeFailureResultInputInput payload for build hosted durable child invoke failure result.source
BuildParsedHostedAgUiRequestOptionsOptions accepted by build parsed hosted AG-UI request.source
CachedRequestAuthResultResult returned from cached request auth.source
ChatMessageMetadataPublic API contract for chat message metadata.source
ChatMessageMetadataUsagePublic API contract for chat message metadata usage.source
ChatUiMessageChunkPublic API contract for chat UI message chunk.source
ChatUiMessageStreamFinishPublic API contract for chat UI message stream finish.source
ChatUiMessageStreamFinishPartPublic API contract for chat UI message stream finish part.source
ChatUiMessageStreamOptionsOptions accepted by chat UI message stream.source
ChildRunAuditPublic API contract for child run audit.source
ChildRunAuditToolCallPublic API contract for child run audit tool call.source
ChildRunAuditToolResultResult returned from child run audit tool.source
ChildRunExecutionBufferCleanupInputInput payload for child run execution buffer cleanup.source
ChildRunExecutionResourceFinalizeInputInput payload for child run execution resource finalize.source
ChildRunExecutionResultResult returned from child run execution.source
ChildRunExecutionSnapshotPublic API contract for child run execution snapshot.source
ChildRunExecutionUsagePublic API contract for child run execution usage.source
ChildRunResultCommonPublic API contract for child run result common.source
ChildRunToolCallSnapshotPublic API contract for child run tool call snapshot.source
ChildRunToolResultSnapshotPublic API contract for child run tool result snapshot.source
ClaimExternalAgentWorkerRunInputInput payload for claim external agent worker run.source
CloseHostedMirroredOpenToolCallsInputInput payload for close hosted mirrored open tool calls.source
CompleteExternalAgentWorkerRunInputInput payload for complete external agent worker run.source
ConversationAgentRunUsagePublic API contract for conversation agent run usage.source
ConversationChildLifecycleContextContext for conversation child lifecycle.source
ConversationControlPlaneResponseErrorError shape for conversation control plane response.source
ConversationHostedLifecycleFinalizeInputInput payload for conversation hosted lifecycle finalize.source
ConversationHostedTerminalAdapterPublic API contract for conversation hosted terminal adapter.source
ConversationHostedTerminalRuntimeAdapterPublic API contract for conversation hosted terminal runtime adapter.source
ConversationHostedTerminalStateInputInput payload for conversation hosted terminal state.source
ConversationHostedTerminalStateResolutionPublic API contract for conversation hosted terminal state resolution.source
ConversationMessageRecordRecord shape for conversation message.source
ConversationRecordRecord shape for conversation.source
ConversationRootRunContextContext for conversation root run.source
ConversationRootRunDescriptorPublic API contract for conversation root run descriptor.source
ConversationRootRunLifecyclePublic API contract for conversation root run lifecycle.source
ConversationRunAppendCursorResyncResultResult returned from conversation run append cursor resync.source
ConversationRunAppendExecutionOutcomePublic API contract for conversation run append execution outcome.source
ConversationRunAppendFailureOutcomePublic API contract for conversation run append failure outcome.source
ConversationRunAppendRecoveryOutcomePublic API contract for conversation run append recovery outcome.source
ConversationRunBatchFlushOutcomePublic API contract for conversation run batch flush outcome.source
ConversationRunChunkMirrorPublic API contract for conversation run chunk mirror.source
ConversationRunChunkMirrorApiOptionsOptions accepted by conversation run chunk mirror API.source
ConversationRunChunkMirrorOptionsOptions accepted by conversation run chunk mirror.source
ConversationRunChunkMirrorPrepareChunkEventsInputInput payload for conversation run chunk mirror prepare chunk events.source
ConversationRunChunkMirrorPreparedChunkPublic API contract for conversation run chunk mirror prepared chunk.source
ConversationRunChunkMirrorPreparedEventsPublic API contract for conversation run chunk mirror prepared events.source
ConversationRunChunkMirrorPrepareExternalEventsInputInput payload for conversation run chunk mirror prepare external events.source
ConversationRunChunkMirrorQueueOptionsOptions accepted by conversation run chunk mirror queue.source
ConversationRunContextContext for conversation run.source
ConversationRunEventEvent emitted for conversation run.source
ConversationRunEventQueueControllerPublic API contract for conversation run event queue controller.source
ConversationRunMirrorPublic API contract for conversation run mirror.source
ConversationRunMirrorRetryScheduledStateState for conversation run mirror retry scheduled.source
ConversationRunMirrorSnapshotPublic API contract for conversation run mirror snapshot.source
ConversationRunMirrorStoppedStateState for conversation run mirror stopped.source
ConversationRunProjectionPublic API contract for conversation run projection.source
ConversationRunQueueFlushOutcomePublic API contract for conversation run queue flush outcome.source
ConversationRunStreamMirrorPublic API contract for conversation run stream mirror.source
ConversationRunTargetsPublic API contract for conversation run targets.source
CreateAgentServiceRegistrationLifecycleOptionsOptions accepted by create agent service registration lifecycle.source
CreateAgentServiceRuntimeOptionsOptions accepted by create agent service runtime.source
CreateAgentServiceServerRuntimeOptionsOptions accepted by create agent service server runtime.source
CreateAgUiBrowserChunkEncoderOptionsOptions accepted by create AG-UI browser chunk encoder.source
CreateAgUiBrowserFinalizeTrackerOptionsOptions accepted by create AG-UI browser finalize tracker.source
CreateAgUiBrowserResponseStreamInputInput payload for create AG-UI browser response stream.source
CreateAgUiChatUiChunkBrowserEncoderOptionsOptions accepted by create AG-UI chat UI chunk browser encoder.source
CreateAgUiChatUiTrackedBrowserResponseInputInput payload for create AG-UI chat UI tracked browser response.source
CreateAgUiChunkEncoderBridgeOptionsOptions accepted by create AG-UI chunk encoder bridge.source
CreateAgUiRuntimeBrowserResponseInputInput payload for create AG-UI runtime browser response.source
CreateAgUiRuntimeChatStreamEncoderOptionsOptions accepted by create AG-UI runtime chat stream encoder.source
CreateAgUiRuntimeEventEncoderOptionsOptions accepted by create AG-UI runtime event encoder.source
CreateAgUiTrackedBrowserResponseInputInput payload for create AG-UI tracked browser response.source
CreateBootstrappedHostedChatExecutionRuntimeInputInput payload for create bootstrapped hosted chat execution runtime.source
CreateConversationHostedLifecycleAdapterOptionsOptions accepted by create conversation hosted lifecycle adapter.source
CreateConversationHostedTerminalAdapterOptionsOptions accepted by create conversation hosted terminal adapter.source
CreateDefaultHostedChatRuntimeContextInputInput payload for create default hosted chat runtime context.source
CreateDefaultHostedChatRuntimeOptionsOptions accepted by create default hosted chat runtime.source
CreateDefaultHostedProjectSteeringRefreshOptionsOptions accepted by create default hosted project steering refresh.source
CreateHostedAgentRunSpanControllerInputInput payload for create hosted agent run span controller.source
CreateHostedAgentServiceRuntimeOptionsOptions accepted by create hosted agent service runtime.source
CreateHostedChatExecutionRuntimeBootstrapInputInput payload for create hosted chat execution runtime bootstrap.source
CreateHostedChatExecutionRuntimeInputInput payload for create hosted chat execution runtime.source
CreateHostedChildInvokeToolOptionsOptions accepted by create hosted child invoke tool.source
CreateHostedMirroredUiStreamInputInput payload for create hosted mirrored UI stream.source
CreateHostedProjectRemoteToolSourceInputInput payload for create hosted project remote tool source.source
CreateHostedProjectRemoteToolSourcesInputInput payload for create hosted project remote tool sources.source
CreateHostedRootRunLifecycleRuntimeAdapterInputInput payload for create hosted root run lifecycle runtime adapter.source
CreateHostedRuntimeStateResolverOptionsOptions accepted by create hosted runtime state resolver.source
CreateNodeAgentServiceRuntimeInfrastructureOptionsOptions accepted by create node agent service runtime infrastructure.source
CreateNodeHostedAgentServiceRuntimeInfrastructureOptionsOptions accepted by create node hosted agent service runtime infrastructure.source
CreateRequestAuthCacheOptionsOptions accepted by create request auth cache.source
CreateRuntimeAgentSystemMessagesInputInput payload for create runtime agent system messages.source
CreateVeryfrontCloudPreparedHostedChatExecutionRuntimeOptionsInputInput payload for create Veryfront Cloud prepared hosted chat execution runtime options.source
CreateVeryfrontCloudRuntimeSystemMessagesInputInput payload for create Veryfront Cloud runtime system messages.source
DefaultHostedChatRuntimeConfigConfiguration used by default hosted chat runtime.source
DefaultHostedChatRuntimeCreationOptionsOptions accepted by default hosted chat runtime creation.source
DefaultHostedChatRuntimeLoggerPublic API contract for default hosted chat runtime logger.source
DefaultHostedChatRuntimeProjectSwitchInputInput payload for default hosted chat runtime project switch.source
DefaultHostedChatRuntimeSteeringMutationInputInput payload for default hosted chat runtime steering mutation.source
DefaultHostedChatRuntimeSystemRefreshInputInput payload for default hosted chat runtime system refresh.source
DefaultHostedChatRuntimeTaskContextContext for default hosted chat runtime task.source
DefaultHostedChildForkRuntimeToolPreparationResultResult returned from default hosted child fork runtime tool preparation.source
DefaultHostedChildForkToolAssemblyResultResult returned from default hosted child fork tool assembly.source
DefaultHostedChildForkToolAssemblySourceResultResult returned from default hosted child fork tool assembly source.source
DefaultHostedChildForkToolSourcesResultResult returned from default hosted child fork tool sources.source
DefaultHostedInvokeAgentConfigConfiguration used by default hosted invoke agent.source
DefaultHostedInvokeAgentContextContext for default hosted invoke agent.source
DefaultHostedInvokeAgentInputInput payload for default hosted invoke agent.source
DefaultHostedInvokeAgentLoggerPublic API contract for default hosted invoke agent logger.source
DefaultHostedInvokeAgentProjectRefreshPublic API contract for default hosted invoke agent project refresh.source
DefaultHostedInvokeAgentToolOptionsOptions accepted by default hosted invoke agent tool.source
DefaultHostedInvokeAgentToolResultResult returned from default hosted invoke agent tool.source
DefaultHostedInvokeAgentTracePublic API contract for default hosted invoke agent trace.source
DefaultHostedInvokeAgentTraceAttributesPublic API contract for default hosted invoke agent trace attributes.source
DefaultHostedProjectSteeringFetchersPublic API contract for default hosted project steering fetchers.source
DefaultHostedProjectSteeringRefreshLoggerPublic API contract for default hosted project steering refresh logger.source
DefaultHostedProjectSteeringRefreshLookupPublic API contract for default hosted project steering refresh lookup.source
DefaultResearchArtifactContextContext for default research artifact.source
DefaultResearchArtifactLoggerPublic API contract for default research artifact logger.source
DefaultResearchArtifactPathsPublic API contract for default research artifact paths.source
DefaultResearchArtifactsPublic API contract for default research artifacts.source
DerivedHostedAgUiChatContextContext for derived hosted AG-UI chat.source
DetachedFallbackMessageStateState for detached fallback message.source
DetachedRunDrainResultResult returned from detached run drain.source
DetachedRunShutdownLifecyclePublic API contract for detached run shutdown lifecycle.source
DetachedRunShutdownLifecycleOptionsOptions accepted by detached run shutdown lifecycle.source
DetachedRunShutdownLoggerPublic API contract for detached run shutdown logger.source
DetachedRunTrackerPublic API contract for detached run tracker.source
DetachedRunTrackerOptionsOptions accepted by detached run tracker.source
DiscoverProjectAgentRuntimeInputInput payload for discover project agent runtime.source
DurableHumanInputFlowResultResult returned from durable human input flow.source
DurableRunSinkTransport-neutral durable run lifecycle sink for agent-service adoption work.source
EdgeConfigConfiguration used by edge.source
ExecuteAgUiDetachedStartInputInput payload for execute AG-UI detached start.source
ExecuteDurableHumanInputFlowOptionsOptions accepted by execute durable human input flow.source
ExecuteHostedChildForkRunContextStreamInputInput payload for execute hosted child fork run context stream.source
ExecuteHostedChildForkStreamInputInput payload for execute hosted child fork stream.source
ExecuteHostedChildForkToolInputOptionsOptions accepted by execute hosted child fork tool input.source
ExecuteHostedChildForkWithPreparedToolsInputInput payload for execute hosted child fork with prepared tools.source
ExecuteHostedDurableChatRunInputInput payload for execute hosted durable chat run.source
ExecuteHostedDurableChildForkInputInput payload for execute hosted durable child fork.source
ExecuteHostedLocalChildInvokeInputInput payload for execute hosted local child invoke.source
ExternalAgentWorkerPublic API contract for external agent worker.source
ExternalAgentWorkerClientPublic API contract for external agent worker client.source
ExternalAgentWorkerClientOptionsOptions accepted by external agent worker client.source
ExternalAgentWorkerRequestSnapshotPublic API contract for external agent worker request snapshot.source
ExternalAgentWorkerRunPublic API contract for external agent worker run.source
ExternalAgentWorkerSessionPublic API contract for external agent worker session.source
FetchDefaultHostedProjectSteeringInputInput payload for fetch default hosted project steering.source
FinalizedMessageStateState for finalized message.source
FinalizeHostedChildForkRunContextResourcesInputInput payload for finalize hosted child fork run context resources.source
FinalizeHostedDetachedOptionsOptions accepted by finalize hosted detached.source
FinalizeHostedResponseOptionsOptions accepted by finalize hosted response.source
ForkPartPublic API contract for fork part.source
ForkRecoveredPartsStateState for fork recovered parts.source
ForkRuntimeContinuationPromptResolverPublic API contract for fork runtime continuation prompt resolver.source
ForkRuntimeStepPublic API contract for fork runtime step.source
ForkRuntimeStepPreparerPublic API contract for fork runtime step preparer.source
ForkRuntimeStreamLoggerPublic API contract for fork runtime stream logger.source
ForkRuntimeStreamMappingStateState for fork runtime stream mapping.source
ForkRuntimeStreamResultResult returned from fork runtime stream.source
FormInputToolInputInput payload for form input tool.source
FrameworkStreamStateState for framework stream.source
HandleHostedChildForkFailureInputInput payload for handle hosted child fork failure.source
HandleHostedChildForkRunContextErrorInputInput payload for handle hosted child fork run context error.source
HostedAgentProjectSteeringPublic API contract for hosted agent project steering.source
HostedAgentProjectSteeringLoggerPublic API contract for hosted agent project steering logger.source
HostedAgentProjectSteeringOptionsOptions accepted by hosted agent project steering.source
HostedAgentProjectSteeringOptionsDataPublic API contract for hosted agent project steering options data.source
HostedAgentRunSpanPublic API contract for hosted agent run span.source
HostedAgentRunSpanControllerPublic API contract for hosted agent run span controller.source
HostedAgentRunSpanFinalStateState for hosted agent run span final.source
HostedAgentRunTracerPublic API contract for hosted agent run tracer.source
HostedAgentServiceActiveSpanAttributesPublic API contract for hosted agent service active span attributes.source
HostedAgentServiceConfigConfiguration used by hosted agent service.source
HostedAgentServiceConfigInputInput payload for hosted agent service config.source
HostedAgentServiceDetachedCleanupInputInput payload for hosted agent service detached cleanup.source
HostedAgentServiceDetachedExecutionInputInput payload for hosted agent service detached execution.source
HostedAgentServiceEnvFileLoadOptionsOptions accepted by hosted agent service env file load.source
HostedAgentServiceEnvFileLoadResultResult returned from hosted agent service env file load.source
HostedAgentServiceRouteSetPublic API contract for hosted agent service route set.source
HostedAgentServiceRouteSetOptionsOptions accepted by hosted agent service route set.source
HostedAgentServiceRoutesLoggerPublic API contract for hosted agent service routes logger.source
HostedAgentServiceRoutesTracePublic API contract for hosted agent service routes trace.source
HostedAgentServiceRuntimeBundlePublic API contract for hosted agent service runtime bundle.source
HostedAgentServiceRuntimeConfigConfiguration used by hosted agent service runtime.source
HostedAgentServiceRuntimeLoggerPublic API contract for hosted agent service runtime logger.source
HostedAgentServiceRuntimeTracePublic API contract for hosted agent service runtime trace.source
HostedAgentServiceStreamExecutionInputInput payload for hosted agent service stream execution.source
HostedAgUiChatForwardedConfigConfiguration used by hosted AG-UI chat forwarded.source
HostedChatExecutionLifecycleAdapterPublic API contract for hosted chat execution lifecycle adapter.source
HostedChatExecutionPreparationInputInput payload for hosted chat execution preparation.source
HostedChatExecutionPreparationResultResult returned from hosted chat execution preparation.source
HostedChatExecutionPreparationRootRunOptionsOptions accepted by hosted chat execution preparation root run.source
HostedChatExecutionRootStreamWatchdogPublic API contract for hosted chat execution root stream watchdog.source
HostedChatExecutionRunContextContext for hosted chat execution run.source
HostedChatExecutionRuntimePublic API contract for hosted chat execution runtime.source
HostedChatExecutionRuntimeBootstrapPublic API contract for hosted chat execution runtime bootstrap.source
HostedChatExecutionRuntimeLoggerPublic API contract for hosted chat execution runtime logger.source
HostedChatProjectAccessErrorError shape for hosted chat project access.source
HostedChatProjectAccessResultResult returned from hosted chat project access.source
HostedChatRequestRequest payload for hosted chat.source
HostedChatRequestInputInput payload for hosted chat request.source
HostedChatRequestPrincipalPublic API contract for hosted chat request principal.source
HostedChatRuntimeAgentPublic API contract for hosted chat runtime agent.source
HostedChatRuntimeAgentAdapterInputInput payload for hosted chat runtime agent adapter.source
HostedChatRuntimeAgentAdapterRunnerPublic API contract for hosted chat runtime agent adapter runner.source
HostedChatRuntimeAgentAdapterWarningPublic API contract for hosted chat runtime agent adapter warning.source
HostedChatRuntimeAllowedToolNamesPublic API contract for hosted chat runtime allowed tool names.source
HostedChatRuntimeCreationOptionsOptions accepted by hosted chat runtime creation.source
HostedChatRuntimeCreationPreparationInputInput payload for hosted chat runtime creation preparation.source
HostedChatRuntimeCreationPreparationResultResult returned from hosted chat runtime creation preparation.source
HostedChatRuntimeCreationResultResult returned from hosted chat runtime creation.source
HostedChatRuntimeFinishPartPublic API contract for hosted chat runtime finish part.source
HostedChatRuntimeInstructionsInputInput payload for hosted chat runtime instructions.source
HostedChatRuntimeOnFinishEventEvent emitted for hosted chat runtime on finish.source
HostedChatRuntimePreparationRootRunContextContext for hosted chat runtime preparation root run.source
HostedChatRuntimePreparationSteeringPublic API contract for hosted chat runtime preparation steering.source
HostedChatRuntimeProjectSteeringPublic API contract for hosted chat runtime project steering.source
HostedChatRuntimeStreamInputInput payload for hosted chat runtime stream.source
HostedChatRuntimeStreamResultResult returned from hosted chat runtime stream.source
HostedChatRuntimeToolAssemblyContextContext for hosted chat runtime tool assembly.source
HostedChatRuntimeToolAssemblyResultResult returned from hosted chat runtime tool assembly.source
HostedChatRuntimeToUiMessageStreamOptionsOptions accepted by hosted chat runtime to UI message stream.source
HostedChildChunkMirrorPublic API contract for hosted child chunk mirror.source
HostedChildConversationBodyInputInput payload for hosted child conversation body.source
HostedChildExecutionLifecycleOptionsOptions accepted by hosted child execution lifecycle.source
HostedChildExecutionLifecycleResultResult returned from hosted child execution lifecycle.source
HostedChildExecutionLogEntryEntry shape for hosted child execution log.source
HostedChildExecutionLogLevelPublic API contract for hosted child execution log level.source
HostedChildExecutionLogWriterPublic API contract for hosted child execution log writer.source
HostedChildFileWriteFallbackLoggerPublic API contract for hosted child file write fallback logger.source
HostedChildFileWriteFallbackToolPublic API contract for hosted child file write fallback tool.source
HostedChildFileWriteFallbackToolExecutePublic API contract for hosted child file write fallback tool execute.source
HostedChildForkExecutionInstrumentationPublic API contract for hosted child fork execution instrumentation.source
HostedChildForkInstructionsContextContext for hosted child fork instructions.source
HostedChildForkPendingToolLifecyclePublic API contract for hosted child fork pending tool lifecycle.source
HostedChildForkRunContextContext for hosted child fork run.source
HostedChildForkRunContextInputInput payload for hosted child fork run context.source
HostedChildForkRuntimeConfigConfiguration used by hosted child fork runtime.source
HostedChildForkRuntimeStepMessagesPublic API contract for hosted child fork runtime step messages.source
HostedChildForkRuntimeStepSystemResolverPublic API contract for hosted child fork runtime step system resolver.source
HostedChildForkRuntimeToolSelectionResultResult returned from hosted child fork runtime tool selection.source
HostedChildForkStreamHandlingStateState for hosted child fork stream handling.source
HostedChildForkStreamLoggerPublic API contract for hosted child fork stream logger.source
HostedChildForkStreamMirrorContextContext for hosted child fork stream mirror.source
HostedChildForkStreamStateState for hosted child fork stream.source
HostedChildForkStreamTraceInputInput payload for hosted child fork stream trace.source
HostedChildForkToolCallSnapshotPublic API contract for hosted child fork tool call snapshot.source
HostedChildForkToolInputInput payload for hosted child fork tool.source
HostedChildForkToolResultSnapshotPublic API contract for hosted child fork tool result snapshot.source
HostedChildForkToolSourcesLoggerPublic API contract for hosted child fork tool sources logger.source
HostedChildInvokeFailurePublic API contract for hosted child invoke failure.source
HostedChildLifecycleAdapterPublic API contract for hosted child lifecycle adapter.source
HostedChildLifecycleRunnerOptionsOptions accepted by hosted child lifecycle runner.source
HostedChildLifecycleRunResultResult returned from hosted child lifecycle run.source
HostedChildLifecycleTerminalStateState for hosted child lifecycle terminal.source
HostedChildMirrorContextContext for hosted child mirror.source
HostedChildMirrorPartPublic API contract for hosted child mirror part.source
HostedChildMirrorStateState for hosted child mirror.source
HostedChildPendingToolCallPhasePublic API contract for hosted child pending tool call phase.source
HostedChildPendingToolCallStateState for hosted child pending tool call.source
HostedChildPendingToolLifecycleCloseLogPublic API contract for hosted child pending tool lifecycle close log.source
HostedChildPendingToolLifecycleCloseReasonPublic API contract for hosted child pending tool lifecycle close reason.source
HostedChildPendingToolLifecycleInputInput payload for hosted child pending tool lifecycle.source
HostedChildPendingToolLifecycleLogContextContext for hosted child pending tool lifecycle log.source
HostedChildPendingToolLifecycleLoggerPublic API contract for hosted child pending tool lifecycle logger.source
HostedChildPendingToolLifecycleLogWriterPublic API contract for hosted child pending tool lifecycle log writer.source
HostedChildPendingToolLifecycleUnknownToolLogPublic API contract for hosted child pending tool lifecycle unknown tool log.source
HostedChildProjectSwitchHandlerHandler for hosted child project switch.source
HostedChildRequestedToolsInputInput payload for hosted child requested tools.source
HostedChildRunIdentifiersPublic API contract for hosted child run identifiers.source
HostedChildRunStatusMonitorPublic API contract for hosted child run status monitor.source
HostedChildSameTurnRetryBlockSignalPublic API contract for hosted child same turn retry block signal.source
HostedChildSteeringMutationHandlerHandler for hosted child steering mutation.source
HostedChildStreamWatchdogPhasePublic API contract for hosted child stream watchdog phase.source
HostedChildStreamWatchdogStateState for hosted child stream watchdog.source
HostedChildTerminalErrorCodePublic API contract for a code is a hosted child terminal error.source
HostedChildTerminalStatusPublic API contract for hosted child terminal status.source
HostedChildWrittenArtifactPathInputInput payload for hosted child written artifact path.source
HostedConversationRootRunContextContext for hosted conversation root run.source
HostedConversationRootRunStateState for hosted conversation root run.source
HostedConversationRunChunkMirrorInstrumentationPublic API contract for hosted conversation run chunk mirror instrumentation.source
HostedConversationRunChunkMirrorOptionsOptions accepted by hosted conversation run chunk mirror.source
HostedConversationRunChunkMirrorTraceAttributesPublic API contract for hosted conversation run chunk mirror trace attributes.source
HostedDetachedFinalizationStateState for hosted detached finalization.source
HostedDurableChildBootstrapCallbacksPublic API contract for hosted durable child bootstrap callbacks.source
HostedDurableChildBootstrapContextContext for hosted durable child bootstrap.source
HostedDurableChildExecutionOptionsOptions accepted by hosted durable child execution.source
HostedDurableChildForkRunContextContext for hosted durable child fork run.source
HostedDurableChildForkRunContextInputInput payload for hosted durable child fork run context.source
HostedDurableChildInvokeResultResult returned from hosted durable child invoke.source
HostedDurableChildInvokeTraceBasePublic API contract for hosted durable child invoke trace base.source
HostedDurableChildInvokeTraceInputInput payload for hosted durable child invoke trace.source
HostedDurableChildInvokeTraceOverridesPublic API contract for hosted durable child invoke trace overrides.source
HostedDurableChildInvokeTraceRecorderPublic API contract for hosted durable child invoke trace recorder.source
HostedDurableChildRuntimeDependenciesPublic API contract for hosted durable child runtime dependencies.source
HostedDurableChildSetupFailurePublic API contract for hosted durable child setup failure.source
HostedDurableChildSuccessPublic API contract for hosted durable child success.source
HostedDurableChildTerminalFailurePublic API contract for hosted durable child terminal failure.source
HostedDurableRunAcceptedPublic API contract for hosted durable run accepted.source
HostedDurableRunAuthErrorResponseResponse payload for hosted durable run auth error.source
HostedDurableRunLoggerPublic API contract for hosted durable run logger.source
HostedDurableRunSetupErrorStatusCodePublic API contract for hosted durable run setup error status code.source
HostedDurableRunStartCleanupInputInput payload for hosted durable run start cleanup.source
HostedDurableRunStartExecutionInputInput payload for hosted durable run start execution.source
HostedFormInputToolContextContext for hosted form input tool.source
HostedLifecycleAdapterPublic API contract for hosted lifecycle adapter.source
HostedLifecycleExecutionPublic API contract for hosted lifecycle execution.source
HostedLifecycleRunnerOptionsOptions accepted by hosted lifecycle runner.source
HostedLifecycleRunResultResult returned from hosted lifecycle run.source
HostedLifecycleTerminalStateState for hosted lifecycle terminal.source
HostedLocalChildInvokeTraceRecorderPublic API contract for hosted local child invoke trace recorder.source
HostedMirroredOpenToolCallLoggerPublic API contract for hosted mirrored open tool call logger.source
HostedMirroredUiStreamLoggerPublic API contract for hosted mirrored UI stream logger.source
HostedMirroredUiStreamWatchdogPublic API contract for hosted mirrored UI stream watchdog.source
HostedProjectRemoteToolSourceMutationHandlerHandler for hosted project remote tool source mutation.source
HostedProjectRemoteToolSourcePrepareToolInputInput payload for hosted project remote tool source prepare tool.source
HostedProjectRemoteToolSourceProjectSwitchHandlerHandler for hosted project remote tool source project switch.source
HostedProjectRemoteToolSourceRetryPolicyPublic API contract for hosted project remote tool source retry policy.source
HostedProjectSkillIdsContextContext for hosted project skill IDs.source
HostedProjectSteeringAdapterPublic API contract for hosted project steering adapter.source
HostedProjectSteeringAdapterOptionsOptions accepted by hosted project steering adapter.source
HostedProjectSteeringLoggerPublic API contract for hosted project steering logger.source
HostedResponseFinalizationStateState for hosted response finalization.source
HostedResponseStreamHeartbeatPublic API contract for hosted response stream heartbeat.source
HostedResponseStreamHeartbeatStateState for hosted response stream heartbeat.source
HostedResponseStreamWriterPublic API contract for hosted response stream writer.source
HostedRootRunLifecycleRuntimeAdapterPublic API contract for hosted root run lifecycle runtime adapter.source
HostedRuntimeRequestConfigAgentPublic API contract for hosted runtime request config agent.source
HostedRuntimeRequestConfigRequestRequest payload for hosted runtime request config.source
HostedRuntimeStateResolverContextContext for hosted runtime state resolver.source
HostedRuntimeStateResolverInputInput payload for hosted runtime state resolver.source
HostedRuntimeStateResolverResultResult returned from hosted runtime state resolver.source
HostedRuntimeSystemRefreshPublic API contract for hosted runtime system refresh.source
HostedRuntimeSystemRefreshInputInput payload for hosted runtime system refresh.source
HostedServiceAuthPublic API contract for hosted service auth.source
HostedServiceAuthConfigConfiguration used by hosted service auth.source
HostedServiceAuthenticatedRequestRequest payload for hosted service authenticated.source
HostedServiceAuthErrorCodePublic API contract for hosted service auth error code.source
HostedServiceAuthFetchPublic API contract for hosted service auth fetch.source
HostedServiceAuthLoggerPublic API contract for hosted service auth logger.source
HostedServiceAuthOptionsOptions accepted by hosted service auth.source
HostedServiceAuthTracePublic API contract for hosted service auth trace.source
HostedServiceJwtErrorError shape for hosted service jwt.source
HostedServiceJwtResultResult returned from hosted service jwt.source
HostedServiceProjectAccessErrorError shape for hosted service project access.source
HostedServiceProjectAccessResultResult returned from hosted service project access.source
HostedStreamPartForUiChunkMappingPublic API contract for hosted stream part for UI chunk mapping.source
HostedStreamTerminalErrorError shape for hosted stream terminal.source
HostedTerminalErrorError shape for hosted terminal.source
HostedUiChunkMappingOptionsOptions accepted by hosted UI chunk mapping.source
HumanInputFieldPublic API contract for human input field.source
HumanInputFieldInputInput payload for human input field.source
HumanInputOptionPublic API contract for human input option.source
HumanInputPendingRequestRequest payload for human input pending.source
HumanInputRequestRequest payload for human input.source
HumanInputRequestInputInput payload for human input request.source
HumanInputResultResult returned from human input.source
HumanInputResumeValuePublic API contract for human input resume value.source
InitializeNodeAgentServiceTelemetryOptionsOptions accepted by initialize node agent service telemetry.source
InitializeNodeHostedAgentServiceTelemetryOptionsOptions accepted by initialize node hosted agent service telemetry.source
InputRequestOutputOutput from input request.source
InstallAbortRejectionGuardOptionsOptions accepted by install abort rejection guard.source
InstalledAbortRejectionGuardPublic API contract for installed abort rejection guard.source
InvokeAgentChildRunLifecycleCustomEventEvent emitted for invoke agent child run lifecycle custom.source
InvokeAgentChildRunLifecycleValuePublic API contract for invoke agent child run lifecycle value.source
InvokeAgentChildRunProgressEventEvent emitted for invoke agent child run progress.source
InvokeAgentChildRunProgressInputInput payload for invoke agent child run progress.source
InvokeAgentChildRunStateDeltaPublic API contract for invoke agent child run state delta.source
LiveStudioMcpToolsOptionsOptions accepted by live studio MCP tools.source
LoadRuntimeAgentMarkdownDefinitionFromFileInputInput payload for load runtime agent markdown definition from file.source
MemoryPublic API contract for memory.source
MemoryConfigConfiguration used by memory.source
MemoryPersistencePublic API contract for memory persistence.source
MemoryStatsPublic API contract for memory stats.source
MessagePartPublic API contract for message part.source
MirroredToolChunkStateState for mirrored tool chunk.source
ModelProviderPublic API contract for model provider.source
ModelStringModel configuration string format: “provider/model-name” Examples: “openai/gpt-4”, “anthropic/claude-3-5-sonnet”source
ModelTransportRequestRequest payload for model transport.source
ModelTransportResolverPublic API contract for model transport resolver.source
MonitorHostedChildRunStatusInputInput payload for monitor hosted child run status.source
MutableAgentProjectContextContext for mutable agent project.source
NodeAgentServiceInstrumentationConfigConfiguration used by node agent service instrumentation.source
NodeAgentServiceRuntimeInfrastructurePublic API contract for node agent service runtime infrastructure.source
NodeAgentServiceServerPublic API contract for node agent service server.source
NodeAgentServiceTelemetryConfigConfiguration used by node agent service telemetry.source
NodeAgentServiceTelemetryEnvPublic API contract for node agent service telemetry env.source
NodeAgentServiceTelemetryLoggerPublic API contract for node agent service telemetry logger.source
NodeAgentServiceTelemetryProcessTargetPublic API contract for node agent service telemetry process target.source
NodeHostedAgentServiceInstrumentationConfigConfiguration used by node hosted agent service instrumentation.source
NodeHostedAgentServiceRuntimeInfrastructurePublic API contract for node hosted agent service runtime infrastructure.source
NodeHostedAgentServiceTelemetryConfigConfiguration used by node hosted agent service telemetry.source
NodeHostedAgentServiceTelemetryEnvPublic API contract for node hosted agent service telemetry env.source
NodeHostedAgentServiceTelemetryLoggerPublic API contract for node hosted agent service telemetry logger.source
NodeHostedAgentServiceTelemetryProcessTargetPublic API contract for node hosted agent service telemetry process target.source
NodeVeryfrontCloudAgentServiceMcpServerPublic API contract for node Veryfront Cloud agent service MCP server.source
NodeVeryfrontCloudAgentServiceOptionsOptions accepted by node Veryfront Cloud agent service.source
NodeVeryfrontCloudAgentServicePreparedExecutionPublic API contract for node Veryfront Cloud agent service prepared execution.source
NodeVeryfrontCloudAgentServiceProcessTargetPublic API contract for node Veryfront Cloud agent service process target.source
NormalizedAgentServiceContractPublic API contract for normalized agent service contract.source
NormalizedHostedChatRequestRequest payload for normalized hosted chat.source
OpenToolCallsPublic API contract for open tool calls.source
ParseAgUiSseResponseOptionsOptions for parseAgUiSseResponse().source
ParsedAgUiSseRunParsed AG-UI SSE response summary for evals, canaries, and host tests.source
ParsedHostedAgUiRequestRequest payload for parsed hosted AG-UI.source
ParsedHostedChatRequestRequest payload for parsed hosted chat.source
ParsedRuntimeSkillDocumentPublic API contract for parsed runtime skill document.source
ParseHostedChatRequestOptionsOptions accepted by parse hosted chat request.source
ParseRuntimeAgentMarkdownDefinitionInputInput payload for parse runtime agent markdown definition.source
PersistConversationUserMessageFailurePublic API contract for persist conversation user message failure.source
PrepareAgentRuntimeMessagesFromUiMessagesOptionsOptions accepted by prepare agent runtime messages from UI messages.source
PrepareConversationRootRunLifecycleOptionsOptions accepted by prepare conversation root run lifecycle.source
PrepareDefaultHostedChildForkSandboxToolSourcesInputInput payload for prepare default hosted child fork sandbox tool sources.source
PrepareDefaultHostedChildForkToolSourcesInputInput payload for prepare default hosted child fork tool sources.source
PreparedHostedChatExecutionPublic API contract for prepared hosted chat execution.source
PreparedHostedChatExecutionDetachedInputInput payload for prepared hosted chat execution detached.source
PreparedHostedChatExecutionRuntimeOptionsOptions accepted by prepared hosted chat execution runtime.source
PreparedHostedChatExecutionStreamInputInput payload for prepared hosted chat execution stream.source
PrepareHostedChatRuntimeMessagesOptionsOptions accepted by prepare hosted chat runtime messages.source
PrepareHostedChatRuntimeToolAssemblyInputInput payload for prepare hosted chat runtime tool assembly.source
PrepareHostedChildForkRuntimeStepMessagesInputInput payload for prepare hosted child fork runtime step messages.source
PrepareHostedConversationRootRunContextInputInput payload for prepare hosted conversation root run context.source
PrepareVeryfrontCloudHostedChatExecutionInputInput payload for prepare Veryfront Cloud hosted chat execution.source
ProjectAgentRuntimeAgentIdCandidatesPublic API contract for project agent runtime agent ID candidates.source
ProjectAgentRuntimeAgentSourcePublic API contract for project agent runtime agent source.source
ProjectSteeringMutationInputInput payload for project steering mutation.source
ProjectSteeringMutationResultResult returned from project steering mutation.source
ProjectSteeringPathsPublic API contract for project steering paths.source
ProviderNativeToolInventoryOptionsOptions accepted by provider native tool inventory.source
ProviderToolCompatOptionsOptions accepted by provider tool compat.source
ProviderToolCompatProviderPublic API contract for provider tool compat provider.source
ProviderToolProfilePublic API contract for provider tool profile.source
RecordExternalAgentWorkerSessionInputInput payload for record external agent worker session.source
RedisClientRedis client interface (compatible with ioredis and node-redis)source
RedisMemoryConfigRedis memory configurationsource
RegisterAgentPushRuntimeServiceRequestRequest payload for register agent push runtime service.source
RegisterExternalAgentWorkerInputInput payload for register external agent worker.source
RequestAuthCachePublic API contract for request auth cache.source
ResolveAgentServiceRegistrationInputOptionsOptions accepted by resolve agent service registration input.source
ResolveConversationHostedTerminalStateInputInput payload for resolve conversation hosted terminal state.source
ResolvedAgentConfigConfiguration used by resolved agent.source
ResolvedAgentServiceRegistrationInputInput payload for resolved agent service registration.source
ResolvedHostedRuntimeRequestConfigConfiguration used by resolved hosted runtime request.source
ResolvedModelTransportPublic API contract for resolved model transport.source
ResolvedRuntimeStateState for resolved runtime.source
ResolveHostedChildForkRuntimeConfigInputInput payload for resolve hosted child fork runtime config.source
ResolveHostedRuntimeRequestConfigInputInput payload for resolve hosted runtime request config.source
ResolveNodeAgentServiceTelemetryConfigOptionsOptions accepted by resolve node agent service telemetry config.source
ResolveNodeHostedAgentServiceTelemetryConfigOptionsOptions accepted by resolve node hosted agent service telemetry config.source
ResolveRuntimeAgentDefinitionsDirInputInput payload for resolve runtime agent definitions dir.source
RootOwnedChildResultHintPublic API contract for root owned child result hint.source
RootOwnedChildResultHintedPublic API contract for root owned child result hinted.source
RunAgentRuntimeForkStepInputInput payload for run agent runtime fork step.source
RunAgentServiceMainOptionsOptions accepted by run agent service main.source
RunFrameworkForkStepInputInput payload for run framework fork step.source
RunResumeSessionManagerOptionsOptions accepted by run resume session manager.source
RunSessionStatusPublic API contract for run session status.source
RuntimeAgentContextItemPublic API contract for runtime agent context item.source
RuntimeAgentControlPlaneStreamRequestRequest payload for runtime agent control plane stream.source
RuntimeAgentMarkdownDefinitionDefinition for runtime agent markdown.source
RuntimeAgentProjectContextContext for runtime agent project.source
RuntimeAgentRunContextContext for runtime agent run.source
RuntimeAgentRunInvocationPublic API contract for runtime agent run invocation.source
RuntimeAgentSourceContextContext for runtime agent source.source
RuntimeAgentTargetKindPublic API contract for runtime agent target kind.source
RuntimeAgentThinkingConfigConfiguration used by runtime agent thinking.source
RuntimeAgentToolPublic API contract for runtime agent tool.source
RuntimeAgentValidatedClaimsPublic API contract for runtime agent validated claims.source
RuntimeBuiltinSkillEntriesResultResult returned from runtime builtin skill entries.source
RuntimeClientCapabilityPublic API contract for runtime client capability.source
RuntimeClientProfilePublic API contract for runtime client profile.source
RuntimeClientTypePublic API contract for runtime client type.source
RuntimeFileUrlResolverPublic API contract for runtime file URL resolver.source
RuntimeFileUrlResolverInputInput payload for runtime file URL resolver.source
RuntimeGetProjectFileOptionsOptions accepted by runtime get project file.source
RuntimeLoadedProjectSkillPublic API contract for runtime loaded project skill.source
RuntimeLoadedSkillResponseResponse payload for runtime loaded skill.source
RuntimeLoadedSkillResponseMessagesPublic API contract for runtime loaded skill response messages.source
RuntimeLoadSkillBuiltinStorePublic API contract for runtime load skill builtin store.source
RuntimeLoadSkillErrorOutputOutput from runtime load skill error.source
RuntimeLoadSkillReferenceFileOutputOutput from runtime load skill reference file.source
RuntimeLoadSkillToolContextContext for runtime load skill tool.source
RuntimeLoadSkillToolInputInput payload for runtime load skill tool.source
RuntimeLoadSkillToolMessagesPublic API contract for runtime load skill tool messages.source
RuntimeLoadSkillToolOptionsOptions accepted by runtime load skill tool.source
RuntimeLoadSkillToolOutputOutput from runtime load skill tool.source
RuntimeProjectFilePublic API contract for runtime project file.source
RuntimeProjectFileListItemPublic API contract for runtime project file list item.source
RuntimeProjectFilesApiOptionsOptions accepted by runtime project files API.source
RuntimeProjectFilesClientPublic API contract for runtime project files client.source
RuntimeProjectFilesClientOptionsOptions accepted by runtime project files client.source
RuntimeProjectFilesFetchPublic API contract for runtime project files fetch.source
RuntimeProjectFilesTracePublic API contract for runtime project files trace.source
RuntimeProjectInstructionsOptionsOptions accepted by runtime project instructions.source
RuntimeProjectSkillCatalogOptionsOptions accepted by runtime project skill catalog.source
RuntimeProjectSkillContextContext for runtime project skill.source
RuntimeProjectSkillLoaderPublic API contract for runtime project skill loader.source
RuntimeProjectSkillLoaderLoggerPublic API contract for runtime project skill loader logger.source
RuntimeProjectSkillLoaderOptionsOptions accepted by runtime project skill loader.source
RuntimeProjectSteeringLookupPublic API contract for runtime project steering lookup.source
RuntimePromptBlockOptionsOptions accepted by runtime prompt block.source
RuntimeSkillDefinitionDefinition for runtime skill.source
RuntimeSkillFrontmatterPublic API contract for runtime skill frontmatter.source
RuntimeSkillMetadataLoggerPublic API contract for runtime skill metadata logger.source
RuntimeStateRequestRequest payload for runtime state.source
RuntimeStateResolverPublic API contract for runtime state resolver.source
RuntimeUploadUrlClientOptionsOptions accepted by runtime upload URL client.source
RuntimeUploadUrlFetchPublic API contract for runtime upload URL fetch.source
RuntimeUploadUrlOptionsOptions accepted by runtime upload URL.source
SlashCommandArtifactPolicyPublic API contract for slash command artifact policy.source
SlashCommandArtifactPolicyInputInput payload for slash command artifact policy.source
StartAgentRuntimeForkInputInput payload for start agent runtime fork.source
StartAgentRuntimeForkWithHostToolsInputInput payload for start agent runtime fork with host tools.source
StartAgentServiceRuntimeOptionsOptions accepted by start agent service runtime.source
StartAgentServiceRuntimeResultResult returned from start agent service runtime.source
StartAgentServiceServerOptionsOptions accepted by start agent service server.source
StartedHostedChildForkRuntimePublic API contract for started hosted child fork runtime.source
StartHostedChildForkRuntimeWithHostToolsInputInput payload for start hosted child fork runtime with host tools.source
StartNodeAgentServiceOptionsOptions accepted by start node agent service.source
StartNodeAgentServiceResultResult returned from start node agent service.source
StartNodeAgentServiceServerOptionsOptions accepted by start node agent service server.source
StartNodeHostedAgentServiceOptionsOptions accepted by start node hosted agent service.source
StartNodeHostedAgentServiceResultResult returned from start node hosted agent service.source
StreamToolCallPublic API contract for stream tool call.source
SubmitResumeValueOutcomePublic API contract for submit resume value outcome.source
SuggestionPublic API contract for suggestion.source
SuggestionsPublic API contract for suggestions.source
TerminalConversationRunStatusPublic API contract for terminal conversation run status.source
ToolCallPublic API contract for tool call.source
ToolCallPartAgent message part for a tool call.source
ToolCallPartWithArgsTool-call message part that stores arguments.source
ToolCallPartWithInputTool-call message part that stores input.source
ToolExecutionDataEventBridgeStreamInputInput payload for tool execution data event bridge stream.source
ToolExecutionDataEventPublisherPublic API contract for tool execution data event publisher.source
ToolResultPartAgent message part for a tool result.source
VeryfrontCloudAgentServiceOptionsOptions accepted by Veryfront Cloud agent service.source
VeryfrontCloudHostedChatExecutionPreparationLoggerPublic API contract for Veryfront Cloud hosted chat execution preparation logger.source
VeryfrontMcpServerKindPublic API contract for veryfront MCP server kind.source
WaitForDurableHumanInputResolutionOptionsOptions accepted by wait for durable human input resolution.source
WaitForHumanInputOptionsOptions accepted by wait for human input.source
WorkflowConfigConfiguration used by workflow.source
WorkflowResultResult returned from workflow.source
WorkflowStepPublic API contract for workflow step.source
WrapHostedChildProjectSwitchToolInputInput payload for wrap hosted child project switch tool.source
WrapHostedChildSteeringMutationToolInputInput payload for wrap hosted child steering mutation tool.source

Constants

NameDescriptionSource
agentServiceConfigSchemaZod schema for agent service config.source
agentServiceRegistrationConfigSchemaZod schema for agent service registration config.source
agUiSseEventTypesAG-UI runtime event type constants normalized from browser-wire SSE events.source
conversationRunEventTypesShared conversation run event types value.source
createNodeHostedAgentServiceRuntimeInfrastructureCreate node hosted agent service runtime infrastructure.source
defaultHostedInvokeAgentInputSchemaSchema for default hosted invoke agent input.source
defaultHostedInvokeAgentSelectionSchemaSchema for default hosted invoke agent selection.source
getAgUiRuntimeContextItemSchemaZod schema for get AG-UI runtime context item.source
getAgUiRuntimeInjectedToolSchemaZod schema for get AG-UI runtime injected tool.source
getAgUiRuntimeMessageSchemaZod schema for get AG-UI runtime message.source
getAgUiRuntimeRequestSchemaZod schema for get AG-UI runtime request.source
getCreateInputRequestRequestSchemaZod schema for get create input request request.source
getCreateInputRequestResponseSchemaZod schema for get create input request response.source
getFormInputToolInputSchemaZod schema for get form input tool input.source
getGetInputRequestResponseSchemaZod schema for get get input request response.source
getHumanInputFieldSchemaZod schema for get human input field.source
getHumanInputOptionSchemaZod schema for get human input option.source
getHumanInputPendingRequestSchemaZod schema for get human input pending request.source
getHumanInputRequestSchemaZod schema for get human input request.source
getHumanInputResultSchemaZod schema for get human input result.source
getInputRequestLifecycleDataEventSchemaZod schema for get input request lifecycle data event.source
getInputRequestOutputSchemaZod schema for get input request output.source
getInputRequestRestSchemaZod schema for get input request rest.source
getInputResponseRestSchemaZod schema for get input response rest.source
getInputResponseValuesSchemaZod schema for get input response values.source
getParseRuntimeAgentMarkdownDefinitionInputSchemaZod schema for get parse runtime agent markdown definition input.source
getRuntimeAgentMarkdownDefinitionSchemaZod schema for get runtime agent markdown definition.source
getRuntimeAgentThinkingConfigSchemaZod schema for get runtime agent thinking config.source
getRuntimeClientCapabilitySchemaZod schema for get runtime client capability.source
getRuntimeClientProfileSchemaZod schema for get runtime client profile.source
getRuntimeClientTypeSchemaZod schema for get runtime client type.source
hostedAgentProjectSteeringOptionsSchemaZod schema for hosted agent project steering options.source
hostedAgentServiceConfigSchemaZod schema for hosted agent service config.source
hostedAgUiChatForwardedConfigSchemaSchema for agent service AG-UI chat forwarded config. Schema for hosted AG-UI chat forwarded config.source
hostedChatRequestSchemaSchema for hosted chat request.source
hostedChatRuntimeOverridesSchemaSchema for hosted chat runtime overrides.source
hostedChildForkToolInputSchemaSchema for hosted child fork tool input.source
hostedChildTerminalErrorCodesShared hosted child terminal error codes value.source
hostedDurableRootRunDescriptorSchemaSchema for hosted durable root run descriptor.source
loadHostedAgentServiceEnvFilesLoads hosted agent service env files.source
loadRuntimeAgentMarkdownDefinitionFromFileInputSchemaZod schema for load runtime agent markdown definition from file input.source
parseRuntimeAgentMarkdownDefinitionInputSchemaSchema for parse runtime agent markdown definition input.source
resolvedAgentServiceRegistrationInputSchemaZod schema for resolved agent service registration input.source
resolveRuntimeAgentDefinitionsDirInputSchemaZod schema for resolve runtime agent definitions dir input.source
runtimeAgentMarkdownDefinitionSchemaSchema for runtime agent markdown definition.source
runtimeAgentThinkingConfigSchemaSchema for runtime agent thinking config.source
runtimeClientCapabilitySchemaSchema for runtime client capability.source
runtimeClientProfileSchemaSchema for runtime client profile.source
runtimeClientTypeSchemaSchema for runtime client type.source
runtimeProjectFileListItemSchemaSchema for runtime project file list item.source
runtimeProjectFileSchemaSchema for runtime project file.source

Deep imports

These import paths group focused functionality under this module. Each is a separate barrel; import only what you need.

veryfront/agent/conversation-bootstrap

import { bootstrapConversationAgentRun, createConversationMessage, createConversationRecord } from "veryfront/agent/conversation-bootstrap";

Components

NameDescriptionSource
ConversationMessageRecordSchemaSchema for conversation message record.source
ConversationRecordSchemaSchema for conversation record.source

Functions

NameDescriptionSource
bootstrapConversationAgentRunBootstrap conversation agent run helper.source
createConversationMessageMessage shape for create conversation.source
createConversationRecordRecord shape for create conversation.source
ensureConversationProjectLinkEnsure conversation project link helper.source
fetchConversationRecordRecord shape for fetch conversation.source
findLatestUserConversationMessageContextContext for find latest user conversation message.source
persistConversationUserMessageMessage shape for persist conversation user.source
persistLatestConversationUserMessageMessage shape for persist latest conversation user.source

Types

NameDescriptionSource
BootstrapConversationAgentRunResultResult returned from bootstrap conversation agent run.source
ConversationControlPlaneResponseErrorError shape for conversation control plane response.source
ConversationMessageRecordRecord shape for conversation message.source
ConversationRecordRecord shape for conversation.source
PersistConversationUserMessageFailurePublic API contract for persist conversation user message failure.source

Constants

NameDescriptionSource
getConversationMessageRecordSchemaZod schema for get conversation message record.source
getConversationRecordSchemaZod schema for get conversation record.source

veryfront/agent/durable

import { appendConversationRunEvents, createConversationAgentRun, createConversationRunEventQueueController } from "veryfront/agent/durable";

Components

NameDescriptionSource
AppendConversationRunEventsResponseSchemaSchema for append conversation run events response.source
CompleteConversationRunResponseSchemaSchema for complete conversation run response.source
ConversationRunProjectionSchemaSchema for conversation run projection.source
ConversationRunStatusSchemaSchema for conversation run status.source
ConversationRunTargetsSchemaSchema for conversation run targets.source
CreateConversationRunAcceptedSchemaSchema for create conversation run accepted.source

Functions

NameDescriptionSource
appendConversationRunEventsAppend conversation run events.source
createConversationAgentRunCreate conversation agent run.source
createConversationRunEventQueueControllerCreate conversation run event queue controller.source
finalizeConversationAgentRunFinalize conversation agent run helper.source
flushConversationRunEventBatchesFlush conversation run event batches.source
flushConversationRunEventQueueFlush conversation run event queue.source
getConversationRunReturn conversation run.source
isActiveConversationRunStatusCheck whether a conversation run status is active.source
isAppendableConversationRunProjectionCheck whether a conversation run projection can accept more events.source
isCursorMismatchConversationRunAppendErrorError shape for is cursor mismatch conversation run append.source
isIgnorableConversationRunAppendErrorError shape for is ignorable conversation run append.source
monitorConversationRunStatusMonitor conversation run status helper.source
parseAppendConversationRunEventsErrorBodyParses append conversation run events error body.source
recoverConversationRunAppendExecutionRecover conversation run append execution helper.source
recoverConversationRunAppendFailureRecover conversation run append failure helper.source
recoverConversationRunCursorMismatchRecover conversation run cursor mismatch helper.source
resolveConversationRunTargetsResolves conversation run targets.source
resyncConversationRunAppendCursorResync conversation run append cursor helper.source

Classes

NameDescriptionSource
AppendConversationRunEventsErrorError shape for append conversation run events.source
ConversationRunTerminalStateErrorError shape for conversation run terminal state.source

Types

NameDescriptionSource
ActiveConversationRunStatusPublic API contract for a conversation run status is active.source
AppendConversationRunEventsResponseResponse payload for append conversation run events.source
ConversationAgentRunUsagePublic API contract for conversation agent run usage.source
ConversationRunAppendCursorResyncResultResult returned from conversation run append cursor resync.source
ConversationRunAppendExecutionOutcomePublic API contract for conversation run append execution outcome.source
ConversationRunAppendFailureOutcomePublic API contract for conversation run append failure outcome.source
ConversationRunAppendRecoveryOutcomePublic API contract for conversation run append recovery outcome.source
ConversationRunBatchFlushOutcomePublic API contract for conversation run batch flush outcome.source
ConversationRunEventQueueControllerPublic API contract for conversation run event queue controller.source
ConversationRunProjectionPublic API contract for conversation run projection.source
ConversationRunQueueFlushOutcomePublic API contract for conversation run queue flush outcome.source
ConversationRunTargetsPublic API contract for conversation run targets.source
CreateConversationAgentRunInputInput payload for create conversation agent run.source
FinalizeConversationAgentRunInputInput payload for finalize conversation agent run.source
TerminalConversationRunStatusPublic API contract for terminal conversation run status.source

Constants

NameDescriptionSource
getAppendConversationRunEventsResponseSchemaZod schema for get append conversation run events response.source
getCompleteConversationRunResponseSchemaZod schema for get complete conversation run response.source
getConversationRunProjectionSchemaZod schema for get conversation run projection.source
getConversationRunStatusSchemaZod schema for get conversation run status.source
getConversationRunTargetsSchemaZod schema for get conversation run targets.source
getCreateConversationRunAcceptedSchemaZod schema for get create conversation run accepted.source

veryfront/agent/invoke-agent-child-runs

import { buildInvokeAgentChildRunLifecycleCustomEvent, buildInvokeAgentChildRunProgressEvents, buildInvokeAgentChildRunStateDelta } from "veryfront/agent/invoke-agent-child-runs";

Components

NameDescriptionSource
InvokeAgentChildRunLifecycleCustomEventSchemaSchema for invoke agent child run lifecycle custom event.source
InvokeAgentChildRunLifecycleValueSchemaSchema for invoke agent child run lifecycle value.source
InvokeAgentChildRunStateDeltaSchemaSchema for invoke agent child run state delta.source

Functions

NameDescriptionSource
buildInvokeAgentChildRunLifecycleCustomEventEvent emitted for build invoke agent child run lifecycle custom.source
buildInvokeAgentChildRunProgressEventsBuilds invoke agent child run progress events.source
buildInvokeAgentChildRunStateDeltaBuilds invoke agent child run state delta.source
publishInvokeAgentChildRunProgressPublish invoke agent child run progress helper.source

Types

NameDescriptionSource
InvokeAgentChildRunLifecycleCustomEventEvent emitted for invoke agent child run lifecycle custom.source
InvokeAgentChildRunLifecycleValuePublic API contract for invoke agent child run lifecycle value.source
InvokeAgentChildRunProgressEventEvent emitted for invoke agent child run progress.source
InvokeAgentChildRunProgressInputInput payload for invoke agent child run progress.source
InvokeAgentChildRunStateDeltaPublic API contract for invoke agent child run state delta.source

Constants

NameDescriptionSource
getInvokeAgentChildRunLifecycleCustomEventSchemaZod schema for get invoke agent child run lifecycle custom event.source
getInvokeAgentChildRunLifecycleValueSchemaZod schema for get invoke agent child run lifecycle value.source
getInvokeAgentChildRunStateDeltaSchemaZod schema for get invoke agent child run state delta.source

veryfront/agent/request-auth-cache

import { createRequestAuthCache } from "veryfront/agent/request-auth-cache";

Functions

NameDescriptionSource
createRequestAuthCacheCreate request auth cache.source

Types

NameDescriptionSource
CachedRequestAuthResultResult returned from cached request auth.source
CreateRequestAuthCacheOptionsOptions accepted by create request auth cache.source
RequestAuthCachePublic API contract for request auth cache.source

veryfront/agent/testing

Agent Testing Utilities
import { assertCompleted, assertContains, assertDurableRunCanaryCompleted } from "veryfront/agent/testing";

Components

NameDescriptionSource
DEFAULT_DURABLE_RUN_CANARY_TIMEOUT_MSDefault value for durable run canary timeout ms.source
DEFAULT_LIVE_EVAL_AREA_TAG_RULESDefault value for live eval area tag rules.source
DEFAULT_LIVE_EVAL_ENDPOINTDefault value for live eval endpoint.source
DEFAULT_LIVE_EVAL_OPTIONAL_JUDGE_CASE_PREFIXESDefault value for live eval optional judge case prefixes.source

Functions

NameDescriptionSource
assertCompletedAssert completed helper.source
assertContainsAssert contains helper.source
assertDurableRunCanaryCompletedAssert that a durable run canary completed successfully.source
assertNoMalformedCreateFileToolCallsAssert no malformed create file tool calls helper.source
assertToolCalledAssert tool called helper.source
buildFailureSuffixBuilds failure suffix.source
buildLiveEvalCaseMetadataBuilds live eval case metadata.source
buildLiveEvalCaseTagSummaryBuilds live eval case tag summary.source
buildLiveEvalRequestBodyBuilds live eval request body.source
buildLiveEvalRuntimeSummaryBuilds live eval runtime summary.source
buildLiveEvalStatusSummaryBuilds live eval status summary.source
buildProgressLineBuilds progress line.source
buildRuntimePerformanceSummaryBuilds runtime performance summary.source
cancelLiveEvalInputRequestRequest payload for cancel live eval input.source
collectAssistantTextCollect assistant text helper.source
containsOrderedSubsequenceContains ordered subsequence helper.source
containsSkillLoadContains skill load helper.source
countStepStartedEventsCount step started events helper.source
createDurableRunCanaryApiClientCreate durable run canary API client.source
createDurableRunCanaryRunnerCreate durable run canary runner.source
createFailedEvalResultResult returned from create failed eval.source
createLiveEvalApiClientCreate live eval API client.source
createLiveEvalCaseSupportCreate live eval case support.source
createLiveEvalConversationCreate live eval conversation.source
createLiveEvalProjectUploadFixtureCreate live eval project upload fixture.source
createLiveEvalReleaseCreate live eval release.source
createPassedEvalResultResult returned from create passed eval.source
createPlainTextPdfCreate plain text pdf.source
createSkippedEvalResultResult returned from create skipped eval.source
deleteLiveEvalConversationDelete live eval conversation helper.source
deleteLiveEvalProjectFileDelete live eval project file helper.source
evaluateRuntimeConfidenceEnvEvaluate runtime confidence env helper.source
findAssistantMessageMessage shape for find assistant.source
getLiveEvalProjectFileReturn live eval project file.source
hasEveryLiveEvalTagCheck whether every live eval tag is present.source
hasFinishedCheck whether finished is present.source
listOpenLiveEvalInputRequestsList open live eval input requests.source
parseDurableRunCanaryRunSummaryParses durable run canary run summary.source
printRuntimeConfidencePreflightPrint runtime confidence preflight helper.source
printTestResultsPrint test results helper.source
resolveDurableRunCanaryEnvironmentResolves durable run canary environment.source
resolveLiveEvalEnvironmentResolves live eval environment.source
resolveLiveEvalRequestedCaseIdsResolves live eval requested case IDs.source
runDurableRunCanaryCliRun durable run canary cli.source
runLiveEvalCliRun live eval cli.source
selectLiveEvalCasesSelect live eval cases helper.source
stringifyUnknownStringify unknown helper.source
submitLiveEvalInputResponseResponse payload for submit live eval input.source
testAgentTest agent helper.source
waitForOpenLiveEvalInputRequestRequest payload for wait for open live eval input.source
withLiveEvalMetadataApplies live eval metadata.source

Types

NameDescriptionSource
BuildLiveEvalCaseMetadataInputInput payload for build live eval case metadata.source
BuildLiveEvalRequestBodyInputInput payload for build live eval request body.source
DurableRunCanaryApiClientPublic API contract for durable run canary API client.source
DurableRunCanaryApiConfigConfiguration used by durable run canary API.source
DurableRunCanaryCasePublic API contract for durable run canary case.source
DurableRunCanaryCliCaseFactoryInputInput payload for durable run canary cli case factory.source
DurableRunCanaryCreateRootRunInputInput payload for durable run canary create root run.source
DurableRunCanaryEnvironmentPublic API contract for durable run canary environment.source
DurableRunCanaryMessageMessage shape for durable run canary.source
DurableRunCanaryPreparedCasePublic API contract for durable run canary prepared case.source
DurableRunCanaryResultResult returned from durable run canary.source
DurableRunCanaryRunnerConfigConfiguration used by durable run canary runner.source
DurableRunCanaryRunSummaryPublic API contract for durable run canary run summary.source
DurableRunCanarySendUserMessageInputInput payload for durable run canary send user message.source
DurableRunCanaryStartRunInputInput payload for durable run canary start run.source
LiveEvalApiClientPublic API contract for live eval API client.source
LiveEvalApiContextContext for live eval API.source
LiveEvalCasePublic API contract for live eval case.source
LiveEvalCaseMetadataPublic API contract for live eval case metadata.source
LiveEvalCaseMetadataOptionsOptions accepted by live eval case metadata.source
LiveEvalCaseSelectionInputInput payload for live eval case selection.source
LiveEvalCaseSurfacePublic API contract for live eval case surface.source
LiveEvalCaseTagRulePublic API contract for live eval case tag rule.source
LiveEvalCliCaseFactoryInputInput payload for live eval cli case factory.source
LiveEvalCliCaseGroupsPublic API contract for live eval cli case groups.source
LiveEvalContextContext for live eval.source
LiveEvalConversationInputInput payload for live eval conversation.source
LiveEvalCreateConversationInputInput payload for live eval create conversation.source
LiveEvalCreateReleaseInputInput payload for live eval create release.source
LiveEvalEnvironmentPublic API contract for live eval environment.source
LiveEvalInputRequestInputInput payload for live eval input request.source
LiveEvalInputRequestRecordRecord shape for live eval input request.source
LiveEvalInputResponseValuesPublic API contract for live eval input response values.source
LiveEvalProjectFilePublic API contract for live eval project file.source
LiveEvalProjectFileInputInput payload for live eval project file.source
LiveEvalProjectFileReaderInputInput payload for live eval project file reader.source
LiveEvalProjectUploadFixtureInputInput payload for live eval project upload fixture.source
LiveEvalRequestBodyPublic API contract for live eval request body.source
LiveEvalRequestTimeoutInputInput payload for live eval request timeout.source
LiveEvalResultForPerformancePublic API contract for live eval result for performance.source
LiveEvalResultForReportPublic API contract for live eval result for report.source
LiveEvalResultRecordRecord shape for live eval result.source
LiveEvalRunnerConfigConfiguration used by live eval runner.source
LiveEvalRuntimePublic API contract for live eval runtime.source
LiveEvalSubmitInputResponseInputInput payload for live eval submit input response.source
LiveEvalWaitForOpenInputRequestInputInput payload for live eval wait for open input request.source
PreparedLiveEvalInputInput payload for prepared live eval.source
RunDurableRunCanaryCliInputInput payload for run durable run canary cli.source
RunLiveEvalCliInputInput payload for run live eval cli.source
RuntimeConfidencePreflightResultResult returned from runtime confidence preflight.source
RuntimePerformanceSummaryPublic API contract for runtime performance summary.source
TestCasePublic API contract for test case.source
TestResultResult returned from test.source
TestSuitePublic API contract for test suite.source

Constants

NameDescriptionSource
durableRunCanaryRunnerInternalsWhite-box helpers used by durable run canary tests.source
getDurableRunCanaryMessageSchemaZod schema for get durable run canary message.source
liveEvalRunnerInternalsWhite-box helpers used by live eval runner tests.source
Reference modules: User guides: Architecture: