AI Agent Hub
Back to plugins
⚙️

dsh-deep-equal

Workflow Updated 2026.08.20

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-deep-equal

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

Run dsh plugin install uckkk/dsh-deep-equal in your terminal to install this plugin; the source code is available at https://github.com/uckkk/dsh-deep-equal .

About this plugin

Agent workflow pipelines often need to determine whether two deeply nested structures are truly identical, but the native === operator only performs a shallow check. dsh-deep-equal fills that gap by registering a deep-equality comparison as a tool you can invoke directly inside a session, so your workflow nodes can carry out reliable structural comparisons without pulling in extra dependencies.

The entire plugin is written in pure Node.js with zero network calls and zero external package dependencies. Once installed, it is ready to use in your session and will not produce any side effects in sandboxed or offline environments.

If you are orchestrating agent workflows and need precise structural equivalence checks for conditional branching, output deduplication, or result validation, dsh-deep-equal is a lightweight, zero-configuration choice.

Use Cases

  • Comparing two nested objects in a workflow conditional branch
  • Deduplicating outputs by checking against previous results
  • Running structural comparison in sandboxed or offline environments

Best For

  • Developers orchestrating agent workflows
  • Teams needing lightweight tools with zero network dependencies
  • Engineers running nodes in sandboxed environments