DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-agnes-media

Agnes Media

适用于 DeepSeek Harness 的 Agnes AI 图像和视频生成——通过 Agnes OpenAI-compatible gateway 提供 agnes_image 和 agnes_video 工具。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:zlforward/dsh-agnes-media#82fa693381e1356bd859f398376a03535a4faf9d
README兼容性版本

兼容性与来源证明

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

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

版本

0.1.0stable
2026/9/10

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 1
周下载
0
最近提交
2026/9/10
查看源码 ↗
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 对话视图呈现。Image Gendsh-image-gen将类似 ChatGPT 的图像生成功能带到 DeepSeek Harness——支持 Gemini、OpenAI、Seedream、DashScope、本地 ComfyUI 等。

README

dsh-agnes-media

English | 中文

Agnes AI image and video generation for DeepSeek Harness, as two model-facing tools:

ToolEndpointPurpose
agnes_imagePOST /v1/images/generationsText-to-image, image-to-image, multi-image composition
agnes_videoPOST /v1/videos + GET /agnesapiAsynchronous tasks: text-to-video, keyframes, multimodal reference

Why a plugin rather than an LLM route

The harness LLM seam speaks chat protocols only (completions / responses / messages). Agnes' text models make a fine llm-pi-ai route, but image and video are generation endpoints that return no conversation — so they are tools, not models. The two coexist: text on a route, media through this plugin.

Install

dsh plugin --profile <profile> add dsh-agnes-media

Or declare it as a bundle in the profile package.json:

{
  "dsh": { "profile": { "bundles": ["dsh-agnes-media"] } }
}

Restart the harness afterwards.

Credentials

No secret is stored by the plugin. Each call resolves apiKeyEnv (default AGNES_API_KEY) through the harness credential seam:

# $DSH_HOME/.credentials.yaml
refs:
  AGNES_API_KEY: sk-...

An unconfigured reference fails with an error naming it, rather than sending a request that is certain to 401.

Configuration

Override by id from the profile patch layer:

- id: agnes-media
  config:
    baseURL: https://apihub.agnes-ai.com/v1
    apiKeyEnv: AGNES_API_KEY
    imageModel: agnes-image-2.5-flash
    videoModel: agnes-video-2.5-flash
    outputDir: agnes-media
    requestTimeoutMs: 300000
    imageTimeoutMs: 360000
    videoTimeoutMs: 1800000
    videoPollIntervalMs: 3000
FieldDefaultMeaning
baseURLhttps://apihub.agnes-ai.com/v1International service. China is https://api.agnes-ai.cn/v1; the international alternate is https://apihub.agnes-ai.cn/v1
apiKeyEnvAGNES_API_KEYCredential reference resolved per call
imageModelagnes-image-2.5-flashUsed when a call names no model
videoModelagnes-video-2.5-flashDefaults to the free tier so an unconfigured call cannot silently spend money
outputDiragnes-mediaRelative to the calling workspace; an absolute outputPath bypasses it

Where artifacts land

By default, under the calling agent session's workspace:

<workspace>/agnes-media/image-<UTC timestamp>.png
<workspace>/agnes-media/video-<UTC timestamp>.mp4

Extensions come from sniffing the downloaded bytes, not from a fixed table. Pass outputPath to override — relative paths resolve against the workspace, absolute paths are used as given.

Agnes also returns a URL it hosts (the result's sourceUrl), and that URL may expire, so the plugin downloads the bytes; the local file is authoritative.

Free tiers

Per the Agnes pricing page: every resolution tier of all three image models is currently free; agnes-video-v2.0 and agnes-video-2.5-flash are currently $0/second; agnes-video-2.5 is billed per second. The free tier is rate-limited per account.

Implementation notes: where the API differs from its documentation

Each of these was observed against the live endpoint and each one affects correctness, so they are documented rather than left in code comments:

  • The video result URL is at the top level (url), not at the documented metadata.url — a completed response carried no metadata object at all. The plugin prefers the observed shape and keeps the documented one as a fallback.
  • Task status uses spellings the documentation does not list — live responses returned pending where the docs say queued. Status is therefore read as a terminal-state check (completed / failed), never an enumeration of in-progress values.
  • Polling returns 429 even at the documented 1–2 second cadence. The plugin backs off instead of reporting a rate limit as a generation failure.
  • Creation returns 503 video_queue_full. Also retried with backoff. A generic 500 is deliberately not retried: it cannot be told apart from a task that was created before the failure, and retrying would bill for a duplicate.
  • The result URL rejects the bearer token — attaching it yields 401. Downloads are unauthenticated.
  • Images accept data URIs, so a local image can be inlined without an upload step.
  • Video media must be a public URL: Agnes fetches it server-side and cannot reach this machine's filesystem.

Limitations

  • Image input support relies on Agnes accepting data URIs (verified), which is not true of every OpenAI-compatible gateway.
  • The video tool is long-running: it polls for up to 30 minutes by default, declares a matching timeoutMs, and observes exec.signal throughout for cooperative cancellation.
  • Agnes' image and video model catalog is not discovered from the endpoint; model names are configuration.

License

MIT