summaryrefslogtreecommitdiff
path: root/internal/showcase/showcase.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/showcase/showcase.go')
-rw-r--r--internal/showcase/showcase.go5
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")