AI Agent Hub
Back to plugins
⚙️

dsh-minify

Workflow Updated 2026.08.19

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-minify

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

Run dsh plugin install uckkk/dsh-minify in DeepSeek Harness to install this plugin; the source repository is at https://github.com/uckkk/dsh-minify.

About this plugin

Minifying JavaScript, CSS, and HTML is routine in any frontend pipeline, yet inside an agent workflow that step often means spinning up an external service or a full build toolchain—slow, network-bound, and fragile. dsh-minify removes all of that: a pure Node.js implementation that runs entirely locally with no network calls and no external dependencies.

What it does is straightforward: compress JS, compress CSS, compress HTML. Everything happens in-process on your machine. There is nothing to upload, no API to hit, no callback to wait for. For developers already orchestrating tasks inside a dsh session, it plugs in as a single, self-contained step with zero extra pipeline configuration.

It is built for a specific need: you want frontend artifacts slimmed down as part of an agent workflow, but you do not want a simple minify to become a network round-trip or a CI job. If you prefer compression to happen quietly on your own machine with immediate results, dsh-minify is exactly that.

Use Cases

  • Minify JS/CSS/HTML artifacts as a step in an agent workflow
  • Slim frontend assets entirely offline with zero external service calls
  • Compress assets in a single session call without setting up a full build pipeline

Best For

  • Developers orchestrating frontend tasks in dsh sessions
  • Teams that need offline asset compression without network round-trips
  • Individuals wanting a plug-and-play minify step with no extra dependencies