# Send Find My Location to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "findmy-location",
    "name": "Find My Location",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/poiley/findmy-location",
    "canonicalUrl": "https://clawhub.ai/poiley/findmy-location",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/findmy-location",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=findmy-location",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "findmy-location.py",
      "install.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/findmy-location"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/findmy-location",
    "downloadUrl": "https://openagent3.xyz/downloads/findmy-location",
    "agentUrl": "https://openagent3.xyz/skills/findmy-location/agent",
    "manifestUrl": "https://openagent3.xyz/skills/findmy-location/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/findmy-location/agent.md"
  }
}
```
## Documentation

### 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)

### 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"]
    }
  ]
}

FieldDescriptiontargetContact name to track (optional - defaults to first shared contact)known_locationsArray of places you want labeled with addressesmarkersLandmarks 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": "contact@email.com",
  "address": "Main St & 1st Ave",
  "city": "Anytown",
  "state": "WA",
  "status": "Now",
  "context": "out",
  "screenshot": "/tmp/findmy-12345.png",
  "needs_vision": false
}

FieldDescriptioncontexthome, work, out, or unknownneeds_visionIf true, use AI vision on screenshot to read street namesscreenshotPath 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

IssueSolutionClicks go to wrong windowInstall Hammerspoon (see prerequisites)"No person found"Ensure location sharing is enabled in Find MyAlways shows needs_vision: trueAdd markers for frequently visited placesPermission errorsGrant peekaboo Accessibility + Screen Recording access

### License

MIT
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: poiley
- Version: 1.1.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/findmy-location)
- [Send to Agent page](https://openagent3.xyz/skills/findmy-location/agent)
- [JSON manifest](https://openagent3.xyz/skills/findmy-location/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/findmy-location/agent.md)
- [Download page](https://openagent3.xyz/downloads/findmy-location)