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

@@ -106,8 +106,8 @@ program
agents.forEach(agentId => {
try {
const config = resolver.loadAgentConfig(agentId);
const webCompatible = config.environments.web?.available !== false;
const ideOnly = config.environments.ide?.ide_only === true;
const webCompatible = config.environments?.web?.available !== false;
const ideOnly = config.environments?.ide?.ide_only === true;
console.log(` ${agentId}: ${config.name}`);
console.log(` ${config.description}`);