/** * Shared filesystem path helpers for DeepSeek Harness user data. * * @module @deepseek-ai/dsh-paths */ import { homedir } from 'node:os' import { join, resolve } from 'node:path' /** Directory name for the default DeepSeek Harness home under the OS home. */ export const DSH_HOME_DIR_NAME = '.dsh' /** Stable user-facing display form for the default DeepSeek Harness home. */ export const DEFAULT_DSH_HOME_DISPLAY = `~/${DSH_HOME_DIR_NAME}` /** Environment variable that overrides the default DeepSeek Harness home. */ export const DSH_HOME_ENV = 'DSH_HOME' /** * Resolve the default DeepSeek Harness home using Node's platform path rules. * @returns the absolute default harness home path. */ export function defaultDshHome(): string { return join(homedir(), DSH_HOME_DIR_NAME) } /** * Expand supported tilde prefixes against the operating-system home. * @param path - configured path that may begin with `~`, `~/`, or `~\`. * @returns the expanded path, or the original value when no supported prefix is present. */ export function expandHomePath(path: string): string { if (path === '~') return homedir() if (path.startsWith('~/') || path.startsWith('~\\')) return join(homedir(), path.slice(2)) return path } /** * Resolve an explicitly configured, environment-selected, or default DSH home. * @param configured - explicit harness-home override, which has highest precedence. * @param env - environment mapping used to read `DSH_HOME`. * @returns the normalized absolute harness home path. */ export function resolveDshHome(configured?: string, env: Record = process.env): string { const selected = configured ?? env[DSH_HOME_ENV] ?? defaultDshHome() return resolve(expandHomePath(selected)) }