From 5ca3c39da7854a753d8535465ec42bebfa3fcf8e Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 19 Jul 2025 16:45:29 +0300 Subject: feat: add aichat support for showcase project descriptions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add --ai-tool flag to showcase command (default: claude) - Support aichat as alternative to claude for generating project summaries - When using aichat, read README.md and pipe it as input - Update documentation and examples - Bump version to 0.8.1 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- internal/cli/showcase_handler.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'internal/cli/showcase_handler.go') diff --git a/internal/cli/showcase_handler.go b/internal/cli/showcase_handler.go index a3dfd26..929ce95 100644 --- a/internal/cli/showcase_handler.go +++ b/internal/cli/showcase_handler.go @@ -24,6 +24,11 @@ func HandleShowcase(cfg *config.Config, flags *Flags) int { // Create showcase generator generator := showcase.New(cfg, flags.WorkDir) + // Set AI tool if specified + if flags.AITool != "" { + generator.SetAITool(flags.AITool) + } + // Generate showcase with optional filter if err := generator.GenerateShowcase(repoFilter, flags.Force); err != nil { log.Printf("ERROR: Failed to generate showcase: %v\n", err) -- cgit v1.2.3