findmy

findmy is a skill for Claude Code, Codex from furkangonel/cowrangler. It costs 18 tokens per session (901 once invoked), scanned A, original, MIT.

A macOS skill for checking the locations of Apple devices and AirTags through Find My. Find My is Apple's app for locating devices and tagged belongings.

In plain words
What is it for?
Use it to check where an iPhone, iPad, Mac, AirPods, or AirTag is located, provided Find My is configured and the required screen-recording access is available.
Why use it?
It provides a documented way to inspect locations when Apple has no dedicated command-line interface for Find My.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to check where an iPhone, iPad, Mac, AirPods, or AirTag is located, provided Find My is configured and the required screen-recording access is available.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/furkangonel/cowrangler/findmy
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add furkangonel/cowrangler --skill findmy
Clone the repo
git clone --depth 1 https://github.com/furkangonel/cowrangler

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for findmy

README.md
[![agentmods](https://agentmods.dev/badge/skills/furkangonel/cowrangler/findmy/github.svg)](https://agentmods.dev/skills/furkangonel/cowrangler/findmy)
Your own site
<a href="https://agentmods.dev/skills/furkangonel/cowrangler/findmy"><img src="https://agentmods.dev/badge/skills/furkangonel/cowrangler/findmy/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for findmy

Your own site · 80×15
<a href="https://agentmods.dev/skills/furkangonel/cowrangler/findmy"><img src="https://agentmods.dev/badge/skills/furkangonel/cowrangler/findmy.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 901 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00018 $0.00901
Opus 5 $0.00009 $0.00451
Sonnet 5 $0.00004 $0.00180
Haiku 4.5 $0.00002 $0.00090

Measured 10d ago against content hash 53ca80ff753d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

findmy scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

bundled_skills/apple/findmy/SKILL.md · 111 lines

How it starts

The opening of the file, as written. The whole thing — 111 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Find My (Apple)

macOS'taki FindMy.app üzerinden Apple cihazlarını ve AirTag'leri takip et. Apple'ın FindMy için CLI'ı olmadığından AppleScript + ekran görüntüsü yöntemi kullanılır.

Ön Koşullar

  • macOS ve iCloud oturumu açık Find My uygulaması
  • Cihazlar/AirTag'ler Find My'da kayıtlı olmalı
  • Screen Recording izni: Sistem Ayarları → Gizlilik → Ekran Kaydı
  • Önerilen: peekaboo daha güvenilir UI otomasyonu için: brew install steipete/tap/peekaboo

Ne Zaman Kullan

  • "Telefon/çanta/anahtar nerede?" soruları
  • AirTag konum takibi
  • Cihaz konumlarını kontrol etme (iPhone, iPad, Mac, AirPods)

Yöntem 1: AppleScript + Ekran Görüntüsü (Temel)

# Find My'ı aç
osascript -e 'tell application "FindMy" to activate'
sleep 3

# Pencere ekran görüntüsü al
screencapture -w -o /tmp/findmy.png

Ardından computer_use ile görüntüyü analiz et:

computer_use(action="capture", mode="vision", app="FindMy")

Sekme Değiştir

# Cihazlar sekmesi
osascript -e 'tell application "System Events"
  tell process "FindMy"
    click button "Cihazlar" of toolbar 1 of window 1
  end tell
end tell'

# Eşyalar sekmesi (AirTag)
osascript -e 'tell application "System Events"
  tell process "FindMy"
    click button "Eşyalar" of toolbar 1 of window 1
  end tell
end tell'

Yöntem 2: Peekaboo UI Otomasyonu (Önerilen)

# Find My'ı aç
osascript -e 'tell application "FindMy" to activate'
sleep 3

# UI'ı yakala ve annote et
peekaboo see --app "FindMy" --annotate --path /tmp/findmy-ui.png

# Element ID ile tıkla
peekaboo click --on B3 --app "FindMy"

# Detay görünümünü yakala
peekaboo image --app "FindMy" --path /tmp/findmy-detail.png

Ardından computer_use ile analiz et:

computer_use(action="capture", mode="som", app="FindMy")

AirTag Konum İzleme İş Akışı

# 1. FindMy'ı Eşyalar sekmesine aç
osascript -e 'tell application "FindMy" to activate'
sleep 3

# 2. AirTag sayfası açık olduğu sürece güncellenir

# 3. Periyodik konum yakala
while true; do
    screencapture -w -o /tmp/findmy-$(date +%H%M%S).png
    sleep 300  # 5 dakikada bir
done

Read the full file on GitHub · 111 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 111 lines · 18 tokens per session scan A 53ca80ff753d

Subscribe to this mod's changes

findmy is a skill published in the GitHub repository furkangonel/cowrangler (2 stars, last pushed 3d ago), licensed MIT. It adds 18 tokens to every session and 901 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

findmypipe

Locate Apple devices (iPhone, iPad, Mac, AirPods) via iCloud Find My using the findmy-agent CLI. Use this skill when the user asks to find an Apple device, check iPhone/iPad/Mac/AirPods location, locate lost AirPods, "Where's my iPhone", "Dov'è il mio Mac", verify if a device is home vs away, or check if devices are…

corryl/FindMyPipe · 105 tokens

opentrons-integration

Official Opentrons Protocol API for OT-2 and Flex robots. Use when writing protocols specifically for Opentrons hardware with full access to Protocol API v2 features. Best for production Opentrons protocols, official API compatibility. For multi-vendor automation or broader equipment control use pylabrobot.

synthetic-sciences/openscience · 66 tokens

pylabrobot

Vendor-agnostic lab automation framework. Use when controlling multiple equipment types (Hamilton, Tecan, Opentrons, plate readers, pumps) or needing unified programming across different vendors. Best for complex workflows, multi-vendor setups, simulation. For Opentrons-only protocols with official API…

synthetic-sciences/openscience · 73 tokens

x-smart

SMART disk health monitoring tool. Check disk health, temperature, and attributes using smartctl. Dependency: This is an x-cmd module. Install x-cmd first (see x-cmd skill for installation options). see x-cmd skill for installation.

x-cmd/x-cmd · 56 tokens

copperhead

Change or verify a KiCad project through copperhead's gated pipeline. Use whenever a task touches .kicadsch or .kicadpcb files, a schematic, a PCB layout, a netlist, ERC/DRC, a BOM, or hardware design docs — instead of editing those files directly.

copperheadhq/copperhead · 69 tokens

c-bluetooth

Manage Bluetooth devices on macOS using the blucli (blu) CLI. List paired and available devices, connect to headphones/speakers/keyboards, and disconnect devices by name or MAC address.

daxaur/openpaw · 44 tokens