AI Agent Hub
Back to plugins
🧩

dsh-random

admin-security Updated 2026.08.19

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-random

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

Run dsh plugin install uckkk/dsh-random in DeepSeek Harness to install this plugin (source: https://github.com/uckkk/dsh-random), then add dsh-random to your profile bundle list to use its random tools.

About this plugin

When you need a secure random integer, a random string, or an unbiased shuffle of a candidate list in the middle of a DeepSeek session, reaching for a quick script or an external API used to be the only option. dsh-random packages these high-frequency, low-complexity tasks into three ready-to-call tools so your conversation flow is never interrupted by boilerplate random logic.

Everything is built on Node s native crypto module with zero third-runtime dependencies. The plugin exposes random_int for a secure random integer within a range, random_string for a fixed-length random string (handy for throwaway IDs or tokens), and random_pick for drawing without replacement or fully shuffling an array. All computation stays on your machine.

It is a practical fit for developers and power users who regularly need random values in conversation—quickly generating test fixtures, selecting a random subset for a script, or running a Monte Carlo style sample—without leaving the session to write extra code.

Use Cases

  • Generate throwaway IDs or temporary tokens on the fly during a session
  • Draw a subset without replacement or fully shuffle a candidate list
  • Produce secure random integers within a range for scripts or sampling logic

Best For

  • Developers who frequently need random values inside DeepSeek sessions
  • Users who prefer local secure random generation without external services
  • Power users running Monte Carlo sampling or preparing A/B test data