UNPKG

@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

13 lines 411 B
export interface SteeringDocuments { product?: string; tech?: string; structure?: string; } export declare class SteeringLoader { private steeringDir; constructor(projectRoot?: string); loadSteeringDocuments(): Promise<SteeringDocuments>; steeringDocumentsExist(): Promise<boolean>; formatSteeringContext(docs: SteeringDocuments): string; } //# sourceMappingURL=steering.d.ts.map