@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
21 lines • 562 B
TypeScript
export interface DiscoveredProject {
path: string;
name: string;
hasActiveSession: boolean;
lastActivity?: Date;
specCount?: number;
bugCount?: number;
hasSteeringDocs?: boolean;
gitBranch?: string;
gitCommit?: string;
}
export declare class ProjectDiscovery {
private searchPaths;
constructor();
discoverProjects(): Promise<DiscoveredProject[]>;
private searchDirectory;
private analyzeProject;
private getActiveClaudeSessions;
private getGitInfo;
}
//# sourceMappingURL=project-discovery.d.ts.map