AI Agent Hub
Back to plugins
🤖

dsh-max

Model Inference Updated 2026.08.20

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-max

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

Run dsh plugin install uckkk/dsh-max in DeepSeek Harness to install this plugin. The full source is available at https://github.com/uckkk/dsh-max.

About this plugin

Finding the maximum of a set of numbers inside a model-inference session should not require an internet connection or an external service. dsh-max brings that computation fully local: a pure Node.js implementation with zero network dependency. Once installed, it registers as a tool in your session—call it and get the result immediately.

Its core capability is deliberately narrow: accept a list of values and return the largest one. There is no extra runtime, no HTTP round-trip, no async wait for a remote response. The entire computation happens in-process, so it slots cleanly into any offline workflow without breaking when the network drops.

dsh-max is a good fit for developers who prefer local tooling, care about data privacy, or work in network-restricted environments. If you need a lightweight, install-and-go maximum-value tool without pulling in a heavy dependency chain for a single simple calculation, this is the plugin that is just enough.

Use Cases

  • Quickly compute the max of a number list offline
  • Embed a local math tool into an inference session
  • Avoid unnecessary network calls for simple arithmetic

Best For

  • Developers who prefer local, zero-network tooling
  • Engineers working in offline or restricted-network environments
  • Users needing lightweight math tools without heavy dependencies