This repository has no description
0

Configure Feed

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

Sort papers by publishedDate (newest first)

👾 Generated with [Letta Code](https://letta.com)

Co-Authored-By: Letta Code <noreply@letta.com>

author
Nandi
co-author
Letta Code
date (May 18, 2026, 11:11 PM -0700) commit 2641d50f parent 6c9e5f5e
+1 -1
+1 -1
src/worker.ts
··· 51 51 try { 52 52 const rows = await db 53 53 .prepare( 54 - "SELECT uri, record, did, rkey, time_us FROM records_summary ORDER BY time_us DESC LIMIT 100" 54 + "SELECT uri, record, did, rkey, time_us FROM records_summary ORDER BY json_extract(record, '$.publishedDate') DESC NULLS LAST, time_us DESC LIMIT 100" 55 55 ) 56 56 .all(); 57 57 summaries = (rows.results || []).map((r: any) => {