personal memory agent
0
fork

Configure Feed

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

fix: normalize file_mtime in API baseline verification

The stats schema v2 merge added file_mtime to the stats API response.
Add it to the set of dynamic timestamp keys that get zeroed during
baseline normalization, and regenerate the stats baseline.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+2 -1
+1
tests/baselines/api/stats/stats.json
··· 1 1 { 2 + "file_mtime": 0, 2 3 "generators": { 3 4 "daily_schedule": { 4 5 "color": "#455a64",
+1 -1
tests/verify_api.py
··· 417 417 return { 418 418 item_key: ( 419 419 0 420 - if item_key in {"mtime", "created_at"} 420 + if item_key in {"mtime", "created_at", "file_mtime"} 421 421 and isinstance(item_value, (int, float)) 422 422 else ( 423 423 round(item_value, 1)