DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Reme — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

@agentscope-ai/reme

Reme

ReMe client and memory integrations for TypeScript agents

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add @agentscope-ai/reme@0.1.2
READMECompatibilityVersions

Compatibility and provenance

Reme is published as @agentscope-ai/reme and currently resolves to version 0.1.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/20/2026

Versions

0.1.2stable
9/1/2026
0.1.1stable
9/1/2026
0.1.0stable
8/24/2026

Related plugins

Loading related plugins…

Latest
0.1.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
483.2 kB
Files
106
Surface
web
License
Apache-2.0
Source
npm
GitHub
★ 3.5k
Weekly downloads
166
Security scan
✓ v0.1.2 scan passed
Last push
9/20/2026
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in memory-context.

Memory Plugin@openviking/dsh-memory-pluginOpenViking memory and context bundle for DeepSeek HarnessContextdsh-contextA DeepSeek Harness plugin for context insight and management, with context dashboard and context command, for understanding how the context is made of, and how it evolves.Weknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.Memsearch Dsh@zilliz/memsearch-dshMemSearch plugin for DeepSeek Harness: shared markdown memory across agents, with capture, pre-step context injection, memory-recall skill, and a skill-candidate review panel.

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.

Requirements

  • A running ReMe HTTP service with the jobs required by the selected adapter.
  • Node.js 22.22.3+, 24.15.0+, or 25.9.0+ on the corresponding supported major-version line.
  • DeepSeek Harness or OpenClaw only when using that host-specific entry; the root client has no host runtime dependency.

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.

OptionDefaultMeaning
endpointhttp://127.0.0.1:2333ReMe HTTP service URL
languageenMemory guidance language: en or zh
autoMemoryEnabledtrueCapture completed main-agent turns
autoMemoryInterval5Submit after this many completed turns
autoDreamEnabledtrueEnable daily dream maintenance
dreamCron0 23 * * *Daily schedule in the workspace timezone
dreamHintemptyOptional guidance sent to auto_dream
rootAgentsOnlytrueExclude subagents from guidance and capture
searchLimit5Maximum results returned by reme_search
requestTimeoutMs10000Search request timeout
backgroundTimeoutMs3600000Automatic-memory and dream timeout
shutdownTimeoutMs5000Best-effort shutdown drain budget
timezoneAsia/ShanghaiIANA timezone used for batches and scheduling

The ReMe card reads the service's health_check and status jobs on demand. It shows the ReMe version, component health, chunk/index counts, process RSS, and estimated component memory; it can also display the redacted app_config response and trigger one auto_dream run. Diagnostics are refreshed when the card first opens or when the user asks, not polled continuously. The page calls the configured ReMe HTTP endpoint from the local browser, so that service must remain browser-reachable and allow the DSH origin.

OpenClaw

OpenClaw 2026.7.1 or later can install the same package. The current SDK and OpenClaw Gateway require Node.js 22.22.3+, 24.15.0+, or 25.9.0+ on their respective major-version lines:

openclaw plugins install @agentscope-ai/reme

Select reme for plugins.slots.memory when another memory plugin is active. The adapter uses OpenClaw's current before_prompt_build hook, registers the reme_search action, injects durable memory guidance, and recalls relevant memory before conversational root-agent runs. Completed user/assistant pairs are grouped into per-session, date-consistent batches for auto_memory; failed batches are retained for retry and pending work is flushed within a bounded Gateway shutdown budget. One plugin-owned daily schedule runs auto_dream. Recall is wrapped in <reme-context> and marked as untrusted historical data. Cron, heartbeat, memory, overflow, and subagent runs do not recall or capture conversational memory by default.

OpenClaw plugin configuration accepts:

OptionDefaultMeaning
endpointhttp://127.0.0.1:2333ReMe HTTP service URL
languageenMemory guidance language: en or zh
autoRecalltrueRecall before conversational root-agent runs
searchLimit5Maximum search results
recallMinScore0Minimum search score
autoMemoryEnabledtrueCapture completed conversational turns
autoMemoryInterval5Submit after this many completed turns
autoDreamEnabledtrueEnable daily memory consolidation
dreamCron0 23 * * *Daily schedule in the workspace timezone
dreamHintemptyOptional guidance sent to auto_dream
rootAgentsOnlytrueExclude subagents from guidance and capture
timezoneAsia/ShanghaiIANA timezone used for batches and scheduling
requestTimeoutMs10000Recall and explicit search timeout
backgroundTimeoutMs3600000Automatic-memory and dream timeout
shutdownTimeoutMs5000Best-effort shutdown drain budget

OpenClaw's conversation-access and prompt-injection permissions remain host settings; enable them for ReMe when your OpenClaw policy requires explicit grants. The adapter does not modify Gateway configuration.

Library entry

Consumers that only need the transport can import the root package:

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

Host code is available only through @agentscope-ai/reme/dsh and @agentscope-ai/reme/openclaw.

Development

cd typescript
npm ci
npm run format:check
npm run lint
npm run typecheck
npm test
npm run test:package

npm pack runs the TypeScript build and includes only dist, the DSH patch, the OpenClaw manifest, and the English and Chinese READMEs. npm run pack:clawhub -- <output-directory> creates the ClawHub artifact with the same runtime files and the OpenClaw-only README_OPENCLAW.md and README_OPENCLAW_ZH.md content at the package README paths.

Stable releases use npm's latest distribution tag; prereleases use next.