/** * Conventional Commits types with descriptions. * * Single source of truth for all commit type domain knowledge. * Both the heuristic (`commit-message.ts`) and LLM (`llm-commit.ts`) paths * derive their type information from here. */ export declare const COMMIT_TYPES: { readonly feat: "New feature, new command/option/API"; readonly fix: "Bug fix, correction of unintended behavior"; readonly refactor: "Improve code structure without behavior change"; readonly chore: "Build config, dependencies, CI, repository setup"; readonly docs: "Documentation-only (README, SKILL.md, comments)"; readonly test: "Adding or modifying tests"; readonly style: "Code formatting (no behavioral impact)"; readonly perf: "Performance improvements"; }; /** * Union type derived from `COMMIT_TYPES` keys. */ export type CommitType = keyof typeof COMMIT_TYPES; //# sourceMappingURL=commit-types.d.ts.map