@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
16 lines • 381 B
TypeScript
export interface DashboardOptions {
port: number;
projectPath: string;
autoOpen?: boolean;
}
export declare class DashboardServer {
private app;
private watcher;
private parser;
private options;
private clients;
constructor(options: DashboardOptions);
start(): Promise<void>;
stop(): Promise<void>;
}
//# sourceMappingURL=server.d.ts.map