diff options
| author | Paul Buetow <paul@buetow.org> | 2025-07-13 22:24:16 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-07-13 22:25:41 +0300 |
| commit | 09a333cdc72186d95c28933d15035f405e0d4ea9 (patch) | |
| tree | 1599080ccb0e6df61f7990ff93f9a5edb615ebfd /CLAUDE.md | |
| parent | 864d087d279eb7073811cb76fc2b2b2f571f8394 (diff) | |
feat: make AI release notes the default behavior
- AI-generated release notes are now enabled by default
- Add --no-ai-release-notes flag to disable AI notes
- Update all documentation and examples to reflect new default
- Works for both sync commands and release commands
Users now get AI-generated release notes automatically:
gitsyncer sync repo myproject # AI notes enabled
gitsyncer sync repo myproject --no-ai-release-notes # Disable AI
gitsyncer release create # AI notes enabled
gitsyncer release create --no-ai-notes # Disable AI
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'CLAUDE.md')
| -rw-r--r-- | CLAUDE.md | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -41,9 +41,11 @@ gitsyncer release check # Disable automatic release checking during sync operations gitsyncer sync all --no-releases -# Automatically create releases without confirmation prompts +# Automatically create releases without confirmation prompts (AI notes enabled by default) gitsyncer release create --auto -gitsyncer release create --auto --ai-notes + +# Create releases without AI notes +gitsyncer release create --auto --no-ai-notes ``` Note: Release checking is enabled by default after sync operations. It will check for version tags (formats: vX.Y.Z, vX.Y, vX, X.Y.Z, X.Y, X) that don't have corresponding releases on GitHub/Codeberg and prompt for confirmation before creating them. |
