Add server file manager workflow

This commit is contained in:
npc0-hue
2026-08-24 12:56:55 +08:00
parent dc9b0eaf2a
commit 33d3a13e74
20 changed files with 1961 additions and 22 deletions
+2 -1
View File
@@ -144,10 +144,11 @@ export interface PlatformOverviewSignal {
at: string;
}
export type ServerDetailSection = "manage" | "llm" | `plugin:${string}`;
export type ServerDetailSection = "manage" | "files" | "llm" | `plugin:${string}`;
export const serverDetailSections: Array<{ id: ServerDetailSection; label: string }> = [
{ id: "manage", label: "管理" },
{ id: "files", label: "文件" },
{ id: "llm", label: "AI 助手" }
];