/** * Target directory for gsd-munch command stubs. * Coexists alongside upstream GSD's ~/.claude/commands/gsd/ without conflict. */ declare const COMMANDS_GM_DIR: string; /** * Reads all .md command stub templates from the package commands/ directory, * applies transformContent to each (updating paths and /gsd: -> /gm: namespace), * and writes them to ~/.claude/commands/gm/. * * Creates the target directory if it doesn't exist. * Safe to re-run — overwrites existing stubs (idempotent by design). * * @param gsdMunchHome Deployed assets home directory (defaults to ~/.claude/gsd-munch) */ declare function registerCommands(gsdMunchHome?: string): Promise; export { COMMANDS_GM_DIR, registerCommands };