This commit is contained in:
2026-05-17 12:43:53 -07:00
commit 7c8def0aaa
7507 changed files with 1419399 additions and 0 deletions

18
src/agents/index.ts Normal file
View File

@@ -0,0 +1,18 @@
// Import prompt templates first — side effects register them before agents reference promptIds
import '../prompts/orchestrator';
import '../prompts/coder';
import '../prompts/pm';
import '../prompts/marketing';
import '../prompts/atlas';
import '../prompts/import-analyzer';
// Import agent files — side effects register each agent into the registry
import './orchestrator';
import './coder';
import './pm';
import './marketing';
import './atlas';
import './import-analyzer';
// Re-export public API
export { AgentConfig, AGENTS, getAgent, allAgents, pick } from './registry';