mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 00:08:27 +00:00
* Feat: clustering fact statements * Feat: cluster drift * Feat: add recall count and model to search * Feat: Github integration * Fix: clustering UI * Improve graph * Bump: new version --------- Co-authored-by: Manoj K <saimanoj58@gmail.com>
35 lines
697 B
TypeScript
35 lines
697 B
TypeScript
export const FIXED_INTEGRATIONS = [
|
|
{
|
|
id: "claude",
|
|
name: "Claude",
|
|
description: "AI assistant for coding, writing, and analysis",
|
|
icon: "claude",
|
|
slug: "claude",
|
|
spec: {},
|
|
},
|
|
{
|
|
id: "cursor",
|
|
name: "Cursor",
|
|
description: "AI-powered code editor",
|
|
icon: "cursor",
|
|
slug: "cursor",
|
|
spec: {},
|
|
},
|
|
{
|
|
id: "cline",
|
|
name: "Cline",
|
|
description: "AI coding assistant for terminal and command line",
|
|
icon: "cline",
|
|
slug: "cline",
|
|
spec: {},
|
|
},
|
|
{
|
|
id: "vscode",
|
|
name: "Visual Studio Code",
|
|
description: "Popular code editor with extensive extensions",
|
|
icon: "vscode",
|
|
slug: "vscode",
|
|
spec: {},
|
|
},
|
|
];
|