/** * dashboard 命令 - workspace 观察面 */ import { Command } from 'commander'; import { type AgentBriefing } from '../agent-briefing.js'; import { type RuntimeObservationSummary } from '../../core/logger.js'; import type { WorkspaceState } from '../../types/index.js'; export interface DashboardOptions { watch?: boolean; } export declare function createDashboardCommand(): Command; export declare function dashboardCommand(options: DashboardOptions, basePath?: string): Promise; export declare function renderDashboard(workspace: WorkspaceState, briefing: AgentBriefing, projectName?: string, projectVersion?: string, latestRuntimeObservation?: RuntimeObservationSummary | null): void; //# sourceMappingURL=dashboard.d.ts.map