Integrate SCUM real ops workflows

This commit is contained in:
npc0-hue
2026-08-10 21:12:53 +08:00
parent 1063330710
commit a770bc6250
88 changed files with 6375 additions and 2719 deletions
+4 -7
View File
@@ -144,14 +144,11 @@ export interface PlatformOverviewSignal {
at: string;
}
export type ServerDetailSection = "logs" | "terminal" | "config" | "llm" | "history" | `plugin:${string}`;
export type ServerDetailSection = "manage" | "llm" | `plugin:${string}`;
export const serverDetailSections: Array<{ id: ServerDetailSection; label: string }> = [
{ id: "logs", label: "日志" },
{ id: "terminal", label: "管理终端" },
{ id: "config", label: "配置" },
{ id: "llm", label: "AI 助手" },
{ id: "history", label: "操作历史" }
{ id: "manage", label: "管理" },
{ id: "llm", label: "AI 助手" }
];
export interface DiffLine {
@@ -177,5 +174,5 @@ export interface LlmSuggestionView {
recommendation: string;
diffId?: string;
expiresAt?: string;
diff?: ConfigDiffView;
diffSummary?: string;
}