/** * v1.3.6 §3.6 / §6.4 — `solosquad validate [kind]`: the cross-kind static gate. * * The unified `asset` front door is being retired: every `asset ` * was a duplicate of the per-kind group (`asset list skill` == `skill list`), * and the *only* value unique to a front door is cross-kind work — which here * is whole-bundle validation. So that one capability is promoted to a top-level, * noun-free command (the CI gate); discovery stays with `solosquad commands`. * * Kind omitted = validate everything (skill+agent graph, workflow, goal, cron). * Thin façade: delegates to each per-domain validate so there is one impl. */ export type AssetKind = "skill" | "agent" | "workflow" | "goal" | "cron"; export declare function validateAllCommand(kind: string | undefined): Promise;