Find My Location
/install findmy-location
Find My Location
Track shared contacts via Apple Find My with street-corner accuracy.
Requirements
- macOS 13+ with Find My app
- Python 3.9+
- iCloud account signed in on your Mac (for Find My access)
- Location sharing enabled from the contact you want to track
- peekaboo - screen reading CLI (GitHub)
- Hammerspoon (optional) - for reliable UI clicking (hammerspoon.org)
Prerequisites
1. iCloud & Find My Setup
Your Mac must be signed into an iCloud account with Find My enabled:
- System Settings → Apple ID → iCloud → Find My Mac (enabled)
- The person you want to track must share their location with this iCloud account via Find My
2. Install peekaboo
brew install steipete/tap/peekaboo
Grant Accessibility and Screen Recording permissions when prompted (System Settings → Privacy & Security).
3. Install Hammerspoon (optional but recommended)
Hammerspoon provides reliable clicking that works across all apps. Without it, clicks may occasionally go to the wrong window.
brew install hammerspoon
open -a Hammerspoon
Add to ~/.hammerspoon/init.lua:
local server = hs.httpserver.new(false, false)
server:setPort(9090)
server:setCallback(function(method, path, headers, body)
local data = body and hs.json.decode(body) or {}
if path == "/click" then
hs.eventtap.leftClick({x=data.x, y=data.y})
return hs.json.encode({status="clicked", x=data.x, y=data.y}), 200, {}
end
return hs.json.encode({error="not found"}), 404, {}
end)
server:start()
Reload config (Hammerspoon menu → Reload Config), then create ~/.local/bin/hsclick:
#!/bin/bash
curl -s -X POST localhost:9090/click -d "{\"x\":$2,\"y\":$3}"
chmod +x ~/.local/bin/hsclick
Installation
git clone https://github.com/poiley/findmy-location.git
cd findmy-location
./install.sh
Or via ClawdHub:
clawdhub install findmy-location
Configuration
Create ~/.config/findmy-location/config.json:
{
"target": "John",
"known_locations": [
{
"name": "home",
"address": "123 Main St, City, ST",
"markers": ["landmark near home"]
},
{
"name": "work",
"address": "456 Office Blvd, City, ST",
"markers": ["landmark near work"]
}
]
}
| Field | Description |
|---|---|
target |
Contact name to track (optional - defaults to first shared contact) |
known_locations |
Array of places you want labeled with addresses |
markers |
Landmarks visible on the Find My map when at that location |
Usage
findmy-location # Human-readable output
findmy-location --json # JSON output
Example Output
123 Main St, City, ST (home) - Now
{
"person": "[email protected]",
"address": "Main St & 1st Ave",
"city": "Anytown",
"state": "WA",
"status": "Now",
"context": "out",
"screenshot": "/tmp/findmy-12345.png",
"needs_vision": false
}
| Field | Description |
|---|---|
context |
home, work, out, or unknown |
needs_vision |
If true, use AI vision on screenshot to read street names |
screenshot |
Path to captured map image |
How It Works
- Opens Find My app and selects target contact
- Captures map and reads accessibility data
- Matches visible landmarks against configured known locations
- Returns address and context, or flags for vision analysis
Troubleshooting
| Issue | Solution |
|---|---|
| Clicks go to wrong window | Install Hammerspoon (see prerequisites) |
| "No person found" | Ensure location sharing is enabled in Find My |
Always shows needs_vision: true |
Add markers for frequently visited places |
| Permission errors | Grant peekaboo Accessibility + Screen Recording access |
License
MIT
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install findmy-location - 安装完成后,直接呼叫该 Skill 的名称或使用
/findmy-location触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Find My Location 是什么?
Track a shared contact's location via Apple Find My with street-level accuracy. Returns address, city, and context (home/work/out) by reading map landmarks. Supports configurable known locations and vision fallback for unknown places. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2948 次。
如何安装 Find My Location?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install findmy-location」即可一键安装,无需额外配置。
Find My Location 是免费的吗?
是的,Find My Location 完全免费(开源免费),可自由下载、安装和使用。
Find My Location 支持哪些平台?
Find My Location 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Find My Location?
由 Benjamin Poile(@poiley)开发并维护,当前版本 v1.1.1。