WaveSpeedAI/wavespeed-dsh-skill

A DeepSeek Harness (dsh) skill that lets the agent generate and edit AI media — image, video, audio, 3D — through the WaveSpeed platform, using the open-source @wavespeed/cli.

catalog descriptioncatalog 简介 / catalog description:WaveSpeed skill for DeepSeek Harness (dsh) — generate and edit AI image, video, audio & 3D via the wavespeed CLI

Project Overview项目介绍

WaveSpeed is a DeepSeek Harness plugin skill that lets the agent generate and edit AI images, videos, audio, and 3D content through the WaveSpeed platform via the @wavespeed/cli. Its core capability is a find → inspect → run pattern: the agent browses the live catalog, reads each model's input schema, and executes it with wavespeed run <model-id>, uploading local files via the @path marker. Use it when you need on-demand access to many generation models, price lookups, or project aliases inside a conversation. Caveat: requires Node.js ≥ 18, the globally installed CLI, and a logged-in WaveSpeed account.

WaveSpeed 是面向 DeepSeek Harness 的插件技能,让智能体通过 @wavespeed/cli 调用 WaveSpeed 平台完成 AI 图像、视频、音频与 3D 内容的生成和编辑。核心能力是 find → inspect → run 模式,智能体可浏览实时模型目录、读取输入 schema 并以 wavespeed run <model-id> 执行,支持 @path 自动上传本地文件。适用于需要在对话中直接调用多种生成模型、查询价格或管理项目别名的场景。注意:需 Node.js ≥ 18、全局安装 CLI,并通过 wavespeed login 完成账户认证后才能使用。

Or use CLI install (for developers)或使用命令行安装(适合开发者)

CLI Install命令行安装

dsh plugin --profile web add github:WaveSpeedAI/wavespeed-dsh-skill

WaveSpeedAI/wavespeed-dsh-skill 加入你的 DSH 配置(web profile)即可启用。

READMEREADME

WaveSpeed skill for DeepSeek Harness

中文

A DeepSeek Harness (dsh) skill that lets the agent generate and edit AI media — image, video, audio, 3D — through the WaveSpeed platform, using the open-source @wavespeed/cli.

Every model on the platform is one wavespeed run <model-id> call. The skill teaches the agent the find → inspect → run pattern, so it can browse the live catalog, read any model's input schema, and execute it — including uploading local files with the @path marker.

Requirements

  • Node.js ≥ 18
  • The WaveSpeed CLI: npm install -g @wavespeed/cli
  • A WaveSpeed account — wavespeed login opens the key page at wavespeed.ai and handles the rest

Install

As a dsh plugin (recommended — the bundle registers the skill automatically):

dsh plugin --profile web add github:WaveSpeedAI/wavespeed-dsh-skill

Or copy the skill directory by hand — project-level (checked into the repo, shared with your team):

mkdir -p .dsh/skills
git clone --depth 1 https://github.com/WaveSpeedAI/wavespeed-dsh-skill /tmp/wss \
  && cp -r /tmp/wss/skills/wavespeed .dsh/skills/ && rm -rf /tmp/wss

User-level (available in every project):

mkdir -p ~/.dsh/skills
git clone --depth 1 https://github.com/WaveSpeedAI/wavespeed-dsh-skill /tmp/wss \
  && cp -r /tmp/wss/skills/wavespeed ~/.dsh/skills/ && rm -rf /tmp/wss

Other agents (Claude Code, Cursor, Codex): the CLI installs the same skill directly —

wavespeed skill install

What the agent can do with it

# text → image
wavespeed run bytedance/seedream-v5.0-pro -p "a cyberpunk skyline at golden hour" --json

# edit a local image (uploaded automatically via @path)
wavespeed run bytedance/seedream-v5.0-pro/edit -p "replace the background with a sunlit kitchen" \
  -i images='["@./input.jpg"]' --json

# image → video
wavespeed run wavespeed-ai/minimax-h3/image-to-video -p "subtle parallax" -i image=@./hero.jpg --json

# check the cost before running anything
wavespeed price bytedance/seedream-v5.0-pro -i resolution=2k

The skill also covers project aliases (wavespeed.json), schema introspection, price/balance checks, and prediction history.

License

MIT — same as the CLI.


WaveSpeed AI — AI image & video generation platform. Try it in the browser: Image generator · Video generator

上一个 Prev dsh-open-a2a-net 下一个 Next dsh-openspec