summaryrefslogtreecommitdiff
path: root/internal/cmd/sync.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-19 21:10:30 +0200
committerPaul Buetow <paul@buetow.org>2026-03-19 21:10:30 +0200
commita694dd751eb16d47b0956facd5594ef575c9dce4 (patch)
tree7be0801d61f1daf17a5e96b6e38c16556f458ce9 /internal/cmd/sync.go
parentb1faeca09f1cd98a64e5c7c17db990b19803750a (diff)
chore(release): bump version to 0.15.8v0.15.8
Remove aichat support from release notes and showcase AI tool chains. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/cmd/sync.go')
-rw-r--r--internal/cmd/sync.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/cmd/sync.go b/internal/cmd/sync.go
index 75d8c88..a4fff84 100644
--- a/internal/cmd/sync.go
+++ b/internal/cmd/sync.go
@@ -194,7 +194,7 @@ func init() {
syncCmd.PersistentFlags().BoolVar(&noReleases, "no-releases", false, "skip release checking after sync")
syncCmd.PersistentFlags().BoolVar(&autoCreate, "auto-create-releases", false, "automatically create releases without confirmation")
syncCmd.PersistentFlags().BoolVar(&noAIReleaseNotes, "no-ai-release-notes", false, "disable AI-generated release notes (AI notes are enabled by default)")
- syncCmd.PersistentFlags().StringVar(&syncAITool, "ai-tool", "opencode", "AI tool to use for release notes when auto-creating (opencode, amp, claude, aichat, or hexai; opencode is tried first if available)")
+ syncCmd.PersistentFlags().StringVar(&syncAITool, "ai-tool", "opencode", "AI tool to use for release notes when auto-creating (opencode, amp, claude, or hexai; opencode is tried first if available)")
syncCmd.PersistentFlags().BoolVarP(&syncForce, "force", "f", false, "force sync even if normal sync interval checks would skip a repository")
syncCmd.PersistentFlags().BoolVar(&throttle, "throttle", false, "throttle syncing based on local repo activity")
}