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

github-things-sync

v1.2.0

Published

Sync GitHub PRs and Issues to Things 3 on macOS

Readme

github-things-sync

Automatically sync your GitHub PRs and Issues to Things 3 on macOS.

Stop manually creating todos for your GitHub work. github-things-sync watches your assigned issues, PR reviews, and created items—automatically creating and completing tasks in Things 3.

Quick Start

npm install -g github-things-sync
github-things-sync init

Follow the prompts, then:

github-things-sync start

Features

  • 🔄 Auto-sync — PRs and issues appear in Things automatically
  • Completion tracking — Close an issue, task completes in Things
  • 📋 Smart filtering — Choose what to sync (reviews, created, assigned)
  • 🎯 Repository scope — Select specific repos or orgs to sync
  • 🚀 Background daemon — Runs silently, syncs every 5 minutes
  • 🍎 macOS native — Uses LaunchAgent for autostart

What Gets Synced

| GitHub | → | Things | |--------|---|--------| | PR review requested | → | Todo in "GitHub" project | | Issue assigned to you | → | Todo with issue link | | PR you created | → | Todo with PR link | | Issue you created | → | Todo with issue link | | Closed/merged item | → | Task marked complete |

Prerequisites

Installation

Via npm (recommended)

npm install -g github-things-sync
github-things-sync init

Via npx (no install)

npx github-things-sync init
git clone https://github.com/yungweng/github-things-sync.git
cd github-things-sync
pnpm install && pnpm build
pnpm link --global

Commands

| Command | Description | |---------|-------------| | init | Interactive setup wizard | | start | Start background sync daemon | | stop | Stop the daemon | | status | Show daemon status and task mappings | | sync | Run a single sync (no daemon) | | config | View or update settings | | config --verify | Verify your tokens work |

How It Works

┌─────────────┐     Poll      ┌──────────────┐    AppleScript    ┌──────────┐
│   GitHub    │ ◄──────────── │    Daemon    │ ─────────────────► │ Things 3 │
│   API       │               │ (background) │    URL Scheme      │   App    │
└─────────────┘               └──────────────┘                    └──────────┘
                                     │
                                     ▼
                              ~/.github-things-sync/
                              ├── config.json
                              ├── state.json
                              └── daemon.log

The daemon polls GitHub every 5 minutes (configurable) for:

  • PRs where you're requested as reviewer
  • PRs you created
  • Issues assigned to you
  • Issues you created

When items are found, it creates tasks in Things 3 via AppleScript. When items close/merge on GitHub, the corresponding tasks are completed via URL Scheme.

Configuration

After running init, your config is stored at ~/.github-things-sync/config.json.

Update settings with:

github-things-sync config --interval=600      # Poll every 10 minutes
github-things-sync config --project="Work"    # Use different Things project
github-things-sync config --sync-types=pr-reviews,issues-assigned
github-things-sync config --repos=prompt      # Select specific repos to sync
github-things-sync config --repos=all         # Reset to sync all repos

Development

git clone https://github.com/yungweng/github-things-sync.git
cd github-things-sync
pnpm install
pnpm dev sync -v  # Run sync in dev mode

Contributing

Found a bug or have a feature request? Open an issue.

Pull requests are welcome!

License

MIT © yungweng