QQQW114/dsh-keyword-context ↗★ 0
dsh-keyword-context
DeepSeek Harness (DSH) plugin — inject context when user input or model output hits configured keywords, with toggleable/configurable rules and model-editable memory.
AI 분석
核心用途是实现基于关键词触发的上下文/记忆自动注入,并支持模型自主写入记忆。适合需要为Agent配置特定话题背景知识或简易长期记忆的用户。
설치
검증된 bundle이 없거나 호환성 검사에 실패했습니다. 먼저 저장소 설명을 읽어 주세요. 전체 README 읽기 ↗
配置(config.json)
{
"enabled": true,
"allowModelWrite": false,
"triggers": [
{ "id": "t1", "keywords": ["记忆", "memory"], "context": "用户提到了「记忆」相关话题,请结合上方【记忆】中的内容作答。" }
],
"memories": [
{ "key": "用户偏好", "value": "使用简体中文回答" }
]
}