agent team workflows

This commit is contained in:
Brian Madison
2025-06-08 17:34:38 -05:00
parent 54406fa871
commit f1fa6256f0
31 changed files with 2280 additions and 938 deletions

View File

@@ -109,7 +109,11 @@ async function installExpansionPack(packName) {
log('\nUpdating team configurations...', 'yellow');
for (const update of manifest.team_updates) {
const teamPath = path.join(projectRoot, 'agents', update.team);
// Try new location first (agent-teams), then fallback to old location (agents)
let teamPath = path.join(projectRoot, 'agent-teams', update.team);
if (!fs.existsSync(teamPath)) {
teamPath = path.join(projectRoot, 'agents', update.team);
}
if (fs.existsSync(teamPath)) {
try {