/** * Canonical feature registry for claude-novel-writer. * * One entry per shipped (or planned) capability, grouped by subsystem. Keep this * in sync with TODO.md / BUGS.md when a feature's status changes. */ export type FeatureType = 'project' | 'character' | 'chapter' | 'scene' | 'location' | 'plot' | 'world-rule' | 'timeline' | 'session' | 'analysis' | 'consistency' | 'generation' | 'export' | 'research' | 'beta' | 'series' | 'intelligence' | 'craft' | 'mcp'; export type FeatureStatus = 'not-started' | 'in-progress' | 'complete'; export interface Feature { id: string; name: string; description: string; subsystem: string; type: FeatureType; dependsOn: string[]; status: FeatureStatus; version?: string; } export declare const features: Feature[]; //# sourceMappingURL=features.d.ts.map