From befce3c1cc7d230a8cfa9105c8c276312b74cd29 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 31 Aug 2025 22:59:11 +0300 Subject: refactor(showcase): remove Codex LLM support docs: update showcase help text and AI tool fallback to exclude Codex. --- internal/cmd/showcase.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/cmd/showcase.go') diff --git a/internal/cmd/showcase.go b/internal/cmd/showcase.go index ea5128c..6f9f984 100644 --- a/internal/cmd/showcase.go +++ b/internal/cmd/showcase.go @@ -23,7 +23,7 @@ var showcaseCmd = &cobra.Command{ Long: `Generate a comprehensive showcase of all your projects using AI. This feature creates a formatted document with project summaries, statistics, and code snippets. By default uses Claude, but will try hexai first if available, -then codex (if installed), and can also use aichat.`, +and can also use aichat.`, Example: ` # Generate showcase with cached summaries gitsyncer showcase @@ -64,6 +64,6 @@ func init() { showcaseCmd.Flags().StringVarP(&outputPath, "output", "o", "", "custom output path (default: ~/git/foo.zone-content/gemtext/about/showcase.gmi.tpl)") showcaseCmd.Flags().StringVar(&outputFormat, "format", "gemtext", "output format: gemtext, markdown, html") showcaseCmd.Flags().StringVar(&excludePattern, "exclude", "", "exclude repos matching pattern") - showcaseCmd.Flags().StringVar(&showcaseAITool, "ai-tool", "claude", "AI tool for summaries: hexai, claude, claude-code, codex, or aichat (default tries hexai→claude→codex→aichat)") + showcaseCmd.Flags().StringVar(&showcaseAITool, "ai-tool", "claude", "AI tool for summaries: hexai, claude, claude-code, or aichat (default tries hexai→claude→aichat)") showcaseCmd.Flags().StringVar(&showcaseRepo, "repo", "", "only generate showcase for a single repository") } -- cgit v1.2.3