Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ One `.ai-devkit.json` configures all of them. Add a new agent to your team witho
| [Devin](https://devin.ai/) | yes | — |
| [opencode](https://opencode.ai/) | yes | testing |
| [Pi](https://pi.dev) | yes | yes |
| [Kiro CLI](https://kiro.dev/cli/) | yes | yes |
| [Cursor](https://cursor.sh/) | yes | — |
| [GitHub Copilot](https://code.visualstudio.com/) | yes | — |
| [Antigravity](https://antigravity.google/) | yes | — |
Expand Down
435 changes: 435 additions & 0 deletions packages/agent-manager/src/__tests__/adapters/KiroAdapter.test.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/agent-manager/src/adapters/AgentAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* Type of AI agent
*/
export type AgentType = 'claude' | 'gemini_cli' | 'codex' | 'opencode' | 'copilot' | 'pi' | 'other';
export type AgentType = 'claude' | 'gemini_cli' | 'codex' | 'opencode' | 'copilot' | 'pi' | 'kiro' | 'other';

/**
* Current status of an agent
Expand Down
Loading
Loading