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

Function bail

orchestrate/skills/orchestrate/scripts/cli/util.ts:590–593  ·  view source on GitHub ↗
(msg: string)

Source from the content-addressed store, hash-verified

588}
589
590export function bail(msg: string): never {
591 console.error(msg);
592 process.exit(2);
593}
594
595export function firstChars(s: string | undefined, n: number): string {
596 return (s ?? "").slice(0, n);

Callers 1

buildInlineTaskFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected