AI Agent Hub
Back to plugins
🧰

dsh-image

Web Tools Updated 2026.08.19

Run the following command in DeepSeek Harness:

dsh plugin install uckkk/dsh-image

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

To install the dsh-image plugin in DeepSeek Harness (source: https://github.com/uckkk/dsh-image), run dsh plugin install uckkk/dsh-image and add "dsh-image" to dsh.profile.bundles in the profile's package.json.

About this plugin

In day-to-day conversations and automation pipelines, confirming image dimensions and converting formats are frequent yet tedious tasks. dsh-image folds both into a single conversational step: one call reads width, height, and codec; another resizes to a proportional or fixed dimension and emits jpg, png, or webp as the target format, eliminating round-trips to an editor or a hand-written script.

Under the hood the plugin ships a self-contained ffmpeg binary, so no system-level codec installation is required on the host. The implementation is pure Node.js with consistent cross-platform behavior. Only two tools are exposed—image_info for reading dimensions and format, and resize_image for scaling and format conversion—keeping the interface minimal without extraneous parameter branches.

It is well suited for developers embedding image processing into conversational workflows, script authors who need to batch-verify or adjust image metadata in automation pipelines, and anyone who wants to handle basic image tasks with the fewest possible steps.

Use Cases

  • Quickly check image dimensions and codec within a conversation
  • Resize an image proportionally and convert it to webp for web embedding
  • Batch-validate or adjust image dimensions and output format in automation pipelines

Best For

  • Developers embedding image processing into conversational workflows
  • Automation authors who need to verify or adjust image metadata in scripts
  • Users who want cross-platform image tools without extra system dependencies