diff options
Diffstat (limited to 'internal/showcase/showcase.go')
| -rw-r--r-- | internal/showcase/showcase.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/showcase/showcase.go b/internal/showcase/showcase.go index 0bce7ee..8f8592d 100644 --- a/internal/showcase/showcase.go +++ b/internal/showcase/showcase.go @@ -435,6 +435,11 @@ func (g *Generator) formatGemtext(summaries []ProjectSummary) string { builder.WriteString(fmt.Sprintf("* ๐ฅ Recent Activity: %.1f days (avg. age of last 42 commits)\n", summary.Metadata.AvgCommitAge)) builder.WriteString(fmt.Sprintf("* โ๏ธ License: %s\n", summary.Metadata.License)) + // Add experimental status if no releases + if !summary.Metadata.HasReleases { + builder.WriteString("* ๐งช Status: Experimental (no releases yet)\n") + } + // Add AI-Assisted notice if detected if summary.AIAssisted { builder.WriteString("* ๐ค AI-Assisted: This project was partially created with the help of generative AI\n") |
