From 1be96b608d6e805b4c41e33984ce0dca9b2d142c Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 17:57:34 +0000 Subject: [PATCH] Add prompt templates --- app/prompts/changelog.txt | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 app/prompts/changelog.txt diff --git a/app/prompts/changelog.txt b/app/prompts/changelog.txt new file mode 100644 index 0000000..7c63efd --- /dev/null +++ b/app/prompts/changelog.txt @@ -0,0 +1,36 @@ +Generate a changelog from the following git commit history. Group changes by type and format in markdown. + +## Conventional Commit Types to recognize: +- **feat**: New features +- **fix**: Bug fixes +- **docs**: Documentation +- **style**: Formatting +- **refactor**: Code refactoring +- **perf**: Performance improvements +- **test**: Tests +- **build**: Build system +- **ci**: CI/CD +- **chore**: Maintenance + +## Output Format: +# Changelog + +## [Unreleased] + +## [Version] - YYYY-MM-DD + +### Features +- feat(scope): description + +### Bug Fixes +- fix(scope): description + +### Other Changes +- chore(scope): description + +## Notes: +- Use semantic version-like version headers +- List changes in reverse chronological order +- Use proper markdown formatting +- Include commit types where clear +- Omit trivial commits (merge commits, version bumps)