AI Agent Hub
Back to plugins
⚙️

dsh-gcd

Workflow Updated 2026.08.20

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-gcd

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

Run dsh plugin install uckkk/dsh-gcd in DeepSeek Harness to install this plugin; the source repository is https://github.com/uckkk/dsh-gcd.

About this plugin

In an agent workflow, the greatest common divisor is a small but frequently needed number-theory operation. dsh-gcd wraps this into a tool you can invoke directly within a conversation, so you no longer have to hand-roll the algorithm or lean on an external service every time.

The implementation is deliberately minimal: pure Node.js with zero network dependencies. That means it runs fully offline, unfazed by API rate limits, network hiccups, or third-party availability, and works in any Node environment out of the box. Usage is equally straightforward—install the plugin, then call its registered tool in your session and you are done.

If you are building a lean agent workflow and want your toolchain to carry as few external dependencies as possible, dsh-gcd is a zero-overhead option: it does one thing and does it cleanly.

Use Cases

  • Quickly compute the GCD of two or more integers within a conversation
  • Perform basic number-theory operations offline with no network dependency
  • Add a foundational math capability to your agent workflow

Best For

  • Developers building lightweight agent workflows with zero external dependencies
  • Users who need basic math tools callable directly in session
  • Plugin users who prefer pure local, offline-capable tooling