| 3 | export type CommitMode = 'structured' | 'checkpoint' | 'disabled'; |
| 4 | |
| 5 | export interface CommitModeSettings { |
| 6 | mode: CommitMode; |
| 7 | structuredPromptTemplate?: string; |
| 8 | checkpointPrefix?: string; |
| 9 | allowClaudeTools?: boolean; |
| 10 | } |
| 11 | |
| 12 | export interface ProjectCharacteristics { |
| 13 | hasHusky: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected