AI Agent Hub
Back to plugins
🧰

dsh-query-string

Web Tools Updated 2026.08.19

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-query-string

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

Install the plugin in DeepSeek Harness by running dsh plugin install uckkk/dsh-query-string; the source code is available at https://github.com/uckkk/dsh-query-string .

About this plugin

Whenever you are building web tooling, you keep running into the same micro-task: turning a URL query string into a structured object, or serializing an object back into a query string. Done by hand it is easy to forget escaping or to trip over nested parameters. dsh-query-string collapses that back-and-forth into a single tool call—pass in the query string and get a clean object, or hand over an object and receive a well-formed query string.

Under the hood the implementation is deliberately minimal: pure Node.js, zero network calls, no external services and no third-party runtime dependencies. That makes it safe to drop into CI pipelines, offline sandboxes, or resource-constrained profiles without pulling in extra supply-chain surface.

If you find yourself repeatedly crafting crawler parameters, assembling API debug URLs, or reading and writing query strings inside automation scripts, adding this plugin to your profile lets you handle the conversion with one natural-language prompt instead of scribbling a few lines of parsing code every time.

Use Cases

  • Parse URL query parameters from API responses into structured objects for field-level processing
  • Serialize a local config object into a full query string for assembling API debug URLs
  • Batch-convert between query string and object formats inside offline automation scripts

Best For

  • Front-end and full-stack developers who frequently assemble or parse URL parameters
  • Automation engineers writing crawler or API debugging scripts
  • CI maintainers who need lightweight string utilities in offline environments