routie dev init since i didn't adhere to any proper guidance up until now
This commit is contained in:
+37
@@ -0,0 +1,37 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.getAgentOutputPaths = getAgentOutputPaths;
|
||||
/**
|
||||
* Gets all output paths for an agent, taking into account any config overrides.
|
||||
*/
|
||||
function getAgentOutputPaths(agent, projectRoot, agentConfig) {
|
||||
const paths = [];
|
||||
const defaults = agent.getDefaultOutputPath(projectRoot);
|
||||
if (typeof defaults === 'string') {
|
||||
// Single output path (most agents)
|
||||
const actualPath = agentConfig?.outputPath ?? defaults;
|
||||
paths.push(actualPath);
|
||||
}
|
||||
else {
|
||||
// Multiple output paths (e.g., AiderAgent)
|
||||
const defaultPaths = defaults;
|
||||
// Handle instructions path
|
||||
if ('instructions' in defaultPaths) {
|
||||
const instructionsPath = agentConfig?.outputPathInstructions ?? defaultPaths.instructions;
|
||||
paths.push(instructionsPath);
|
||||
}
|
||||
// Handle config path
|
||||
if ('config' in defaultPaths) {
|
||||
const configPath = agentConfig?.outputPathConfig ?? defaultPaths.config;
|
||||
paths.push(configPath);
|
||||
}
|
||||
// Handle any other paths in the default paths record
|
||||
for (const [key, defaultPath] of Object.entries(defaultPaths)) {
|
||||
if (key !== 'instructions' && key !== 'config') {
|
||||
// For unknown path types, use the default since we don't have specific config overrides
|
||||
paths.push(defaultPath);
|
||||
}
|
||||
}
|
||||
}
|
||||
return paths;
|
||||
}
|
||||
Reference in New Issue
Block a user