AI Agent Hub
Back to plugins
⚙️

dsh-omit

Workflow Updated 2026.08.20

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-omit

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

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

About this plugin

When data passes through multiple nodes in an agent workflow, it often carries a trail of irrelevant fields that add noise to downstream processing and make debugging harder. dsh-omit provides a focused omit-fields tool that lets you explicitly mark which fields should be skipped so they do not propagate to subsequent steps.

Under the hood, dsh-omit is written in pure Node.js with no network calls and no third-party runtime dependencies. Once installed, the tool it registers is available for direct invocation within a session — no extra configuration, no background daemon. This zero-network, zero-dependency design makes it a natural fit for offline environments, internal deployments, and any setting where security and minimal surface area are priorities.

It suits developers building or maintaining agent workflows who need to prune fields between nodes, especially those who prefer local execution, want the smallest possible dependency footprint, and like keeping flow-control logic in code rather than in an external service.

Use Cases

  • Prune irrelevant fields between agent workflow nodes
  • Filter data in offline or air-gapped environments
  • Isolate interfering data when debugging multi-node pipelines

Best For

  • Developers building agent workflows
  • Teams that prefer minimal dependency footprints
  • Engineers who favor local execution with no external services