Feat: initial plugin system (Frontend only)

This commit is contained in:
simosmik
2026-03-05 11:27:45 +00:00
parent f4615dfca3
commit 6517ec4ecd
19 changed files with 1262 additions and 53 deletions

View File

@@ -1,6 +1,6 @@
export type SessionProvider = 'claude' | 'cursor' | 'codex' | 'gemini';
export type AppTab = 'chat' | 'files' | 'shell' | 'git' | 'tasks' | 'preview';
export type AppTab = 'chat' | 'files' | 'shell' | 'git' | 'tasks' | 'preview' | `plugin:${string}`;
export interface ProjectSession {
id: string;