← 返回 Skills 市场
loganprit

Find My

作者 Logan Pritchett · GitHub ↗ · v1.0.2
cross-platform ⚠ suspicious
890
总下载
2
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install apple-find-my-local
功能描述
Control Apple Find My app via Peekaboo to locate people, devices, and items (AirTags). Use when asked to find keys, wallet, AirTags, locate family members an...
使用说明 (SKILL.md)

Find My

Control the native Find My app via Peekaboo. No sketchy APIs or credential sharing.

Run scripts from: cd {skillDir}

Requirements

Requirement Details
OS macOS only
Apps Find My.app (must be open), OpenClaw.app (provides Peekaboo bridge)
Permissions OpenClaw.app needs Screen Recording + Accessibility permissions
Peekaboo CLI must be installed and configured

Privacy & Security

What this skill accesses:

  • Location data for people, devices, and items in your Find My app
  • Screenshots of the Find My window (stored locally in /tmp/)

What this skill does NOT do:

  • No network requests to third-party services
  • No credential storage or Apple ID access
  • No data exfiltration — all operations are local UI automation

Data scope: The skill can see/interact with anything visible in your Find My app, including:

  • Shared locations of family/friends
  • Device locations (yours and Family Sharing members)
  • AirTag/item locations

User awareness: This skill uses mouse clicks and UI automation. You will see the actions happening on screen.

Known Limitations

  1. --app "Find My" hangs in Peekaboo - use --window-id instead
  2. Sidebar items not accessible - Find My doesn't expose item names via accessibility APIs
  3. Position-based selection - Select items by position (1st, 2nd, 3rd...) not by name
  4. macOS only - Requires Peekaboo + OpenClaw.app bridge
  5. Exclusive control - User cannot interact with the Mac while skill is running (mouse/clicks conflict)

Quick Reference

Script Purpose
fm-window.sh Get window ID and bounds (JSON)
fm-screenshot.sh [path] Capture Find My window
fm-tab.sh \x3Ctab> Switch tab: people, devices, items
fm-list.sh [tab] Screenshot + show sidebar positions
fm-select-item.sh \x3Cpos> [tab] Select item by position (1, 2, 3...)
fm-locate.sh \x3Cpos> [tab] Select item and screenshot location
fm-info.sh [path] Open info panel, screenshot
fm-play-sound.sh \x3Cpos> Attempt to play sound on item
fm-click.sh \x3Cx> \x3Cy> Click at relative window coords

Workflow Examples

List available items

./scripts/fm-list.sh items
# Screenshots the Items tab - view image to see your AirTags/items

Find your keys (if keys are 2nd item in list)

./scripts/fm-locate.sh 2 items
# Shows location on map, outputs screenshot path

Play sound on keys

./scripts/fm-play-sound.sh 2
# Selects 2nd item, attempts to click Play Sound
# May require manual click if button not found

Check on a family member

./scripts/fm-list.sh people
# View screenshot to see who's listed

./scripts/fm-locate.sh 1 people
# Shows first person's location

UI Layout Reference

Tab Bar (y ≈ 68 from window top)

Tab X Position
People ~63
Devices ~154
Items ~243

Sidebar Items (x ≈ 150)

Position Y Coordinate
1st item ~120
2nd item ~174
3rd item ~228
4th item ~282
(spacing) +54px each

Manual Coordinate Clicks

When automation fails, calculate coordinates manually:

# Get window position
./scripts/fm-window.sh
# Output: {"x": 824, "y": 62, "width": 1024, "height": 768, "window_id": 2248}

# Click at relative position within window
./scripts/fm-click.sh 150 174   # 2nd sidebar item
./scripts/fm-click.sh 243 68    # Items tab

Info Panel Actions

After selecting an item, click the ⓘ button on the map popup to open the info panel:

Action Description
Play Sound Make AirTag chirp (items only)
Directions Open Maps with directions
Share Share location with others
Lost Mode Enable contact info sharing
Notifications Configure alerts

Troubleshooting

"Find My window not found"

  • Ensure Find My.app is open
  • Check OpenClaw.app is running (provides Peekaboo bridge)

Clicks not registering

  • Window may have moved - re-run fm-window.sh for fresh coordinates
  • Ensure Find My is frontmost before clicking

Can't find Play Sound button

  • Open info panel manually (click ⓘ on map popup)
  • Then re-run play-sound script

Future Improvements

When Peekaboo fixes --app "Find My":

  • Direct element targeting without coordinate calculation
  • Reliable accessibility tree for sidebar items
  • Simpler automation flows
安全使用建议
This skill appears to be a local UI-automation tool for macOS Find My and its scripts are readable shell code, but: - Verify the source: owner/homepage are unknown; confirm you trust the skill author before installing. - Reconcile metadata: SKILL.md requires peekaboo, jq, and PEEKABOO_BRIDGE_SOCKET, but the platform metadata lists none — ensure those requirements are present and correct. - Permission tradeoff: to work you must give OpenClaw.app Screen Recording and Accessibility access. Granting those permissions gives that app broad ability to capture your screen and control UI—only proceed if you trust OpenClaw. - Sensitive data: the skill takes screenshots of Find My and can view location data for people/devices; treat outputs (files in /tmp or configured FM_OUTPUT_DIR) as sensitive and clean them up if needed. - Runtime behavior: automation will move your mouse / block interaction while running; avoid running on remote/cloud machines or shared sessions. If you decide to install, inspect the scripts (they are plain Bash) and test in a controlled environment first. If the metadata inconsistencies worry you, ask the publisher to update platform metadata to explicitly declare required binaries and env variables before proceeding.
功能分析
Type: OpenClaw Skill Name: apple-find-my-local Version: 1.0.2 The OpenClaw AgentSkills bundle is designed for local UI automation of the Apple Find My app using the `peekaboo` tool. Both the code and documentation explicitly state that it performs no network requests to third-party services, no credential storage, and no data exfiltration. All operations are local, primarily involving UI interaction and local screenshot capture (defaulting to `/tmp`). Input validation for numerical arguments in scripts like `fm-click.sh` and `fm-select-item.sh` helps prevent shell injection. The `SKILL.md` and `README.md` are transparent about the skill's capabilities and limitations, including the use of UI automation and screenshot capture, and contain no evidence of prompt injection attempts to subvert the agent's behavior. The skill's functionality aligns with its stated purpose without any malicious indicators.
能力评估
Purpose & Capability
The scripts implement local UI automation of Find My using the peekaboo CLI and jq, which matches the stated purpose. However the registry metadata provided to the platform lists no required binaries/env, while SKILL.md declares required binaries (peekaboo, jq), an environment variable (PEEKABOO_BRIDGE_SOCKET), and macOS-only metadata — this mismatch is inconsistent and should be reconciled.
Instruction Scope
Runtime instructions are limited to controlling Find My via Peekaboo (clicks, screenshots, switching tabs) and do not reference unrelated system files or network endpoints. They do capture screenshots of the Find My window and rely on UI automation (mouse clicks, focusing the app), which will be visible and block user input while running.
Install Mechanism
There is no remote install or download step; the skill ships scripts that run locally and expect peekaboo and jq to be installed. This is a low-risk install mechanism, though scripts included in the skill will be written to disk when installed.
Credentials
The skill does not request unrelated credentials and only uses PEEKABOO_BRIDGE_SOCKET (plus optional FM_OUTPUT_DIR) per SKILL.md. It DOES, however, access highly sensitive data (location of people/devices and screenshots) by design. Additionally, the registry metadata did not declare these required env/binaries — an incoherence that should be fixed.
Persistence & Privilege
The skill does not request 'always: true' and does not modify other skills. However it requires OpenClaw.app (Peekaboo bridge) to have Screen Recording and Accessibility permissions — granting those permissions to OpenClaw.app gives that app broad screen/input access on your machine, which is a significant privilege to accept even if the skill itself stays local.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install apple-find-my-local
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /apple-find-my-local 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
Added metadata, security fixes, and privacy docs
v1.0.1
- Added detailed metadata for OS, required binaries, environment variables, and privacy scope. - New Requirements section clarifies needed apps, permissions, and CLI configuration. - Privacy & Security section explains what data is accessed, stored, and how user privacy is protected. - No functionality changes; documentation and security transparency improvements only.
v1.0.0
- Initial release of "apple-find-my-local": control Apple's native Find My app on macOS via Peekaboo for locating people, devices, and AirTags. - No third-party APIs or credential sharing required—automation is performed entirely locally. - Supports listing available items, selecting by list position (not name), locating, playing sound, and capturing window screenshots. - Includes scripts for major Find My actions and manual coordinate clicking for unsupported interactions. - Notable limitations: works on macOS only, items must be selected by position due to limited accessibility, and user interaction with the Mac is blocked while active. - Troubleshooting and UI coordinate references provided for reliable operation.
元数据
Slug apple-find-my-local
版本 1.0.2
许可证
累计安装 0
当前安装数 0
历史版本数 3
常见问题

Find My 是什么?

Control Apple Find My app via Peekaboo to locate people, devices, and items (AirTags). Use when asked to find keys, wallet, AirTags, locate family members an... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 890 次。

如何安装 Find My?

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

Find My 是免费的吗?

是的,Find My 完全免费(开源免费),可自由下载、安装和使用。

Find My 支持哪些平台?

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

谁开发了 Find My?

由 Logan Pritchett(@loganprit)开发并维护,当前版本 v1.0.2。

💬 留言讨论