UNPKG

hataraku

Version:

An autonomous coding agent for building AI-powered development tools. The name "Hataraku" (働く) means "to work" in Japanese.

19 lines (18 loc) 544 B
export interface ConfigPaths { configDir: string; dataDir: string; toolsDir: string; agentsDir: string; tasksDir: string; logsDir: string; } /** * Get configuration paths following XDG Base Directory Specification * @see https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html */ export declare function getConfigPaths(): ConfigPaths; /** * Create all required configuration directories * @throws {Error} If directory creation fails */ export declare function createConfigDirectories(): void;