/** * Resolve the path to Claude Code's `.claude.json` configuration file. * * Claude Code reads its config from `$CLAUDE_CONFIG_DIR/.claude.json` when the * `CLAUDE_CONFIG_DIR` environment variable is set (used for multi-profile setups * such as switching between personal and work accounts). When the variable is * unset or empty, Claude Code falls back to `~/.claude.json`. * * Hardcoding `os.homedir()` here previously caused `vess mcp register` (and the * companion uninstall/doctor commands) to silently target the wrong file when * the user had `CLAUDE_CONFIG_DIR` exported. The MCP entry was written but * Claude Code never read it back. (AIDENTITY-33) * * @returns Absolute path to the `.claude.json` file Claude Code is configured to use. */ export declare function getClaudeConfigPath(): string; //# sourceMappingURL=claude-config-path.d.ts.map