# Send iCloud Find My 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": "icloud-findmy",
    "name": "iCloud Find My",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/liamnichols/icloud-findmy",
    "canonicalUrl": "https://clawhub.ai/liamnichols/icloud-findmy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/icloud-findmy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=icloud-findmy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "icloud-findmy",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T01:16:07.283Z",
      "expiresAt": "2026-05-09T01:16:07.283Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=icloud-findmy",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=icloud-findmy",
        "contentDisposition": "attachment; filename=\"icloud-findmy-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "icloud-findmy"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/icloud-findmy"
    },
    "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/icloud-findmy",
    "downloadUrl": "https://openagent3.xyz/downloads/icloud-findmy",
    "agentUrl": "https://openagent3.xyz/skills/icloud-findmy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/icloud-findmy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/icloud-findmy/agent.md"
  }
}
```
## Documentation

### iCloud Find My

Access Find My device locations and battery status via the iCloud CLI (pyicloud).

### Setup

Install pyicloud:

brew install pipx
pipx install pyicloud

Authenticate (one-time):

Ask the user for their Apple ID, then run:

icloud --username their.email@example.com --with-family --list

They'll need to enter their password and complete 2FA. The session will be saved and lasts 1-2 months.

Store Apple ID:

Add the Apple ID to your TOOLS.md or workspace config so you remember it for future queries:

## iCloud Find My
Apple ID: their.email@example.com

### List all devices

icloud --username APPLE_ID --with-family --list

Output format:

------------------------------
Name           - Liam's iPhone
Display Name   - iPhone 15 Pro
Location       - {'latitude': 52.248, 'longitude': 0.761, 'timeStamp': 1767810759054, ...}
Battery Level  - 0.72
Battery Status - NotCharging
Device Class   - iPhone
------------------------------

Parsing tips:

Devices are separated by ------------------------------
Location is a Python dict (use eval() or parse with regex)
Battery Level is 0.0-1.0 (multiply by 100 for percentage)
Battery Status: "Charging" or "NotCharging"
Location fields: latitude, longitude, timeStamp (milliseconds), horizontalAccuracy

### Get specific device

Find a specific device by grepping the output:

icloud --username APPLE_ID --with-family --list | grep -A 10 "iPhone"

### Parse location

Extract and format location data:

icloud --username APPLE_ID --with-family --list | \\
  grep -A 10 "Device Name" | \\
  grep "Location" | \\
  sed "s/Location.*- //"

Then parse the Python dict string with Python or extract coordinates with regex.

### Parse battery

icloud --username APPLE_ID --with-family --list | \\
  grep -A 10 "Device Name" | \\
  grep "Battery Level"

### Device Names

Device names come from iCloud and may include:

Fancy Unicode apostrophes (U+2019 ') instead of ASCII '
No apostrophes at all (e.g., "Lindas iPhone")

Use case-insensitive matching and normalize apostrophes if needed.

### Session Management

Sessions last 1-2 months
Stored in user's home directory
When expired, re-run the authentication step
PyiCloud validates automatically on each request

### Common Patterns

Check battery before going out:

# Get battery for specific device
icloud --username ID --with-family --list | \\
  grep -B 2 -A 5 "iPhone" | \\
  grep "Battery Level"

Get current location:

# Extract location dict and parse coordinates
icloud --username ID --with-family --list | \\
  grep -A 10 "iPhone" | \\
  grep "Location" | \\
  sed "s/.*- //" | \\
  python3 -c "import sys; loc = eval(sys.stdin.read()); print(f\\"{loc['latitude']}, {loc['longitude']}\\")"

Check if device is charging:

icloud --username ID --with-family --list | \\
  grep -A 10 "iPhone" | \\
  grep "Battery Status"

### Proactive Use Cases

Battery warnings: Check battery levels before calendar events (going out)
Location context: Answer "near me" queries by checking user's current location
Home/away detection: Check if user is at home based on coordinates
Low battery alerts: Warn if battery <30% and not charging

### Troubleshooting

Authentication errors:

Session expired - re-authenticate
Wrong Apple ID - check stored ID
2FA required - complete 2FA flow

No location available:

Device offline
Find My disabled
Location Services off

Device not found:

Check exact device name with --list
Names are case-sensitive
May have Unicode apostrophes

### Notes

Requires macOS (iCloud API quirks)
Family Sharing must be enabled to see family devices
Location updates every ~1-5 minutes when device is active
Battery readings may be cached (check timestamp)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: liamnichols
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T01:16:07.283Z
- Expires at: 2026-05-09T01:16:07.283Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/icloud-findmy)
- [Send to Agent page](https://openagent3.xyz/skills/icloud-findmy/agent)
- [JSON manifest](https://openagent3.xyz/skills/icloud-findmy/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/icloud-findmy/agent.md)
- [Download page](https://openagent3.xyz/downloads/icloud-findmy)