DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Imagedit — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
I

dsh-imagedit

Imagedit

DeepSeek Harness 的本地图像编辑工具包:提供一个 image_edit 工具,用于执行确定性编辑——抠图(快速泛洪填充或 rembg AI)、裁剪、翻转、旋转、调整亮度/对比度/饱和度、模糊、锐化、圆角、边框、画布调整大小并居中、精灵图,以及导出 PNG/JPEG/WebP。还以 skill 形式提供

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:bbbz123/dsh-imagedit#9948366d0982fb714ec982369f41045c765ecb17
README兼容性版本

说明

DeepSeek Harness 的本地图像编辑工具包:提供一个 image_edit 工具,用于执行确定性编辑——抠图(快速泛洪填充或 rembg AI)、裁剪、翻转、旋转、调整亮度/对比度/饱和度、模糊、锐化、圆角、边框、画布调整大小并居中、精灵图,以及导出 PNG/JPEG/WebP。还以 skill 形式提供(SKILL.md + CLI 脚本)。

兼容性与来源证明

Imagedit 以 dsh-imagedit 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/8/20

版本

0.1.0stable
2026/8/20

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/8/30
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 vision-media 分类下经过校验的插件。

Tool Describe Image@linxin666/dsh-tool-describe-image面向模型的 describe_image 工具,用于 dsh Web GUI:通过在兼容 OpenAI 的端点调用视觉语言模型,为文本模型提供图像理解能力,以描述一张图像(本地路径、http(s) URL 或附件引用)。可热插拔 —Modlens@liustack/modlens面向仅支持文本的 LLM 的插件视觉能力,由免费的 Antigravity CLI 提供支持Deepseek Ivideodeepseek-ivideoiPolloWork HyperFrames Video Studio,以及 27 个可编辑视频模板,以原生 DeepSeek Harness 对话视图呈现。Codexdsh-codexChatGPT OAuth、Codex 模型、搜索、read_image URL 支持,以及适用于 DeepSeek Harness 的 gpt-image-2 生成

README

dsh-imagedit

本地图像编辑工具箱 — A DeepSeek Harness (DSH) plugin and skill for deterministic local image editing: background cutout (rembg AI or instant flood-fill), trim, flip, rotate, brightness/contrast/saturation, blur, sharpen, rounded corners, border, canvas normalization, sprite sheets, and PNG/JPEG/WebP export.

Dual form: a cordis plugin that registers an image_edit agent tool (agent calls it directly with structured parameters), and a skill with the same functionality via a Python CLI. Originally adapted from a Codex skill and upgraded for DSH (dependency-free quick cutout, sprite sheets, JPEG export, batch-directory processing).

Features

AreaOperations
抠图remove_bg: quick (flood-fill, no model) · remove_bg: rembg (AI)
基础trim · flip h/v · rotate · padding · canvas WxH (scale+center)
调色brightness · contrast · saturation
滤镜blur · sharpen
修饰rounded (corners) · border W[,HEX] · auto-orient (EXIF)
批量JSON manifest · --dir recursive folder · sprite sheet + sprites.json
导出PNG (oxipng/pngquant auto) · JPEG · WebP (quality)

Install

As a plugin (agent tool image_edit) — recommended

# local link install
dsh plugin --profile web add link:D:\path\to\dsh-imagedit

# once published on npm / GitHub
dsh plugin --profile web add dsh-imagedit
# or
dsh plugin --profile web add github:bbbz123/dsh-imagedit

Restart dsh web; the image_edit tool then appears in the tool catalog and the agent can call it directly. Override the Python interpreter with the DSH_IMAGEDIT_PYTHON environment variable if needed.

As a skill (CLI)

git clone https://github.com/bbbz123/dsh-imagedit "$HOME\.dsh\skills\dsh-imagedit"
# or copy the folder into <project>\.dsh\skills\dsh-imagedit for one project

DSH discovers it automatically. The skill instructs the agent to prefer the image_edit tool when available and fall back to the CLI.

Usage

Agent tool

Call image_edit with structured params, e.g.:

{
  "input": "gen/sword.png",
  "remove_bg": "quick",
  "bg_color": "auto",
  "canvas": "256x256",
  "padding": 16,
  "formats": ["png", "webp"]
}

CLI

# quick flood-fill cutout + canvas
python scripts/asset_pipeline.py run --input item.png `
  --remove-bg-quick auto --canvas 256x256 --padding 16 --out-dir output/images/edited

# combined edits
python scripts/asset_pipeline.py run --input item.png `
  --remove-bg-quick #FFFFFF --rotate 90 --flip h `
  --brightness 1.1 --saturation 1.2 --rounded 30 --border "4,#FF0000" `
  --exports png jpg --out-dir output/images/edited

# batch a whole folder (recursive)
python scripts/asset_pipeline.py batch --dir ./photos --rotate 90 --exports jpg

# batch manifest + sprite sheet
python scripts/asset_pipeline.py batch --manifest manifest.json

See references/cli.md for the full CLI reference and manifest schema, and SKILL.md for the agent-facing instructions.

Recommended pipeline (with dsh-draw + vision-router)

dsh-draw / image_generate  (prompt: "flat solid white background, no shadows")
  → image_edit (remove_bg: quick, canvas, padding)  →  engine-ready PNG
  → batch manifest with "sheet" for a sprite atlas

For complex assets prefer remove_bg: "rembg"; for one-off visual checks of the cutout use vision_extract_foreground.

Requirements

  • Python 3.10+ and Pillow (required)
  • rembg (optional, only for the rembg cutout mode)
  • oxipng / pngquant (optional, auto-used when on PATH)

License

MIT — see LICENSE.