AI Agent Hub
Back to plugins
🤖

dsh-goldbach

Model Inference Updated 2026.08.20

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-goldbach

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

Install by running dsh plugin install uckkk/dsh-goldbach in DeepSeek Harness; the full source is hosted at https://github.com/uckkk/dsh-goldbach

About this plugin

Goldbach's conjecture is one of the most famous open problems in number theory, yet verifying a single even number as the sum of two primes can be tedious to do by hand. dsh-goldbach wraps that verification into a tool you can invoke directly in a DeepSeek Harness session, skipping the manual trial-and-error.

The implementation is intentionally lightweight: pure Node.js with zero network or external-service dependencies. Once installed, the plugin registers its tool automatically, and a single call in your conversation returns the Goldbach decomposition for the given even number.

It is a good fit for number-theory students doing in-class demos, developers who need a quick sanity check on specific values in integration tests, or anyone who wants to pop a prime-partition check into a chat window without spinning up a separate environment. MIT-licensed and ready to use out of the box.

Use Cases

  • Quickly demo Goldbach decomposition in a lecture
  • Verify prime-sum pairs for a specific even number in integration tests
  • Pop a prime-partition lookup into a chat window on the fly

Best For

  • Number-theory students and instructors
  • Developers needing quick prime-partition checks
  • Enthusiasts curious about Goldbach wanting a hands-on try in chat