ソース情報
- リポジトリ
- agntswrm/agent-media
- ソースの最終更新活動
- 2026年1月20日 11:18
- 検出された SKILL.md の言語
- 英語
- スター
- 6
- フォーク
- 3
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/agntswrm/agent-media --skill commitコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
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.
| 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