MCPcopy Create free account
hub / github.com/cursor/plugins / errorStackOrMessage

Function errorStackOrMessage

orchestrate/skills/orchestrate/scripts/cli/util.ts:329–332  ·  view source on GitHub ↗
(err: unknown)

Source from the content-addressed store, hash-verified

327}
328
329export function errorStackOrMessage(err: unknown): string {
330 if (err instanceof Error) return err.stack ?? err.message;
331 return String(err);
332}
333
334export function buildKickoffPrompt(args: {
335 goal: string;

Callers 1

loadOrBailFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected