技能详情(站内镜像,无评论)
作者:Logan Pritchett @loganprit
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.2
统计:⭐ 2 · 657 · 0 current installs · 0 all-time installs
⭐ 2
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:apple-find-my-local
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill's scripts and instructions appear to do what they claim (local UI automation of the macOS Find My app), but there are metadata inconsistencies and important privacy/permission tradeoffs you should understand before installing.
目的
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.
说明范围
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.
安装机制
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.
证书
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.
持久
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.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Find My」。简介:Control Apple Find My app via Peekaboo to locate people, devices, and items (Ai…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/loganprit/apple-find-my-local/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: find-my
version: 1.0.1
description: 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 and friends, play sound on lost items, or check device locations. Native app control - no third-party APIs or credential sharing required.
metadata:
os: [darwin]
requires:
bins: [peekaboo, jq]
env:
PEEKABOO_BRIDGE_SOCKET: "Path to OpenClaw.app Peekaboo bridge socket (default: ~/Library/Application Support/OpenClaw/bridge.sock)"
env_optional:
FM_OUTPUT_DIR: "Directory for screenshot output (default: /tmp)"
contains_scripts: true
privacy:
screenshots: true
location_data: true
ui_automation: true
---
# 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 <tab>` | Switch tab: `people`, `devices`, `items` |
| `fm-list.sh [tab]` | Screenshot + show sidebar positions |
| `fm-select-item.sh <pos> [tab]` | Select item by position (1, 2, 3...) |
| `fm-locate.sh <pos> [tab]` | Select item and screenshot location |
| `fm-info.sh [path]` | Open info panel, screenshot |
| `fm-play-sound.sh <pos>` | Attempt to play sound on item |
| `fm-click.sh <x> <y>` | Click at relative window coords |
## Workflow Examples
### List available items
```bash
./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)
```bash
./scripts/fm-locate.sh 2 items
# Shows location on map, outputs screenshot path
```
### Play sound on keys
```bash
./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
```bash
./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:
```bash
# 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