Skip to content
Merged
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 @@ -354,6 +354,7 @@ frontend/ Svelte 5 SPA (Vite, TypeScript)
| Kimi | `~/.kimi/sessions/` | `KIMI_DIR` |
| Kiro CLI | `~/.kiro/sessions/cli/` | `KIRO_SESSIONS_DIR` |
| Kiro IDE | `~/Library/Application Support/Kiro/` (macOS) | `KIRO_IDE_DIR` |
| Cortex Code | `~/.snowflake/cortex/conversations/` | `CORTEX_DIR` |

## Acknowledgements

Expand Down
3 changes: 2 additions & 1 deletion frontend/src/lib/utils/agents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ export const KNOWN_AGENTS: readonly AgentMeta[] = [
{ name: "claude-ai", color: "var(--accent-violet)", label: "Claude.ai" },
{ name: "chatgpt", color: "var(--accent-lime)", label: "ChatGPT" },
{ name: "kiro", color: "var(--accent-lime)", label: "Kiro" },
{ name: "kiro-ide", color: "var(--accent-lime)", label: "Kiro IDE" }
{ name: "kiro-ide", color: "var(--accent-lime)", label: "Kiro IDE" },
{ name: "cortex", color: "var(--accent-cyan)", label: "Cortex Code" }
];

const agentColorMap = new Map(
Expand Down
2 changes: 1 addition & 1 deletion internal/insight/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var ValidAgents = map[string]bool{
"codex": true,
"copilot": true,
"gemini": true,
"kiro": true,
"kiro": true,
}

// GenerateFunc is the signature for insight generation,
Expand Down
Loading
Loading