feat(web): add local Codex Skill management and invocation UI

This commit is contained in:
yu
2026-08-05 02:45:41 +08:00
parent 6cea52302b
commit 08deda5b3f
11 changed files with 695 additions and 88 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ export type AgentCanvasContext = { snapshot: CanvasAgentSnapshot; applyOps: (ops
export type AgentThreadSummary = { id: string; preview: string; name?: string | null; cwd?: string; status?: string; source?: unknown; createdAt?: number; updatedAt?: number };
export type AgentTokenUsage = { input: number; cached: number; output: number };
export type AgentBootstrapStatus = { key: string; text: string; detail: string; status: "running" | "ready" | "error" };
export type AgentPanelTab = "chat" | "setup" | "history" | "log";
export type AgentPanelTab = "chat" | "setup" | "history" | "skills" | "log";
const CONNECT_TIMEOUT_MS = 6000;
let agentSource: EventSource | null = null;