npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

findmy-cli

v0.3.2

Published

OpenClaw plugin for macOS Find My friend locations. Read-only and consent-bounded: it reads only the friends who have already opted in to share their location with this Mac's Apple ID, returns coarse location only, and cannot surface anyone who has not co

Readme

Find My

OpenClaw plugin for macOS Find My friend locations. It shells out to the findmy binary, which drives FindMy.app via screen capture and Apple's Vision OCR, then returns each person's name, coarse location, staleness, and distance. Read-only: it never mutates FindMy.app state.

macOS only. Requires Screen Recording permission granted to the host process.

Privacy & consent

Location is sensitive, so the boundaries here are deliberate:

  • Opt-in only. This plugin can read only the people who have already chosen to share their location with this Mac's Apple ID in Apple's Find My. Sharing is a mutual relationship that the other person controls and can revoke at any time. There is no way for this plugin to see anyone who has not opted in, and it does not bypass, weaken, or work around any of Apple's access controls.
  • Coarse data only. It returns the same city/state, staleness, and distance that FindMy.app already shows the signed-in user — no precise coordinates, no location history, no background tracking.
  • On-device. It initiates no network traffic. Nothing leaves your Mac.
  • Authorized use. It is meant for the owner of this Mac to locate friends and family who are knowingly sharing with them — coordinating a pickup, checking an ETA, running an arrival routine. It is not a surveillance tool. Do not use it to monitor or track anyone without their knowledge and consent.

Run this on a Mac you control. Avoid wiring it into shared or unattended agent setups where someone other than the account owner could query a friend's location.

Install

  1. Install the plugin from ClawHub.

  2. Install the CLI it depends on:

    brew install omarshahine/tap/findmy-cli
  3. Grant Screen Recording to the host process running this plugin (System Settings → Privacy & Security → Screen Recording). Without it, FindMy.app captures come back blank.

Tools

| Tool | Description | |------|-------------| | findmy_person | Locate one person by name (name: "Omar"). Use name: "Me" for this Mac's owner. | | findmy_people | Locate everyone in the FindMy People sidebar. |

Both are read-only and consent-bounded — they can only return people who are already sharing with this Mac's Apple ID (see Privacy & consent). The lookup itself answers a question the account owner asked. The approval gate belongs on whatever action you chain after a location result (booking, messaging, triggering a routine): state the location you used and get explicit confirmation before acting on it.

Output shape

[
  {
    "name": "Omar Shahine",
    "location": "Redmond, WA",
    "staleness": "Paused",
    "distance": "7 mi"
  }
]
  • name — display name from the FindMy sidebar
  • location — city, state (or device label when sharing from a device)
  • staleness"Now", "X min. ago", "X hr. ago", "Paused", or "" (live)
  • distance — distance from this Mac if FindMy shows it

Configuration

| Key | Default | Description | |-----|---------|-------------| | cliPath | findmy | Path or command name for the findmy binary (PATH lookup by default) |

Caveats

  • staleness: "Paused" means the friend paused sharing. The location is the last known position, possibly hours or days old. Lead with this when reporting.
  • Stale timestamps ("7 hr. ago") mean the device has not checked in recently (phone off, low-power mode, or no signal).
  • Focus steal: each call briefly raises FindMy.app to the foreground.
  • Back-to-back races: two calls within ~5 seconds can fail. Space them out.

How it works (scanner note)

This plugin reads friend locations by raising FindMy.app to the foreground, screenshotting its window, running Apple Vision OCR on the image, and parsing the text. The behavior may look unusual to a static scanner (screen capture, OCR, UI scraping), but it is the only path to friend location data since Apple exposes no public API for it. The plugin does not click, type into, or mutate FindMy.app, and it initiates no network traffic. All data stays on-device.

License

MIT (c) Omar Shahine