ReMe/typescript
jinliyl dc28e62526
feat(typescript): update DSH adapter and publish integration guides (#519)
* feat(typescript): update DSH integration guides

* docs(typescript): address DSH review feedback
2026-09-04 16:16:01 +08:00
..
docs feat(typescript): update DSH adapter and publish integration guides (#519) 2026-09-04 16:16:01 +08:00
dsh refactor(packaging): reorganize published packages (#495) 2026-08-27 14:02:09 +08:00
figures/dsh feat(typescript): update DSH adapter and publish integration guides (#519) 2026-09-04 16:16:01 +08:00
scripts feat(typescript): update DSH adapter and publish integration guides (#519) 2026-09-04 16:16:01 +08:00
src feat(typescript): update DSH adapter and publish integration guides (#519) 2026-09-04 16:16:01 +08:00
tests feat(typescript): update DSH adapter and publish integration guides (#519) 2026-09-04 16:16:01 +08:00
.prettierignore refactor(packaging): reorganize published packages (#495) 2026-08-27 14:02:09 +08:00
eslint.config.mjs refactor(packaging): reorganize published packages (#495) 2026-08-27 14:02:09 +08:00
openclaw.plugin.json fix: publish an OpenClaw-specific ClawHub artifact (#513) 2026-09-01 20:27:47 +08:00
package-lock.json feat(typescript): update DSH adapter and publish integration guides (#519) 2026-09-04 16:16:01 +08:00
package.json feat(typescript): update DSH adapter and publish integration guides (#519) 2026-09-04 16:16:01 +08:00
README.md feat(typescript): update DSH adapter and publish integration guides (#519) 2026-09-04 16:16:01 +08:00
README_ZH.md feat(typescript): update DSH adapter and publish integration guides (#519) 2026-09-04 16:16:01 +08:00
tsconfig.json refactor(packaging): reorganize published packages (#495) 2026-08-27 14:02:09 +08:00

ReMe for TypeScript agents

中文说明

@agentscope-ai/reme connects DeepSeek Harness and OpenClaw to ReMe's local-first, file-native long-term memory. The package also exposes a host-independent ReMe HTTP client.

ReMe Status in DeepSeek Harness

Capabilities

  • Injects memory guidance and provides explicit reme_search lookup.
  • Captures completed conversations through background auto_memory batches.
  • Runs optional daily auto_dream consolidation in the workspace timezone.
  • Keeps durable memory in user-owned daily and digest Markdown files.
  • Uses each host's native lifecycle, tools, settings, and shutdown hooks.
  • Excludes plugin context and tool results from automatic memory capture.

Documentation

Host English 中文
DeepSeek Harness Guide 使用指南
OpenClaw Guide 使用指南

Quick start

Start ReMe:

pip install "reme-ai[core]"
reme start workspace_dir=/absolute/path/to/workspace

Install the adapter for your host:

# DeepSeek Harness
dsh plugin --profile web add @agentscope-ai/reme

# OpenClaw
openclaw plugins install clawhub:@agentscope-ai/reme

The default endpoint is http://127.0.0.1:2333. ReMe HTTP does not use API-key authentication, so keep it on loopback or another trusted network unless it is protected by a proxy.

Client library

import { ReMeClient, formatReMeContext } from "@agentscope-ai/reme";

Host adapters are exported from @agentscope-ai/reme/dsh and @agentscope-ai/reme/openclaw. See the host guides for requirements, configuration, screenshots, troubleshooting, and release behavior.