← 返回 Skills 市场
850media

Frameo Photo Frame Control

作者 Michael · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
279
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install frameo
功能描述
Control Frameo digital photo frames via cloud API for frame info or ADB for full control including photo upload, brightness, screen, and navigation.
使用说明 (SKILL.md)

Frameo Digital Photo Frame Control

Control Frameo photo frames via cloud API or ADB.

Methods

Method 1: Cloud API (Limited)

  • ✅ List paired frames
  • ✅ Get account info
  • ❌ Send photos (requires FCM/Firebase)

Method 2: ADB (Full Control)

  • ✅ Push photos directly
  • ✅ Control brightness
  • ✅ Toggle screen
  • ✅ Navigate photos

Quick Start

Cloud API Setup

  1. Install: pip3 install requests pillow
  2. Get Bearer token from Frameo app traffic (Proxyman/Charles)
  3. Save token: echo '{"access_token": "YOUR_TOKEN"}' > ~/.frameo_token
  4. Run: python3 scripts/frameo_client.py --frames

ADB Setup (Recommended)

  1. Enable Developer Options on Frameo (Settings → About → tap Build 7x)
  2. Enable USB Debugging
  3. Connect USB-C data cable to computer
  4. Run: adb tcpip 5555 to enable wireless
  5. Disconnect USB, connect wireless: adb connect \x3Cframe-ip>:5555

Usage Examples

List Frames (Cloud API)

python3 scripts/frameo_client.py --frames

Send Photo (ADB)

adb push photo.jpg /sdcard/DCIM/
# Or to Frameo's photo directory:
adb push photo.jpg /sdcard/Frameo/

Control Frame (ADB)

# Screen on/off
adb shell input keyevent 26

# Set brightness (0-255)
adb shell settings put system screen_brightness 128

# Next photo (swipe right)
adb shell input swipe 800 500 200 500

# Previous photo (swipe left)  
adb shell input swipe 200 500 800 500

Remote Access via SSH Relay

If frame is on local network and agent is remote:

ssh user@local-mac "adb push /tmp/photo.jpg /sdcard/DCIM/"

References

  • references/api-endpoints.md - Frameo cloud API endpoints
  • references/adb-commands.md - Common ADB commands for Frameo

Troubleshooting

Token Expired (401)

Frameo tokens expire in ~5 minutes. Get fresh token from Proxyman.

ADB Connection Refused

Wireless ADB not enabled. Need USB cable first to run adb tcpip 5555.

USB Cable Not Detected

Ensure using a data cable, not charge-only. Data cables are usually thicker.

安全使用建议
This skill mostly does what it says (cloud listing via Frameo API and local control via ADB), but treat it cautiously because: (1) the package metadata doesn't declare the environment variables the included script expects — you will need to provide credentials (FRAMEO_EMAIL / FRAMEO_PASSWORD or a token) which are sensitive; (2) the instructions ask you to capture bearer tokens from app traffic (man-in-the-middle proxy) and to enable wireless ADB (adb tcpip 5555), both of which carry security risks — wireless ADB can expose the frame to your LAN or the internet if misconfigured; (3) the skill will store tokens in ~/.frameo_token. Before installing: verify the skill's source/maintainer, prefer using USB ADB only (avoid enabling wireless ADB unless you understand the network exposure), avoid pasting secrets into third-party code, consider running the tool on an isolated machine, and review/modify the script so it only uses explicit, declared environment variables and handles credentials securely. If you need to proceed, request the author to update registry metadata to list required env vars and to document security implications explicitly.
功能分析
Type: OpenClaw Skill Name: frameo Version: 1.0.0 The Frameo skill bundle provides a reverse-engineered Python client (`scripts/frameo_client.py`) and ADB command references for controlling digital photo frames. It handles authentication via Frameo's official OAuth2 endpoints and stores tokens locally in `~/.frameo_token`. The code and instructions in `SKILL.md` are consistent with the stated purpose of managing frames and do not exhibit signs of data exfiltration, malicious execution, or unauthorized access.
能力评估
Purpose & Capability
Name/description match the included code and docs: the Python client targets Frameo's cloud API (read-only) and the ADB commands provide full local control (photo upload, brightness, navigation). Functionality requested (account token or ADB access) is coherent with the stated purpose.
Instruction Scope
SKILL.md instructs sensitive operations: capturing bearer tokens from mobile app traffic with a proxy (Proxyman/Charles), saving tokens to ~/.frameo_token, enabling wireless ADB (adb tcpip 5555) and using SSH relays to push files remotely. While these actions enable the described features, they broaden scope to network interception and exposing devices to remote connections — both have meaningful security implications and should be explicit and justified.
Install Mechanism
No install spec (instruction-only) and included code requires only standard Python libraries (requests). Quick-start suggests pip installing requests and pillow; pillow is not used by the provided script. Lack of an install spec reduces disk-write risk, but the skill will write ~/.frameo_token when logging in.
Credentials
Registry metadata lists no required env vars, but the script reads several environment variables (FRAMEO_EMAIL, FRAMEO_PASSWORD, FRAMEO_DEVICE_ID, FRAMEO_PEER_ID, CLIENT_USER_ID, FCM_TOKEN). The skill can store credentials to ~/.frameo_token. The undeclared but used credentials (especially FRAMEO_PASSWORD and FCM token) are sensitive; the metadata should declare them and justify each.
Persistence & Privilege
always:false and no system-wide configuration changes. The script writes its own token cache (~/.frameo_token) which is normal for a client. It does not request elevated system privileges or modify other skills' configs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install frameo
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /frameo 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release - Cloud API + ADB control for Frameo digital photo frames
元数据
Slug frameo
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Frameo Photo Frame Control 是什么?

Control Frameo digital photo frames via cloud API for frame info or ADB for full control including photo upload, brightness, screen, and navigation. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 279 次。

如何安装 Frameo Photo Frame Control?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install frameo」即可一键安装,无需额外配置。

Frameo Photo Frame Control 是免费的吗?

是的,Frameo Photo Frame Control 完全免费(开源免费),可自由下载、安装和使用。

Frameo Photo Frame Control 支持哪些平台?

Frameo Photo Frame Control 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Frameo Photo Frame Control?

由 Michael(@850media)开发并维护,当前版本 v1.0.0。

💬 留言讨论