AI Agent Hub
Back to plugins
🧠

dsh-cerium

Memory Updated 2026.08.21

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-cerium

Paste the following prompt into your AI chat to install this plugin:

Run dsh plugin install uckkk/dsh-cerium in the DeepSeek Harness terminal to install the plugin; the repository is https://github.com/uckkk/dsh-cerium .

About this plugin

When building memory plugins, many solutions reach for external APIs or third-party services, turning state management into a network round-trip. dsh-cerium, named after the cerium element, takes a different path: it keeps every piece of its logic local and runs entirely without network dependencies, all from a pure Node environment.

Its interaction model is straightforward. The plugin requests fields from you step by step, and as you provide each piece of content, it writes them sequentially into a JSON structure. No bulk dumps, no hidden async calls—just a linear, predictable collection pipeline.

If you need a lightweight, offline, zero-dependency memory layer, or a simple step-by-step JSON state collector for your workflow, dsh-cerium fills that niche. It does not try to be more than it is: remember what you tell it and write it down, nothing further.

Use Cases

  • Collecting and persisting structured data in an offline environment
  • A lightweight, dependency-free memory layer inside your workflow
  • Guided step-by-step input written into JSON incrementally
  • Replacing network-dependent state collection in pure Node projects

Best For

  • Developers who need an offline, zero-dependency memory component
  • Users who prefer a pure Node environment without network calls
  • Workflow builders who want linear, predictable state collection