mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-18 06:04:05 +00:00
Clean up agentDir handling and remove redundant code
- Use default params instead of resolvedAgentDir pattern in loaders - Remove unused DiscoverAndLoadHooksOptions interface - Remove redundant github-copilot special casing in getAvailableModels
This commit is contained in:
parent
1236ab8007
commit
f7a12c478c
3 changed files with 4 additions and 26 deletions
|
|
@ -317,9 +317,8 @@ export async function discoverAndLoadCustomTools(
|
|||
configuredPaths: string[],
|
||||
cwd: string,
|
||||
builtInToolNames: string[],
|
||||
agentDir?: string,
|
||||
agentDir: string = getAgentDir(),
|
||||
): Promise<CustomToolsLoadResult> {
|
||||
const resolvedAgentDir = agentDir ?? getAgentDir();
|
||||
const allPaths: string[] = [];
|
||||
const seen = new Set<string>();
|
||||
|
||||
|
|
@ -335,7 +334,7 @@ export async function discoverAndLoadCustomTools(
|
|||
};
|
||||
|
||||
// 1. Global tools: agentDir/tools/
|
||||
const globalToolsDir = path.join(resolvedAgentDir, "tools");
|
||||
const globalToolsDir = path.join(agentDir, "tools");
|
||||
addPaths(discoverToolsInDir(globalToolsDir));
|
||||
|
||||
// 2. Project-local tools: cwd/.pi/tools/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue