DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Agnes Media — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
A

dsh-agnes-media

Agnes Media

Agnes AI image and video generation for DeepSeek Harness — agnes_image and agnes_video tools over the Agnes OpenAI-compatible gateway.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:zlforward/dsh-agnes-media#82fa693381e1356bd859f398376a03535a4faf9d
READMECompatibilityVersions

Compatibility and provenance

Agnes Media is published as dsh-agnes-media and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/10/2026

Versions

0.1.0stable
9/10/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
9/10/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in vision-media.

Tool Describe Image@linxin666/dsh-tool-describe-imageModel-facing describe_image tool for the dsh web GUI: gives a text-only model image understanding by asking a vision-language model at an OpenAI-compatible endpoint to describe one image (local path, http(s) URL, or attachment reference). Hot-pluggable — Modlens@liustack/modlensPlug-in vision for text-only LLMs, powered by the free Antigravity CLIDeepseek Ivideodeepseek-ivideoiPolloWork HyperFrames Video Studio and 27 editable video templates as a native DeepSeek Harness conversation view.Image Gendsh-image-genBring ChatGPT-like image generation to DeepSeek Harness — Gemini, OpenAI, Seedream, DashScope, local ComfyUI & more.

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