mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 21:03:42 +00:00
fix: move managed binaries to bin/ and ignore hidden files in migration check
This commit is contained in:
parent
05b9d55656
commit
0a736e858d
3 changed files with 65 additions and 6 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue