Skill Center

Run agent-media skills from anywhere

Every skill below is reachable via REST, MCP (Claude.ai · Cursor · Claude Code), CLI, or right here. Same auth, same Bearer token, same pipeline.

GitHub
1

Add the skills

One command pulls every agent-media skill into your agent (Claude Code, Cursor, …).
npx skills add gitroomhq/agent-media
2

Sign in

Connect your account so the skills can run jobs and spend credits.
npm i -g agent-media-cli && agent-media login
3

Just ask in chat

Then say it in plain words — the agent picks the right skill:
"Make a 10s UGC video of a friendly woman saying '…' with TikTok captions."

Available skills

Each is callable from MCP, the CLI, the skill, or the REST API — same skills, one Bearer token.

Loading…

Prefer raw HTTP?

Every skill is also a REST endpoint — same Bearer token. Poll GET /v1/skills/runs/<id> for the result.

REST
curl -X POST \
  https://api.agent-media.ai/v1/skills/make_ugc_video/run \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "description": "...", "script": "...", "duration": 5 }'