Includes: CLAUDE.md, settings.json, agents, commands, rules, skills, hooks, contexts, evals, get-shit-done, plugin configs (installed list and marketplace sources). Excludes credentials, runtime caches, telemetry, session data, and plugin binary cache.
69 lines
3.2 KiB
JavaScript
69 lines
3.2 KiB
JavaScript
/**
|
|
* Mapping of GSD agent to model for each profile.
|
|
*
|
|
* Should be in sync with the profiles table in `get-shit-done/references/model-profiles.md`. But
|
|
* possibly worth making this the single source of truth at some point, and removing the markdown
|
|
* reference table in favor of programmatically determining the model to use for an agent (which
|
|
* would be faster, use fewer tokens, and be less error-prone).
|
|
*/
|
|
const MODEL_PROFILES = {
|
|
'gsd-planner': { quality: 'opus', balanced: 'opus', budget: 'sonnet' },
|
|
'gsd-roadmapper': { quality: 'opus', balanced: 'sonnet', budget: 'sonnet' },
|
|
'gsd-executor': { quality: 'opus', balanced: 'sonnet', budget: 'sonnet' },
|
|
'gsd-phase-researcher': { quality: 'opus', balanced: 'sonnet', budget: 'haiku' },
|
|
'gsd-project-researcher': { quality: 'opus', balanced: 'sonnet', budget: 'haiku' },
|
|
'gsd-research-synthesizer': { quality: 'sonnet', balanced: 'sonnet', budget: 'haiku' },
|
|
'gsd-debugger': { quality: 'opus', balanced: 'sonnet', budget: 'sonnet' },
|
|
'gsd-codebase-mapper': { quality: 'sonnet', balanced: 'haiku', budget: 'haiku' },
|
|
'gsd-verifier': { quality: 'sonnet', balanced: 'sonnet', budget: 'haiku' },
|
|
'gsd-plan-checker': { quality: 'sonnet', balanced: 'sonnet', budget: 'haiku' },
|
|
'gsd-integration-checker': { quality: 'sonnet', balanced: 'sonnet', budget: 'haiku' },
|
|
'gsd-nyquist-auditor': { quality: 'sonnet', balanced: 'sonnet', budget: 'haiku' },
|
|
'gsd-ui-researcher': { quality: 'opus', balanced: 'sonnet', budget: 'haiku' },
|
|
'gsd-ui-checker': { quality: 'sonnet', balanced: 'sonnet', budget: 'haiku' },
|
|
'gsd-ui-auditor': { quality: 'sonnet', balanced: 'sonnet', budget: 'haiku' },
|
|
};
|
|
const VALID_PROFILES = Object.keys(MODEL_PROFILES['gsd-planner']);
|
|
|
|
/**
|
|
* Formats the agent-to-model mapping as a human-readable table (in string format).
|
|
*
|
|
* @param {Object<string, string>} agentToModelMap - A mapping from agent to model
|
|
* @returns {string} A formatted table string
|
|
*/
|
|
function formatAgentToModelMapAsTable(agentToModelMap) {
|
|
const agentWidth = Math.max('Agent'.length, ...Object.keys(agentToModelMap).map((a) => a.length));
|
|
const modelWidth = Math.max(
|
|
'Model'.length,
|
|
...Object.values(agentToModelMap).map((m) => m.length)
|
|
);
|
|
const sep = '─'.repeat(agentWidth + 2) + '┼' + '─'.repeat(modelWidth + 2);
|
|
const header = ' ' + 'Agent'.padEnd(agentWidth) + ' │ ' + 'Model'.padEnd(modelWidth);
|
|
let agentToModelTable = header + '\n' + sep + '\n';
|
|
for (const [agent, model] of Object.entries(agentToModelMap)) {
|
|
agentToModelTable += ' ' + agent.padEnd(agentWidth) + ' │ ' + model.padEnd(modelWidth) + '\n';
|
|
}
|
|
return agentToModelTable;
|
|
}
|
|
|
|
/**
|
|
* Returns a mapping from agent to model for the given model profile.
|
|
*
|
|
* @param {string} normalizedProfile - The normalized (lowercase and trimmed) profile name
|
|
* @returns {Object<string, string>} A mapping from agent to model for the given profile
|
|
*/
|
|
function getAgentToModelMapForProfile(normalizedProfile) {
|
|
const agentToModelMap = {};
|
|
for (const [agent, profileToModelMap] of Object.entries(MODEL_PROFILES)) {
|
|
agentToModelMap[agent] = profileToModelMap[normalizedProfile];
|
|
}
|
|
return agentToModelMap;
|
|
}
|
|
|
|
module.exports = {
|
|
MODEL_PROFILES,
|
|
VALID_PROFILES,
|
|
formatAgentToModelMapAsTable,
|
|
getAgentToModelMapForProfile,
|
|
};
|