fix: move managed binaries to bin/ and ignore hidden files in migration check

This commit is contained in:
Jake 2026-01-06 07:52:49 +13:00
parent 05b9d55656
commit 0a736e858d
3 changed files with 65 additions and 6 deletions

View file

@ -142,11 +142,16 @@ export function getSettingsPath(): string {
return join(getAgentDir(), "settings.json");
}
/** Get path to tools directory */
/** Get path to tools directory (deprecated, use extensions/ for JS/TS tools) */
export function getToolsDir(): string {
return join(getAgentDir(), "tools");
}
/** Get path to managed binaries directory (fd, rg) */
export function getBinDir(): string {
return join(getAgentDir(), "bin");
}
/** Get path to prompt templates directory */
export function getPromptsDir(): string {
return join(getAgentDir(), "prompts");