feat(core,cli): implement external agent polyfills and finalize teams

- Implement External Agent kind with personality overlays (Claude Code, Codex)
- Enhance AgentLoader and Registry for external agent discovery and registration
- Fix critical startup race condition in Config registry initialization
- Add TeamSelectionDialog and ActiveTeamIndicator to CLI UI
- Include comprehensive integration and unit tests for agent teams
- Refactor SubagentToolWrapper for type-safe external agent invocation
This commit is contained in:
Taylor Mullen
2026-04-01 17:55:00 -07:00
parent 31584285a1
commit 79cc1eb4f4
14 changed files with 776 additions and 119 deletions
@@ -35,7 +35,8 @@ describe('<TeamSelectionDialog />', () => {
mockOnSelect.mockReset();
});
const renderComponent = async () => renderWithProviders(
const renderComponent = async () =>
renderWithProviders(
<TeamSelectionDialog teams={mockTeams} onSelect={mockOnSelect} />,
);