MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / fallbackOutcomeResult

Function fallbackOutcomeResult

packages/hosts/mcp/src/tool-server.ts:729–739  ·  view source on GitHub ↗
(
  executionId: string,
  outcome: ResumeFallbackOutcome,
)

Source from the content-addressed store, hash-verified

727 resumeUnavailableResult({ status: "execution_already_settled", executionId });
728
729const fallbackOutcomeResult = (
730 executionId: string,
731 outcome: ResumeFallbackOutcome,
732): McpToolResult => {
733 if (outcome.status === "result") return outcome.result;
734 return resumeUnavailableResult({
735 status: outcome.status,
736 executionId,
737 ttlMs: "ttlMs" in outcome ? outcome.ttlMs : undefined,
738 });
739};
740
741// The `skills` tool serves named, static how-to docs (see the execution
742// package's skills registry). No name -> the index; a known name -> that

Callers 1

resumeExecutionFunction · 0.85

Calls 1

resumeUnavailableResultFunction · 0.85

Tested by

no test coverage detected