Feature: Changelog / Activity Feed
Shows recent additions and updates. Makes the site feel alive and actively maintained.
What it shows
- Timeline of events: new specs, new implementations, quality updates
- Monthly counters: "Apr 2025: 12 new, 34 updated"
- "New" badges on recently added specs (last 14 days) in CatalogPage and HomePage
Technical Approach
- New endpoint:
GET /insights/changelog?limit=50
- Derives events from
spec.created, impl.generated_at, impl.updated
- Returns
recent_spec_ids for badge feature
- New page:
app/src/pages/ChangelogPage.tsx
- "NEW" chip integration in ImageCard and CatalogPage
Inspired by
Product Hunt daily feed, GitHub activity feed
🤖 Generated with Claude Code
Feature: Changelog / Activity Feed
Shows recent additions and updates. Makes the site feel alive and actively maintained.
What it shows
Technical Approach
GET /insights/changelog?limit=50spec.created,impl.generated_at,impl.updatedrecent_spec_idsfor badge featureapp/src/pages/ChangelogPage.tsxInspired by
Product Hunt daily feed, GitHub activity feed
🤖 Generated with Claude Code