/** * @traqr/core — Shell Init Generator * * Generates ~/.traqr/shell-init.sh — the single entry point that * replaces both worktree-aliases.sh and manual source lines. * * Structure: * 1. ANSI color variables (shared) * 2. CLI binary on PATH (per project) * 3. Smart traqr dispatcher * 4. Source per-project alias files * 5. MOTD */ /** * Generate the shell-init.sh content. * Reads the org config to find registered projects and the primary project. */ export declare function generateShellInitContent(): string; /** * Write shell-init.sh to ~/.traqr/shell-init.sh. * Creates directories as needed. * Returns the absolute path of the written file. */ export declare function writeShellInit(): string; //# sourceMappingURL=shell-init-generator.d.ts.map