personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Disable facets bar on apps that don't use facet filtering

Apps that show system-wide or day-based data without facet scoping now
have the facet bar disabled for cleaner UI:
- insights: Daily insight files (not facet-filtered)
- stats: Journal-wide aggregate statistics
- tokens: Day-based token usage analysis
- transcripts: Day-based transcript viewer

Also fixes apps/remote/app.json which had "facets": false (invalid,
was being normalized to {} meaning enabled) - now correctly uses
{"disabled": true}.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+9 -5
+2 -1
apps/insights/app.json
··· 1 1 { 2 2 "icon": "๐Ÿ“", 3 3 "label": "Insights", 4 - "date_nav": true 4 + "date_nav": true, 5 + "facets": {"disabled": true} 5 6 }
+1 -1
apps/remote/app.json
··· 1 1 { 2 2 "icon": "๐Ÿ“ก", 3 3 "label": "Remote", 4 - "facets": false 4 + "facets": {"disabled": true} 5 5 }
+2 -1
apps/stats/app.json
··· 1 1 { 2 2 "icon": "๐Ÿ“Š", 3 - "label": "Stats" 3 + "label": "Stats", 4 + "facets": {"disabled": true} 4 5 }
+2 -1
apps/tokens/app.json
··· 1 1 { 2 2 "icon": "๐Ÿ’ฐ", 3 3 "label": "Tokens", 4 - "date_nav": true 4 + "date_nav": true, 5 + "facets": {"disabled": true} 5 6 }
+2 -1
apps/transcripts/app.json
··· 1 1 { 2 2 "icon": "๐Ÿ“œ", 3 3 "label": "Transcripts", 4 - "date_nav": true 4 + "date_nav": true, 5 + "facets": {"disabled": true} 5 6 }