UNPKG

@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

24 lines 657 B
export interface DiscoveredProject { path: string; name: string; hasActiveSession: boolean; lastActivity?: Date; specCount?: number; bugCount?: number; hasSteeringDocs?: boolean; gitBranch?: string; gitCommit?: string; parentPath?: string; children?: DiscoveredProject[]; } export declare class ProjectDiscovery { private searchPaths; constructor(); discoverProjects(): Promise<DiscoveredProject[]>; private groupRelatedProjects; private searchDirectory; private analyzeProject; private getActiveClaudeSessions; private getGitInfo; } //# sourceMappingURL=project-discovery.d.ts.map