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