AI Agent Hub
Back to plugins
🤖

dsh-abs

Model Inference Updated 2026.08.25

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-abs

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

Run dsh plugin install uckkk/dsh-abs to install the dsh-abs plugin in DeepSeek Harness; the source code is available at https://github.com/uckkk/dsh-abs under the MIT license.

About this plugin

During a model-inference session you may need to take the absolute value of an intermediate result, but you do not want to pay for an extra network round-trip or a heavy runtime dependency for such a simple operation. dsh-abs is a lightweight tool plugin designed for exactly this: once installed it registers a ready-to-call tool in your current session, so you simply invoke it and get the answer.

The implementation is deliberately minimal. It is written in pure Node.js, runs entirely on the local machine, makes zero network calls, and pulls in no third-party runtime. After installation the plugin registers its tool into the session automatically; you call it in the conversation and the absolute value is returned instantly, with no HTTP overhead and no package-management cost.

Whether you are building an offline inference pipeline, chasing low-latency local workloads, or just want a quick abs(-42) right in the chat, dsh-abs offers a clean plug-and-play solution. The project is released under the MIT license, so you are free to use, modify, and redistribute it.

Use Cases

  • Taking the absolute value of numeric results during an inference session
  • Building offline inference pipelines without network dependencies
  • Performing basic math operations quickly within a conversation

Best For

  • Developers building local or offline inference workflows
  • Plugin users seeking low-latency zero-dependency solutions
  • Inference platform developers needing basic math tools in-session