summaryrefslogtreecommitdiff
path: root/internal/cmd/showcase.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-08-31 22:59:11 +0300
committerPaul Buetow <paul@buetow.org>2025-08-31 22:59:11 +0300
commitbefce3c1cc7d230a8cfa9105c8c276312b74cd29 (patch)
tree2df8b2a9f3942769dd6ab90dbcbf40750a1986ae /internal/cmd/showcase.go
parent66ee5a0e77599a6c9a77ed34a87d5960f364f7e7 (diff)
refactor(showcase): remove Codex LLM support
docs: update showcase help text and AI tool fallback to exclude Codex.
Diffstat (limited to 'internal/cmd/showcase.go')
-rw-r--r--internal/cmd/showcase.go4
1 files changed, 2 insertions, 2 deletions
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")
}