/** * Target directory for Claude Code agent files. * Agent filenames preserve gsd-* naming (gsd-executor.md, gsd-planner.md, etc.) * as these are internal implementation names referenced by workflows. */ declare const AGENTS_DIR: string; /** * Reads all .md agent files from the package agents/ directory, * applies transformContent to each (updating paths and /gsd: -> /gm: namespace), * and writes them to ~/.claude/agents/. * * IMPORTANT: Agent filenames are preserved as gsd-*.md — the /gm: namespace * change applies only to user-facing command stubs. Agent names are internal * identifiers referenced by workflows when spawning subagents. * * Creates the target directory if it doesn't exist. * Safe to re-run — overwrites existing agent files (idempotent by design). * * @param gsdMunchHome Deployed assets home directory (defaults to ~/.claude/gsd-munch) */ declare function registerAgents(gsdMunchHome?: string): Promise; export { AGENTS_DIR, registerAgents };