Author: nhkhang
Channel: #shelley
Link: https://discord.com/channels/1405685085923049482/1450334528210993295/1502221326809829386
Description
Add a friction-free way to search old conversation threads in the Shelley UI (sidebar/palette commands). Currently, users can query the SQLite database directly, but this requires manual SQL commands and is not practical for mobile use.
Context
From the conversation:
- While it's technically possible to search conversations using SQLite queries, this approach wastes tokens and is not user-friendly
- Users spend significant time with Shelley on mobile, where friction-free searching is particularly important
- The feature should be accessible via sidebar or palette commands for easy discoverability
Related
The SQLite database stores conversations at /home/exedev/.config/shelley/shelley.db and supports queries by conversation slug and full-text search, so the underlying capability exists.
Author: nhkhang
Channel: #shelley
Link: https://discord.com/channels/1405685085923049482/1450334528210993295/1502221326809829386
Description
Add a friction-free way to search old conversation threads in the Shelley UI (sidebar/palette commands). Currently, users can query the SQLite database directly, but this requires manual SQL commands and is not practical for mobile use.
Context
From the conversation:
Related
The SQLite database stores conversations at
/home/exedev/.config/shelley/shelley.dband supports queries by conversation slug and full-text search, so the underlying capability exists.