AI Agent Hub
Back to plugins
⚙️

dsh-unique

Workflow Updated 2026.08.20

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-unique

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

Run dsh plugin install uckkk/dsh-unique in the DeepSeek Harness terminal to install this plugin; the source is at https://github.com/uckkk/dsh-unique .

About this plugin

In agent workflows, array inputs often carry duplicate values, and those redundancies can quietly undermine downstream aggregation, validation, or rendering logic. dsh-unique solves this with a ready-to-use array deduplication tool, so you get a clean list of unique values without hand-writing filter or Set logic each time.

Under the hood it is a pure Node.js implementation with zero network dependencies and zero third-party packages. At runtime it makes no HTTP calls, pulls in no external modules, and the entire process is lightweight, deterministic, and fully offline. Once installed, the plugin registers itself as a session tool; a single in-conversation call is all it takes to produce the deduplicated result.

It is a good fit for developers whose agent pipelines frequently process array inputs, especially when you want to keep the dependency tree lean and avoid any additional network calls. One call, one clean array, nothing more.

Use Cases

  • Deduplicate array inputs in agent pipelines before passing to downstream nodes
  • Eliminate duplicate records in data pipelines to keep aggregation results accurate
  • Extract unique values from arrays quickly in fully offline environments

Best For

  • Developers building agent workflows who need lightweight array processing
  • Minimalist tool users who demand zero network and zero third-party dependencies
  • Engineers running automation pipelines in offline or controlled environments