MCPcopy Create free account
hub / github.com/anus-dev/ANUS / getProjectTempDir

Function getProjectTempDir

packages/core/src/utils/paths.ts:183–186  ·  view source on GitHub ↗
(projectRoot: string)

Source from the content-addressed store, hash-verified

181 * @returns The path to the project's temporary directory.
182 */
183export function getProjectTempDir(projectRoot: string): string {
184 const hash = getProjectHash(projectRoot);
185 return path.join(os.homedir(), ANUS_DIR, TMP_DIR_NAME, hash);
186}
187
188/**
189 * Returns the absolute path to the user-level commands directory.

Callers 4

initializeMethod · 0.85
getProjectTempDirMethod · 0.85
cleanupCheckpointsFunction · 0.85
getHistoryFilePathFunction · 0.85

Calls 1

getProjectHashFunction · 0.85

Tested by

no test coverage detected