AI Agent Hub
Back to plugins
🤖

dsh-binary

Model Inference Updated 2026.08.20

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-binary

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

Install this plugin in DeepSeek Harness by running dsh plugin install uckkk/dsh-binary in the terminal; the full source code repository is at https://github.com/uckkk/dsh-binary.

About this plugin

Binary data conversion is a small but recurring step in model-inference and session pipelines that is typically handled by heavyweight runtimes or external services, adding unnecessary complexity, build-time dependencies, and extra network round-trips.

dsh-binary strips that away. It is a pure Node.js implementation with zero external build dependencies and zero network requests. Once installed, it registers as an in-session tool; you invoke it and the binary conversion happens locally, instantly, and fully offline. There is no daemon to keep alive and no upstream API to reach.

It is best suited for developers who need inline binary handling inside their inference pipeline—especially in lightweight, edge, or low-connectivity deployments where every extra dependency and every network call is a liability rather than a convenience.

Use Cases

  • Inline binary format conversion inside a model-inference pipeline
  • Offline binary data handling in no-network or low-connectivity environments
  • Embedding zero-dependency binary conversion into lightweight session workflows

Best For

  • Developers who need inline binary handling in inference pipelines
  • Engineers pursuing lightweight deployments with minimal external dependencies
  • System maintainers operating in edge or offline scenarios