agentscope-ai/ReMe--packages-typescript ↗★ 3.3k
@agentscope-ai/reme
ReMe client and memory integrations for TypeScript agents
安装
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:agentscope-ai/ReMe#01ef1a6efb6e84be29347334b9043ab284e0ca73&path:packages/typescript说明文档
阅读完整 README ↗ReMe for TypeScript agents
@agentscope-ai/reme provides one shared ReMe HTTP client and host adapters for DeepSeek Harness and OpenClaw. Each
adapter uses its host's native lifecycle and tool interfaces; importing the root package does not load either host.
The package expects a running ReMe HTTP service with the search, auto_memory, and auto_dream jobs required by the
selected adapter:
reme start workspace_dir=/absolute/path/to/workspace
The default endpoint is http://127.0.0.1:2333. All entries support REME_URL, or REME_HOST plus REME_PORT.
ReMe's HTTP service does not use API-key authentication.
DeepSeek Harness
Install the package as a DSH profile bundle:
dsh plugin --profile web add @agentscope-ai/reme
The bundle loads @agentscope-ai/reme/dsh in an isolated remeMemory realm. It injects durable memory guidance,
registers reme_search, submits completed main-agent turns to auto_memory, and runs the optional daily auto_dream
schedule. Recalled plugin context and tool results are excluded from automatic memory capture.
Configure the bundle by replacing its row in the profile's cordis.patch.yml:
- id: reme-memory
config:
- id: reme-memory-runtime
name: "@agentscope-ai/reme/dsh"
config:
endpoint: http://127.0.0.1:2333
language: zh
timezone: Asia/Shanghai
autoMemoryInterval: 5
autoDreamEnabled: true
dreamCron: "0 23 * * *"
On the DSH Web profile, the same fields are available under Settings → Plugins → Plugin configuration → ReMe
Memory. Changes are stored in DSH's user settings document and apply to subsequent requests and captures. Changing
the daily dream controls reschedules the next run; changing the guidance language affects newly started sessions.
The test-only dreamIntervalMs value remains outside the user-settings section.