@pimzino/claude-code-spec-workflow
Version:
Automated workflows for Claude Code. Includes spec-driven development (Requirements → Design → Tasks → Implementation) with intelligent task execution, optional steering documents and streamlined bug fix workflow (Report → Analyze → Fix → Verify). We have
29 lines • 814 B
TypeScript
export interface MultiDashboardOptions {
port: number;
autoOpen?: boolean;
tunnel?: boolean;
tunnelPassword?: string;
tunnelProvider?: string;
}
export declare class MultiProjectDashboardServer {
private app;
private options;
private clients;
private projects;
private discovery;
private rescanInterval?;
private tunnelManager?;
constructor(options: MultiDashboardOptions);
start(): Promise<void>;
private initializeProject;
private sendInitialState;
private collectActiveSessions;
private findTaskById;
private startPeriodicRescan;
stop(): Promise<void>;
private initializeTunnel;
getTunnelStatus(): import("./tunnel").TunnelStatus;
private broadcast;
private getUsername;
}
//# sourceMappingURL=multi-server.d.ts.map