Frame.io Agent
Enables coding agents to read and write to Frame.io (projects, assets, reviews, comments, and more) with confirmation-gated mutations.
README
Frame.io Agent
by VAXA Studio
Turn your coding agent into an assistant editor who actually knows Frame.io.
Ask your agent, from anywhere:
- "Dig through today's clips and cut me a reel of only the shots that don't suck."
→
frames pullhands your agent a frame from every clip; it judges them and ships the keepers as a review link. - "Read every note the client left on v7 and tell me what they actually want."
→
comments --jsonreturns every note with timecodes; your agent does the diplomacy. - "Contact sheet of the shoot — minus every take with a C-stand in the background." → your agent looks at the frames, spots the C-stands, rebuilds the sheet without them.
The CLI has no LLM inside it — it gives whatever agent you already run (Claude Code, Cursor, Codex, Gemini CLI, any OpenRouter harness) clean JSON, real pixels, and confirmation-gated write commands. Read-only by default; it can't delete, rename, move, or change permissions. Ever.
<!-- TODO: 5-second terminal GIF of the success moment (frames pull → agent judges → filtered contact sheet). Record after next live run. -->
Unofficial community tool. Not affiliated with, endorsed by, or supported by Adobe or Frame.io. "Frame.io" is a trademark of Adobe.
Prerequisites
- A Frame.io V4 account (the
next.frame.ioplatform — legacy v3fio-u-*tokens won't work). - An Adobe ID that can open the Adobe Developer Console and add the Frame.io API (free; one-time ~5-minute OAuth app setup — the wizard walks you through it).
- Python 3.10+ and git.
- Optional: a multimodal agent for the vision workflows;
pip install "frameio-agent[images]"for contact sheets;[youtube]for YouTube/X ingestion.
Quick start (with an agent)
git clone https://github.com/sheldondirector/frameio-agent
cd frameio-agent
Then paste this to your coding agent:
Connect this repo to my Frame.io account.
1. Read AGENTS.md — it has the rules and the agent-driven login flow.
2. Install deps: python scripts/setup.py
3. Set up .env from .env.example (ask me for my Adobe OAuth Client ID and Secret).
4. Authenticate with the two-step flow: run `frameio-agent auth start --json`,
show me the sign-in URL, and when I paste the redirect URL back, run
`frameio-agent auth complete "<that url>"`.
5. Run `frameio-agent verify`.
6. Then: find my latest cut and summarize its review comments with timecodes.
Never print secrets. Prefer --json when parsing.
Every write command shows a confirmation summary — ask me before using --yes.
Quick start (manual, human at the terminal)
python scripts/setup.py # install deps
python -m frameio_agent.cli auth login # guided OAuth wizard (interactive)
python -m frameio_agent.cli verify
python -m frameio_agent.cli projects --json
python -m frameio_agent.cli latest --project <id> --json
python -m frameio_agent.cli comments <file_id> --json
What it does
Read (no confirmation needed):
auth login— guided Adobe IMS OAuth wizard with clipboard auto-detect (for humans at a terminal). Agents useauth start/auth completeinstead — non-interactive, documented inAGENTS.md.auth status/verify— confirms the connection without printing tokens.projects --json— lists accounts / workspaces / projects.latest --project <id>— newest-updated video assets, recency-first.search "<query>"— account-wide search. Add--nlpfor natural-language matching ("red car driving on highway"), or keep the default lexical engine for exact names.comments <file_id> --json— normalized review notes (timecode + timestamp_seconds + author + thread).brief --project <id>— one-paragraph project status.
Vision (give your agent eyes):
frames pull --project <id> --out ./frames— download one preview frame per clip + amanifest.jsonmapping each image back to itsfile_id. Read-only; writes only local files. Your multimodal agent then looks at the frames, judges them, and drives the next command —share createwith the selects, orcontact-sheet --from-manifest --excludewith the rejects. Works with any agent that can read an image.contact-sheet --project <id> --out sheet.png— thumbnail grid of a project or folder. Filter with--only/--excludefile_id lists, number tiles with--index, or build offline from aframes pullmanifest with--from-manifest.
Write (every one is confirmation-gated):
share create <file_id> [...] --name "..."— bundle assets into a Frame.io review share. Multi-asset;--reviewers a@x.com,b@y.comsends email invites (max 10);--expires,--password,--no-download. Default visibility is public-link;--restrictedrequires thesecure_sharingfeature on paid Frame.io plans (the CLI tells you plainly if yours lacks it).refs add <url-or-path> --folder <folder_id>— pull a YouTube/X/TikTok/Vimeo URL via yt-dlp, upload a local file, or point Frame.io at a direct URL it can fetch itself. One command, mode auto-detected.
Read-only by default. Mutations only fire after an explicit y/N confirmation (or --yes when the user has authorized that specific action).
Security
- Read-only by default; every mutation is opt-in and confirmation-gated. Share creation and reference uploads require y/N (or an explicit, user-authorized
--yes). No silent writes ever. Comment posting is not shipped;commentsis read-only. - Delete / rename / move / permission-change are NOT in scope. Those endpoints exist in Frame.io V4; the CLI just doesn't call them — and
AGENTS.mdinstructs agents not to add them. - Secrets stay local.
.envand the token cache are git-ignored; the CLI redacts token-like values from all output; share passwords are never echoed. - Bring your own credentials. Nothing is ever sent to the maintainers.
Which agents work with this?
Any agent that can run local shell commands — the model is entirely your choice:
- Claude Code / Cursor / OpenAI Codex CLI / Gemini CLI — paste the quick-start prompt above and go.
- OpenRouter-backed agents (Aider, OpenHands, Cline, custom harnesses — any model): same thing. For the vision workflows, pick a multimodal model.
- Agent-driven login: agents use the non-interactive
auth start --json→auth complete "<redirect-url>"pair; the interactiveauth loginis for humans at a terminal.
Optional: MCP
If your agent supports MCP, run frameio-agent mcp to expose the core read operations (auth status, projects, latest, comments) as MCP tools. The CLI is the spine and carries the full command surface — MCP is a thin, read-only wrapper.
Troubleshooting
| If you see | Do |
|---|---|
Missing FRAMEIO_CLIENT_ID |
Run frameio-agent auth login (or auth start if an agent is driving) |
Frame.io is not authenticated / session expired |
Re-run the login flow |
no pending login (or it expired) |
Run frameio-agent auth start again (15-min TTL) |
Could not resolve an account_id |
Set FRAMEIO_ACCOUNT_ID in .env (find it via projects --json) |
feature(s) not included in plan: secure_sharing |
Use the default --public share, or upgrade the Frame.io plan |
Warning: collection cap reached |
Re-run with a higher --max-files |
yt-dlp is not installed |
pip install "frameio-agent[youtube]" |
Pillow is required |
pip install "frameio-agent[images]" |
Roadmap
Open issues track what's next: PyPI/pipx packaging, HTTPS-loopback zero-paste auth, multi-frame extraction via ffmpeg. See Issues.
License
MIT. See LICENSE.
Credits
Built by VAXA Studio — we make tools for creative teams using coding agents. Developed with Claude Code (Claude, by Anthropic) as pair programmer — architecture, implementation, tests, and this README were co-authored across human/agent sessions.
Unofficial community tool. Not affiliated with, endorsed by, or supported by Adobe or Frame.io.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。