Cross session search
🌟 AI Companion System — Memory, Skills & Self-Evolution. Built on OpenClaw.
npx -y skills add OnestarQQ/Samantha --skill cross-session-searchAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
0.8 KB, 257 tokens by cl100k_base, as published. Nobody here has run it
跨会话搜索
能力说明
用户问"之前聊过什么"类型的问题时,通过 memory_search 搜索记忆+session transcript 索引。
配置要求
{
"memorySearch": {
"enabled": true,
"provider": "openai",
"sources": ["memory", "sessions"],
"experimental": { "sessionMemory": true },
"query": {
"hybrid": {
"mmr": { "enabled": true },
"temporalDecay": { "enabled": true }
}
},
"store": {
"fts": { "tokenizer": "trigram" }
}
}
}
使用方式
- 自动:对话中提到过去的话题时自动搜索
- 主动关联:检测到与历史话题相关时补充上下文
- 自然回应,不要说"根据我的搜索结果"
中文支持
FTS tokenizer 需设为 trigram(默认 unicode61 不支持中文搜索)