AI Agent Hub
Back to plugins
🧰

dsh-html-decode

Web Tools Updated 2026.08.20

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-html-decode

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

Run dsh plugin install uckkk/dsh-html-decode in DeepSeek Harness to install this plugin, source code available at https://github.com/uckkk/dsh-html-decode

About this plugin

Crawled pages, API responses, and raw logs are riddled with HTML entities like <, &, and ' that make the text painful to read or process in downstream pipelines. dsh-html-decode addresses exactly this: it accepts a block of entity-encoded text and returns clean, human-readable plain text in a single call, eliminating the need for manual regex substitution or bolting on a separate escape library.

The plugin is implemented in pure Node.js with zero network calls. All decoding logic runs locally, so it behaves identically in air-gapped sandboxes, internal CI runners, and offline environments without any risk from external service flakiness. Usage is frictionless: after installing, invoke the tool the plugin registers in your session, pass in the encoded string, and the decoded result comes back immediately.

If you work with crawler post-processing, data-cleaning pipelines, front-end rendering debugging, or simply want to turn a wall of HTML entities into readable text during a conversation, this lightweight utility was built for you. No configuration, no network dependency, no extra runtime — just clean text, done in one step.

Use Cases

  • Batch-strip HTML entities from crawled page text to get clean plain text
  • Restore escaped characters like &lt; and &amp; in API payloads or data pipelines
  • Convert entity-encoded log entries or exports into human-readable characters on the fly

Best For

  • Web scraping and data collection engineers
  • Front-end and full-stack developers
  • Data cleaning and ETL pipeline engineers