session-search

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Session Search

会话搜索

Use the
/search
command to search prior Feynman sessions interactively, or search session JSONL files directly via bash.
使用
/search
命令交互式搜索过往Feynman会话,或通过bash直接搜索会话JSONL文件。

Interactive search

交互式搜索

/search <query>
Opens the session search UI. Supports
resume <sessionPath>
to continue a found session.
/search <query>
打开会话搜索UI。支持使用
resume <sessionPath>
继续找到的会话。

Direct file search

直接文件搜索

Session transcripts are stored as JSONL files in
~/.feynman/sessions/
. Each line is a JSON record with
type
(session, message, model_change) and
message.content
fields.
bash
grep -ril "scaling laws" ~/.feynman/sessions/
For structured search across sessions, use the interactive
/search
command.
会话记录以JSONL文件形式存储在
~/.feynman/sessions/
目录下。每一行都是一条JSON记录,包含
type
(会话、消息、模型变更)和
message.content
字段。
bash
grep -ril "scaling laws" ~/.feynman/sessions/
如需跨会话进行结构化搜索,请使用交互式
/search
命令。