AI Agent Hub
Back to plugins
🧰

dsh-url-codec

Web Tools Updated 2026.08.19

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-url-codec

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

Run dsh plugin install uckkk/dsh-url-codec in the DeepSeek Harness terminal to install the plugin from https://github.com/uckkk/dsh-url-codec, then add dsh-url-codec to dsh.profile.bundles in your profile to enable it.

About this plugin

When working with URLs in a conversation, special characters—spaces, CJK text, symbols—can quickly turn parameter debugging or link assembly into a headache. dsh-url-codec addresses this by turning URL encoding and decoding into an in-conversation tool, so you never need to switch to a browser or call an external API.

The plugin is implemented in pure Node.js with zero network requests and zero external service dependencies. Once installed, it registers its tools into the session; simply invoke the tool to get an encoded or decoded result that you can copy straight into your code or address bar.

It suits front-end developers debugging query strings, back-end engineers handling special-character escaping in URLs, and anyone who wants a quick encode or decode without leaving the current conversation context.

Use Cases

  • Quickly encoding special characters in query parameters while debugging API requests
  • Converting URL strings with CJK or spaces into properly encoded format
  • Decoding escaped URLs in conversation to recover the original content
  • Assembling or splitting parameterized links without manual escaping errors

Best For

  • Front-end developers who frequently handle URL encoding and decoding in conversations
  • Back-end engineers debugging API parameter escaping issues
  • Developers who want to handle URLs without leaving the conversation context