session-search
GitHub用于检索和恢复之前的 Feynman 会话记录。支持通过交互式命令或直接在 JSONL 文件中搜索历史对话内容,便于用户找回或继续之前的工作。
Trigger Scenarios
Install
npx skills add companion-inc/feynman --skill session-search -g -y
SKILL.md
Frontmatter
{
"name": "session-search",
"description": "Recover prior Feynman work from session transcripts. Use the optional \/search command only when it is installed and visible; otherwise search local session JSONL files directly."
}
Session Search
Use the /search command to search prior Feynman sessions interactively only when the optional session-search package is installed and the command is visible. Otherwise, search session JSONL files directly via bash.
Interactive search
/search <query>
Opens the session search UI when the optional package is loaded. Supports resume <sessionPath> to continue a found session.
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.
grep -ril "scaling laws" ~/.feynman/sessions/
For structured search across sessions, use the interactive /search command when it is visible. If it is unavailable, direct file search is the supported fallback.
Version History
- 54d08a3 Current 2026-07-25 07:16


