AI Agent Hub
Back to plugins
🧰

dsh-base36

Web Tools Updated 2026.08.20

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-base36

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

Open a terminal in DeepSeek Harness and run dsh plugin install uckkk/dsh-base36 to install this plugin; source code is available at https://github.com/uckkk/dsh-base36 .

About this plugin

dsh-base36 is a lean Base36 encoding plugin built for converting numbers to and from 36-radix strings right inside a dsh session. Base36 maps decimal numbers into compact strings of 0-9 and A-Z, a pattern commonly seen in short-ID schemes, URL slugs, and inventory codes. Instead of spinning up a script or hitting an external API, you get the conversion in a single conversational call.

The entire implementation is pure Node.js with zero third-party dependencies and no network requests. Every calculation runs locally and instantly. Once installed, the plugin registers its tool into the session, so you simply describe the number you want to convert and get the result back with no extra configuration.

It is well suited to developers who handle coded identifiers in automation pipelines, or engineers who want to verify a Base36 value on the fly within a dsh workflow. Small, dependency-free, and ready the moment you install it.

Use Cases

  • Quickly encode decimal numbers into compact Base36 strings for short-ID schemes
  • Decode Base36 fragments from URLs back to their original numeric values
  • Batch-convert between identifiers and Base36 strings in automation scripts

Best For

  • Developers who regularly work with short-ID or URL-encoded values
  • Engineers who want to check a Base36 value on the fly inside a dsh session
  • Teams that prefer zero-dependency, plug-and-play utilities