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

@mirage-cli/timing-cli

v0.1.9

Published

CLI for the Timing app API — projects, entries, reports, teams, activities. Mirage / Cloudflare-Worker compatible.

Readme

Timing CLI

A fast, standalone CLI for the Timing time-tracking API. Built with Bun and compiled to a single binary — no runtime needed.

Includes a Claude Code skill so Claude can manage your time tracking directly.

Install

Download a prebuilt binary

Grab the latest release for your platform from Releases:

| Platform | Binary | | ------------ | --------------------- | | macOS ARM64 | timing-darwin-arm64 | | macOS x64 | timing-darwin-amd64 | | Linux x64 | timing-linux-amd64 | | Linux ARM64 | timing-linux-arm64 |

# Example: macOS ARM64
curl -L https://github.com/alexbruf/timing-api/releases/latest/download/timing-darwin-arm64 -o timing
chmod +x timing
sudo mv timing /usr/local/bin/

Build from source

Requires Bun.

git clone https://github.com/alexbruf/timing-api.git
cd timing-api
bun install
bun run build
# Binary is at ./timing

Setup

  1. Get an API token from the Timing web app → API Keys
  2. Set the environment variable:
export TIMING_API_TOKEN="your_token_here"
  1. Verify it works:
timing projects list --format table

Usage

timing [--format json|table] [--timezone <tz>] <command>

Timer

timing start --project <id> --title "Working on feature"
timing stop
timing running
timing latest

Projects

timing projects list [--hide-archived] [--all-pages]
timing projects hierarchy
timing projects get <id>
timing projects create --title "New Project" [--color "#FF0000"]
timing projects update <id> --title "Renamed"
timing projects delete <id>

Time Entries

timing entries list --from 2025-01-01 --to 2025-01-31 [--project <ref>] [--all-pages]
timing entries get <id>
timing entries create --start "2025-01-01T09:00:00Z" --end "2025-01-01T17:00:00Z" --title "Work"
timing entries update <id> --title "Updated"
timing entries delete <id>
timing entries batch-update --ids 123 456 --billing billable

Reports

timing report --from 2025-01-01 --to 2025-01-31
timing report --from 2025-01-01 --to 2025-01-31 --group-by project --timespan week

Teams

timing teams list
timing teams members <teamId>

Activities

timing activities --start 2025-01-01 --end 2025-01-02

Claude Code Skill

The included skill lets Claude manage your time tracking directly from Claude Code.

Install the skill

  1. Make sure the timing binary is on your PATH (see Install above)

  2. Add the skill to your Claude Code project or global config:

# From this repo (if cloned)
claude skill add ./skill/SKILL.md

# Or add it globally so it's available in every project
claude skill add --global ./skill/SKILL.md
  1. Make sure TIMING_API_TOKEN is set in your shell environment (Claude Code inherits it)

What you can ask Claude

Once installed, just talk to Claude naturally:

  • "Start tracking time on the Acme project"
  • "What am I working on right now?"
  • "Stop the timer"
  • "What did I work on today?"
  • "How much time did I spend on the documentation project this week?"
  • "Create a new project called Research"
  • "Show me a report for last month grouped by project"

Claude will use the timing CLI behind the scenes and present results in a readable format.

Output Formats

  • JSON (default) — machine-readable, ideal for piping and scripting
  • Table (--format table) — human-readable ASCII tables
# JSON (default)
timing projects list

# Table
timing projects list --format table

License

MIT