import type { TaskShape } from "../types.js"; export function directPlan(shape: TaskShape) { return { topology: "direct" as const, agents: 0, reason: shape.reasonCodes }; }