AI Agent Hub
Back to plugins
🧰

dsh-image-uckkk

Web Tools Updated 2026.08.17

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-image-uckkk

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

Run dsh plugin install uckkk/dsh-image-uckkk in DeepSeek Harness to install the image processing plugin; the full source code is available at https://github.com/uckkk/dsh-image-uckkk

About this plugin

Image handling inside automated pipelines rarely needs a heavyweight framework. In most cases you simply want to read dimensions, apply a proportional resize, and switch the output format. dsh-image-uckkk keeps the footprint minimal: a bundled, cross-platform ffmpeg binary, a pure Node implementation, and no system-level dependencies to manage.

The plugin exposes two narrowly scoped tools. image_info returns width, height, and format in a single call. resize_image scales proportionally or to explicit dimensions and writes the result as jpg, png, or webp. Each tool maps to exactly one operation, keeping calls predictable and easy to audit within larger workflows.

It fits any DSH pipeline that touches images at any frequency: a thumbnail-generation step, a format-normalisation pass before upload, or a quick spec check embedded in a broader automation. If your requirement is simply "read it, shrink it, convert it," this plugin covers precisely that and nothing more.

Use Cases

  • Normalising image size and format before upload
  • Batch-generating thumbnails at a target dimension
  • Quick spec check inside a larger automation pipeline

Best For

  • Developers who need lightweight image handling in DSH workflows
  • Engineers building thumbnail or format-normalisation pipelines
  • Node.js developers who want to avoid system-level ffmpeg dependencies