用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/agntswrm/agent-media --skill commit命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Agent-first media toolkit for image, video, and audio processing. Use when you need to resize, convert, generate, edit, upscale images, remove backgrounds, extend or crop canvases, extract audio, transcribe speech, or generate videos. All commands return deterministic JSON output.
Extracts audio track from a video file. Use when you need to get audio from video, prepare audio for transcription, or separate audio from video content. Runs locally with no API key required.
Transcribes audio to text with timestamps and optional speaker identification. Use when you need to convert speech to text, create subtitles, transcribe meetings, or process voice recordings.
正在显示 SKILL.md
| name | commit |
| description | Commit workflow for agent-media - builds, typechecks, creates changeset, and pushes |
When committing changes to this repository, follow these steps:
Run both commands and ensure they pass:
pnpm build && pnpm typecheck
Do not proceed if either fails. Fix all errors first.
git status
git diff --stat
IMPORTANT: The CLI package is named agent-media (NOT @agent-media/cli).
Create .changeset/<descriptive-name>.md:
---
"agent-media": patch|minor|major
"@agent-media/core": patch|minor|major
"@agent-media/providers": patch|minor|major
"@agent-media/image": patch|minor|major
"@agent-media/audio": patch|minor|major
"@agent-media/video": patch|minor|major
---
Brief description of changes
Only include packages that were actually modified. Use:
patch for bug fixesminor for new features (backward compatible)major for breaking changesgit checkout -b feat/<descriptive-name>
# or fix/<descriptive-name> for bug fixes
git add <files> .changeset/<name>.md
git commit -m "feat|fix: descriptive message"
git push -u origin <branch-name>
gh pr create --title "..." --body "..."
Note: If you need to switch GitHub accounts for PR creation, check
.claude.local/workflow.mdfor your personal account switching commands.
pnpm changeset version locallypnpm build && pnpm typecheck before committing