{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/findmy-location",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=findmy-location",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "findmy-location.py",
      "install.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/findmy-location",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Find My Location",
        "body": "Track shared contacts via Apple Find My with street-corner accuracy."
      },
      {
        "title": "Requirements",
        "body": "macOS 13+ with Find My app\nPython 3.9+\niCloud account signed in on your Mac (for Find My access)\nLocation sharing enabled from the contact you want to track\npeekaboo - screen reading CLI (GitHub)\nHammerspoon (optional) - for reliable UI clicking (hammerspoon.org)"
      },
      {
        "title": "1. iCloud & Find My Setup",
        "body": "Your Mac must be signed into an iCloud account with Find My enabled:\n\nSystem Settings → Apple ID → iCloud → Find My Mac (enabled)\nThe person you want to track must share their location with this iCloud account via Find My"
      },
      {
        "title": "2. Install peekaboo",
        "body": "brew install steipete/tap/peekaboo\n\nGrant Accessibility and Screen Recording permissions when prompted (System Settings → Privacy & Security)."
      },
      {
        "title": "3. Install Hammerspoon (optional but recommended)",
        "body": "Hammerspoon provides reliable clicking that works across all apps. Without it, clicks may occasionally go to the wrong window.\n\nbrew install hammerspoon\nopen -a Hammerspoon\n\nAdd to ~/.hammerspoon/init.lua:\n\nlocal server = hs.httpserver.new(false, false)\nserver:setPort(9090)\nserver:setCallback(function(method, path, headers, body)\n    local data = body and hs.json.decode(body) or {}\n    if path == \"/click\" then\n        hs.eventtap.leftClick({x=data.x, y=data.y})\n        return hs.json.encode({status=\"clicked\", x=data.x, y=data.y}), 200, {}\n    end\n    return hs.json.encode({error=\"not found\"}), 404, {}\nend)\nserver:start()\n\nReload config (Hammerspoon menu → Reload Config), then create ~/.local/bin/hsclick:\n\n#!/bin/bash\ncurl -s -X POST localhost:9090/click -d \"{\\\"x\\\":$2,\\\"y\\\":$3}\"\nchmod +x ~/.local/bin/hsclick"
      },
      {
        "title": "Installation",
        "body": "git clone https://github.com/poiley/findmy-location.git\ncd findmy-location\n./install.sh\n\nOr via ClawdHub:\n\nclawdhub install findmy-location"
      },
      {
        "title": "Configuration",
        "body": "Create ~/.config/findmy-location/config.json:\n\n{\n  \"target\": \"John\",\n  \"known_locations\": [\n    {\n      \"name\": \"home\",\n      \"address\": \"123 Main St, City, ST\",\n      \"markers\": [\"landmark near home\"]\n    },\n    {\n      \"name\": \"work\",\n      \"address\": \"456 Office Blvd, City, ST\",\n      \"markers\": [\"landmark near work\"]\n    }\n  ]\n}\n\nFieldDescriptiontargetContact 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"
      },
      {
        "title": "Usage",
        "body": "findmy-location          # Human-readable output\nfindmy-location --json   # JSON output"
      },
      {
        "title": "Example Output",
        "body": "123 Main St, City, ST (home) - Now\n\n{\n  \"person\": \"contact@email.com\",\n  \"address\": \"Main St & 1st Ave\",\n  \"city\": \"Anytown\",\n  \"state\": \"WA\",\n  \"status\": \"Now\",\n  \"context\": \"out\",\n  \"screenshot\": \"/tmp/findmy-12345.png\",\n  \"needs_vision\": false\n}\n\nFieldDescriptioncontexthome, work, out, or unknownneeds_visionIf true, use AI vision on screenshot to read street namesscreenshotPath to captured map image"
      },
      {
        "title": "How It Works",
        "body": "Opens Find My app and selects target contact\nCaptures map and reads accessibility data\nMatches visible landmarks against configured known locations\nReturns address and context, or flags for vision analysis"
      },
      {
        "title": "Troubleshooting",
        "body": "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"
      },
      {
        "title": "License",
        "body": "MIT"
      }
    ],
    "body": "Find My Location\n\nTrack shared contacts via Apple Find My with street-corner accuracy.\n\nRequirements\nmacOS 13+ with Find My app\nPython 3.9+\niCloud account signed in on your Mac (for Find My access)\nLocation sharing enabled from the contact you want to track\npeekaboo - screen reading CLI (GitHub)\nHammerspoon (optional) - for reliable UI clicking (hammerspoon.org)\nPrerequisites\n1. iCloud & Find My Setup\n\nYour Mac must be signed into an iCloud account with Find My enabled:\n\nSystem Settings → Apple ID → iCloud → Find My Mac (enabled)\nThe person you want to track must share their location with this iCloud account via Find My\n2. Install peekaboo\nbrew install steipete/tap/peekaboo\n\n\nGrant Accessibility and Screen Recording permissions when prompted (System Settings → Privacy & Security).\n\n3. Install Hammerspoon (optional but recommended)\n\nHammerspoon provides reliable clicking that works across all apps. Without it, clicks may occasionally go to the wrong window.\n\nbrew install hammerspoon\nopen -a Hammerspoon\n\n\nAdd to ~/.hammerspoon/init.lua:\n\nlocal server = hs.httpserver.new(false, false)\nserver:setPort(9090)\nserver:setCallback(function(method, path, headers, body)\n    local data = body and hs.json.decode(body) or {}\n    if path == \"/click\" then\n        hs.eventtap.leftClick({x=data.x, y=data.y})\n        return hs.json.encode({status=\"clicked\", x=data.x, y=data.y}), 200, {}\n    end\n    return hs.json.encode({error=\"not found\"}), 404, {}\nend)\nserver:start()\n\n\nReload config (Hammerspoon menu → Reload Config), then create ~/.local/bin/hsclick:\n\n#!/bin/bash\ncurl -s -X POST localhost:9090/click -d \"{\\\"x\\\":$2,\\\"y\\\":$3}\"\nchmod +x ~/.local/bin/hsclick\n\nInstallation\ngit clone https://github.com/poiley/findmy-location.git\ncd findmy-location\n./install.sh\n\n\nOr via ClawdHub:\n\nclawdhub install findmy-location\n\nConfiguration\n\nCreate ~/.config/findmy-location/config.json:\n\n{\n  \"target\": \"John\",\n  \"known_locations\": [\n    {\n      \"name\": \"home\",\n      \"address\": \"123 Main St, City, ST\",\n      \"markers\": [\"landmark near home\"]\n    },\n    {\n      \"name\": \"work\",\n      \"address\": \"456 Office Blvd, City, ST\",\n      \"markers\": [\"landmark near work\"]\n    }\n  ]\n}\n\nField\tDescription\ntarget\tContact name to track (optional - defaults to first shared contact)\nknown_locations\tArray of places you want labeled with addresses\nmarkers\tLandmarks visible on the Find My map when at that location\nUsage\nfindmy-location          # Human-readable output\nfindmy-location --json   # JSON output\n\nExample Output\n123 Main St, City, ST (home) - Now\n\n{\n  \"person\": \"contact@email.com\",\n  \"address\": \"Main St & 1st Ave\",\n  \"city\": \"Anytown\",\n  \"state\": \"WA\",\n  \"status\": \"Now\",\n  \"context\": \"out\",\n  \"screenshot\": \"/tmp/findmy-12345.png\",\n  \"needs_vision\": false\n}\n\nField\tDescription\ncontext\thome, work, out, or unknown\nneeds_vision\tIf true, use AI vision on screenshot to read street names\nscreenshot\tPath to captured map image\nHow It Works\nOpens Find My app and selects target contact\nCaptures map and reads accessibility data\nMatches visible landmarks against configured known locations\nReturns address and context, or flags for vision analysis\nTroubleshooting\nIssue\tSolution\nClicks go to wrong window\tInstall Hammerspoon (see prerequisites)\n\"No person found\"\tEnsure location sharing is enabled in Find My\nAlways shows needs_vision: true\tAdd markers for frequently visited places\nPermission errors\tGrant peekaboo Accessibility + Screen Recording access\nLicense\n\nMIT"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/poiley/findmy-location",
    "publisherUrl": "https://clawhub.ai/poiley/findmy-location",
    "owner": "poiley",
    "version": "1.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}