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.

Tool Draw — DSH Plugin for DeepSeek Harness
← Plugins

dsh-tool-draw

Tool Draw

A DeepSeek Harness plugin that adds a draw_picture tool using Volcengine ARK (Doubao Seedream) or xAI Grok Imagine

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-tool-draw@0.2.2
READMECompatibilityVersions

Compatibility and provenance

Tool Draw is published as dsh-tool-draw and currently resolves to version 0.2.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.2.2stable
9/8/2026
0.2.1stable
9/8/2026
0.2.0stable
9/8/2026
Show 1 more versionCollapse versions
0.1.1stable
8/28/2026

Related plugins

Loading related plugins…

Latest
0.2.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
11.9 kB
Files
5
Surface
any
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
48
View source ↗Project homepage ↗
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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

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.Imagegen@dickpy/dsh-imagegenAI image generation plugin for the dsh web GUI: text-to-image and image-to-image through configurable provider channels (gpt-image-2 / grok-imagine-image / nanobanana series / seedream-5.0-pro / dall-e-3, with native xAI Grok Imagine, Google Nano Banana a

README

dsh-tool-draw

A DeepSeek Harness plugin that adds a draw_picture tool for AI image generation.

Supported providers:

  • Volcengine ARK API — Doubao Seedream model
  • xAI API — Grok Imagine (grok-imagine-image-2.0)

Installation

Via npm (recommended)

# Install as a dependency in your dsh profile
dsh plugin --profile <name> add dsh-tool-draw

Or manually:

npm install dsh-tool-draw

Via tarball

pnpm pack
dsh plugin --profile <name> add ./dsh-tool-draw-0.1.0.tgz

Configuration

1. Get an API Key

Choose a provider:

  • Volcengine ARK: visit the Volcengine ARK Console and create an API key
  • xAI: visit console.x.ai and create an API key

2. Set up the plugin

If you installed via dsh plugin add, the bundle is already registered. Just configure the provider and API key in your profile's cordis.patch.yml.

Using Volcengine ARK (default):

- insert:
    - id: dsh-tool-draw
      name: 'dsh-tool-draw'
      config:
        provider: 'ark'
        apiKey: 'your-ark-api-key-here'
        model: ''
        size: '1920x1920'
        timeoutMs: 120000

Using xAI Grok Imagine:

- insert:
    - id: dsh-tool-draw
      name: 'dsh-tool-draw'
      config:
        provider: 'xai'
        apiKey: 'your-xai-api-key-here'
        model: 'grok-imagine-image-2.0'
        size: '1024x1024'
        timeoutMs: 120000

Alternatively, you can set the ARK_API_KEY or XAI_API_KEY environment variable instead of putting the key in the config file.

Configuration Options

OptionTypeDefaultDescription
provider'ark' | 'xai''ark'Image generation provider
apiKeystring(required)API key of the selected provider. Can also be set via ARK_API_KEY (ark) or XAI_API_KEY (xai) env var
modelstringper providerModel name. Defaults: doubao-seedream-5.0-lite (ark), grok-imagine-image-2.0 (xai). Leave empty to use the provider default
sizestring1024x1024Image size, e.g. 1024x1024, 1920x1920
timeoutMsnumber120000Request timeout in milliseconds

Usage

Once installed and configured, the AI agent will have access to the draw_picture tool. Simply ask the agent to draw something:

"画一只猫" "draw a landscape" "帮我生成一张夕阳图片"

The tool accepts these parameters:

  • prompt (required) — Description of the image to generate
  • size (optional) — Image size, e.g. 1920x1920
  • n (optional) — Number of images to generate, default 1

API

This plugin exposes a single tool:

draw_picture

Generates images using the configured provider (Volcengine ARK Doubao Seedream or xAI Grok Imagine).

License

MIT