Skip to content

Add wavespeed-media-generation skill 🤖🤖🤖 - #2726

Open
chengzeyi wants to merge 1 commit into
github:mainfrom
chengzeyi:add-wavespeed-skill
Open

Add wavespeed-media-generation skill 🤖🤖🤖#2726
chengzeyi wants to merge 1 commit into
github:mainfrom
chengzeyi:add-wavespeed-skill

Conversation

@chengzeyi

Copy link
Copy Markdown

Pull Request Checklist

  • I have read and followed the CONTRIBUTING.md guidelines.
  • I have read and followed the Guidance for submissions involving paid services.
  • My contribution adds a new instruction, prompt, agent, skill, workflow, or canvas extension file in the correct directory.
  • The file follows the required naming convention.
  • The content is clearly structured and follows the example format.
  • I have tested my instructions, prompt, agent, skill, workflow, or canvas extension with GitHub Copilot.
  • I have run npm start and verified that README.md is up to date.
  • I am targeting the main branch for this pull request.

Description

Adds skills/wavespeed-media-generation, a skill that teaches the agent to generate and edit AI media (images, video, audio, 3D) through the WaveSpeed CLI (@wavespeed/cli).

What it covers:

  • The find -> inspect -> run workflow: wavespeed models <query> to search the live model catalog, wavespeed run <id> -h to inspect each model's input schema, then wavespeed run <id> -p "..." -i key=value --json to execute.
  • Local-file upload via @path markers inside -i values (the CLI uploads the file and substitutes its hosted URL).
  • Cost discipline: quoting with wavespeed price before expensive runs (video, batches, high resolution) and confirming with the user, plus wavespeed usage / wavespeed billings for spend questions.
  • Authentication without pasting keys into chat: wavespeed status / wavespeed login, or WAVESPEED_API_KEY for non-interactive shells.
  • Common pitfalls (bare local paths, invented model IDs, non-interactive delete --yes).

Requires a WaveSpeed account and API key (paid service). npm run skill:validate and npm start both run clean; the generated skills table is updated in this PR.


Type of Contribution

  • New instruction file.
  • New prompt file.
  • New agent file.
  • New plugin.
  • New skill file.
  • New agentic workflow.
  • New canvas extension.
  • Update to existing instruction, prompt, agent, plugin, skill, workflow, or canvas extension.
  • Other (please specify):

Additional Notes

Affiliation disclosure: this is an official contribution from the WaveSpeed team (I am with WaveSpeedAI, the company behind wavespeed.ai). The skill is adapted from the media-generation skill we maintain for other coding agents and is kept to practical CLI guidance.

AI-assisted development disclosure: this skill was developed with AI assistance (Claude Code) and reviewed by the team.

🤖 Generated with Claude Code

https://claude.ai/code/session_01LJJXU9zyoDSBjApcUpteDt


By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.

Adds a skill teaching Copilot the WaveSpeed CLI workflow for AI media
generation: find -> inspect -> run across the model catalog, local-file
upload via @path markers, and price quotes before expensive runs.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01LJJXU9zyoDSBjApcUpteDt
@chengzeyi
chengzeyi requested a review from aaronpowell as a code owner August 20, 2026 03:16
Copilot AI balanced review requested due to automatic review settings August 20, 2026 03:16
@github-actions github-actions Bot added new-submission PR adds at least one new contribution skills PR touches skills labels Aug 20, 2026
@github-actions

Copy link
Copy Markdown
Contributor

🔒 PR Risk Scan Results

Scanned 1 changed file(s).

Severity Count
🔴 High 0
🟠 Medium 0
ℹ️ Info 0

✅ No matching risk patterns were detected in changed files.

This is an automated soft-gate report. Findings indicate review targets and do not block merge by themselves.

@github-actions

Copy link
Copy Markdown
Contributor

🟡 Contributor Reputation Check: MEDIUM risk

Check Risk
Profile MEDIUM
Credential audit NONE

Maintainers: please review this contributor before merging.
See the workflow run for full details.
Automated check powered by AGT.

@github-actions github-actions Bot added the needs-review:MEDIUM Contributor reputation check flagged MEDIUM risk label Aug 20, 2026
@github-actions

Copy link
Copy Markdown
Contributor

🔍 Vally Lint Results

✅ All checks passed

Scope Checked
Skills 1
Agents 0
Total 1
Severity Count
❌ Errors 0
⚠️ Warnings 0
ℹ️ Advisories 0

Summary

Level Finding
ℹ️ ✅ wavespeed-media-generation (2/2 checks passed)
ℹ️ ✓ [spec-compliance] All 1 skill(s) are spec-compliant.
ℹ️ ✓ spec-compliance: All spec checks passed.
ℹ️ ✓ [valid-refs] All file references across 1 skill(s) are valid.
ℹ️ ✓ valid-refs: All file references resolve to existing files within the skill directory.
ℹ️ 1 skill(s) linted, 1 passed
Full linter output
### Linting skills/wavespeed-media-generation
✅ wavespeed-media-generation (2/2 checks passed)
    ✓ [spec-compliance] All 1 skill(s) are spec-compliant.
        ✓ spec-compliance: All spec checks passed.
    ✓ [valid-refs] All file references across 1 skill(s) are valid.
        ✓ valid-refs: All file references resolve to existing files within the skill directory.

1 skill(s) linted, 1 passed

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a WaveSpeed CLI skill for AI media generation and editing.

Changes:

  • Documents setup, authentication, pricing, model discovery, and media workflows.
  • Adds the generated skills index entry.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.

File Description
skills/wavespeed-media-generation/SKILL.md Adds WaveSpeed usage guidance and recipes.
docs/README.skills.md Registers the new skill.
Suppressed comments (1)

skills/wavespeed-media-generation/SKILL.md:95

  • This recipe depends on jq, although the skill declares only Node.js and the WaveSpeed CLI as prerequisites. On systems without jq, the documented upload workflow fails; use the already-required Node runtime to parse the JSON instead.
URL=$(wavespeed upload ./hero.jpg --json | jq -r .url)

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

name: wavespeed-media-generation
description: 'Generate or edit AI media (images, video, audio, 3D) using the WaveSpeed CLI. Use when asked to create, edit, animate, upscale, or transform images, generate video from text or images, extend or edit video clips, produce TTS/music/audio, or build visual assets. Covers the find -> inspect -> run workflow across the WaveSpeed model catalog, local-file uploads, and price quotes before running. Requires a WaveSpeed account and API key.'
license: MIT
compatibility: Requires Node.js and the WaveSpeed CLI (`npm install -g @wavespeed/cli`) plus a WaveSpeed account (https://wavespeed.ai). Authenticate via `wavespeed login` or the WAVESPEED_API_KEY environment variable.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

needs-review:MEDIUM Contributor reputation check flagged MEDIUM risk new-submission PR adds at least one new contribution skills PR touches skills

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants