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

Function parsePlanValue

orchestrate/skills/orchestrate/scripts/schemas.ts:552–560  ·  view source on GitHub ↗
(value: unknown, source: string)

Source from the content-addressed store, hash-verified

550}
551
552export function parsePlanValue(value: unknown, source: string): Plan {
553 return parseUnknownWithSchema({
554 schema: PlanSchema,
555 value,
556 source,
557 recoveryHint: "Fix the offending fields before running orchestrate again.",
558 rejectDeletedTrackerFields: true,
559 });
560}
561
562export function parsePlanTaskJson(text: string, source: string): PlanTask {
563 return parseJsonWithSchema({

Callers 1

loadMethod · 0.90

Calls 1

parseUnknownWithSchemaFunction · 0.85

Tested by

no test coverage detected