AI Agent Hub
Back to plugins
🤖

dsh-fibonacci

Model Inference Updated 2026.08.25

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-fibonacci

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

Open a terminal and run dsh plugin install uckkk/dsh-fibonacci to add the plugin to your DeepSeek Harness setup; source code is available at https://github.com/uckkk/dsh-fibonacci .

About this plugin

When building inside a DeepSeek Harness (dsh) model-inference session, you occasionally need a fast, reliable Fibonacci calculation without spinning up an external service or firing off a network request. dsh-fibonacci is a lightweight tool plugin designed exactly for that moment.

Written entirely in pure Node.js with zero network dependencies, the plugin introduces no extra runtime overhead. Once installed, it registers a ready-to-use Fibonacci tool in the session, performing all computation locally so the response returns with virtually no latency and no waiting on a remote API. The implementation is deliberately minimal, with no extra configuration to wrestle with.

If you are assembling an offline or low-latency inference toolchain, or simply want a small math utility that works out of the box in any environment, dsh-fibonacci is a clean, no-nonsense pick. Released under the MIT license, it can be dropped into your workflow with full confidence.

Use Cases

  • Quick Fibonacci computation inside an inference session
  • Assembling an offline low-latency local toolchain
  • Verifying sequence recurrence logic in a teaching demo

Best For

  • Inference developers who need local math utilities
  • Users who prefer zero-dependency install-and-go plugins
  • Engineers building offline computation pipelines