/** `solosquad skill new ` — scaffold `.solosquad/skills//SKILL.md`. */ export declare function skillNewCommand(name: string | undefined, opts?: { description?: string; }): Promise; /** `solosquad skill list` — bundled skills (+ workspace overrides). */ export declare function skillListCommand(): Promise; /** `solosquad skill show ` — resolve + print the SKILL.md path. */ export declare function skillShowCommand(name: string): Promise; /** * `solosquad skill validate` — delegates to the shared static gate * (`agent validate --all`), which validates every bundled + workspace SKILL.md * (skills and agents share the SKILL.md parser/validator). */ export declare function skillValidateCommand(): Promise;