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

@correctroadh/toggl-cli

v0.7.6

Published

Unofficial command-line interface for Toggl Track using the v9 API.

Readme

English | 中文

toggl-cli

codecov

Unofficial CLI for Toggl Track and OpenToggl, written in Rust.

toggl-cli works with both the official Toggl service and self-hosted OpenToggl instances, so you can keep the same CLI workflow either way.

Install

npm install -g @correctroadh/toggl-cli

// to verify
toggl --help

Agent one-click install (skill)

Claude Code/OpenClaw

npx skills add CorrectRoadH/toggl-cli

Quick Start

Use OpenToggl if Toggl rate limits are getting in the way or you need self-hosting. OpenToggl is a fully-compatible alternative you can deploy yourself.

Use with Toggl Track

toggl auth <YOUR_API_TOKEN>

Use with OpenToggl

toggl auth <YOUR_API_TOKEN> --api-type opentoggl --api-url https://your-instance.com/api/v9

You can also run interactive auth:

toggl auth

The API token is stored securely in your Operating System's keychain using the keyring crate.

On some Linux environments the keyring store may not persist across reboots. In that case, set TOGGL_API_TOKEN in your shell profile instead.

Why toggl-cli

  • Works with both official Toggl Track and self-hosted OpenToggl
  • Simple CLI for daily time tracking, project, task, and tag workflows
  • Local HTTP caching reduces repeated API calls on read-heavy commands
  • Interactive auth and command flows when you do not want to pass everything as flags

Common Commands

# Start and stop time tracking
toggl entry start -d "Write code" -p MyProject -t dev cli
toggl entry stop
toggl entry current

# List entries
toggl entry list -n 10
toggl entry list --since 2026-03-06 --until 2026-03-06
toggl entry list --since "2026-03-06 09:00" --until "2026-03-06 18:30"

# Workspace resources
toggl project create "New Project"
toggl task create --project MyProject "Code Review"
toggl tag create "deep-work"

# Reports
toggl report summary --since 2026-03-01 --until 2026-03-31
toggl report detailed --since 2026-03-01 --until 2026-03-31
toggl report weekly --since 2026-03-17 --until 2026-03-23

For toggl entry list, date-only values are interpreted in local time. --since YYYY-MM-DD means the start of that day, and --until YYYY-MM-DD includes the full day.

Run toggl --help to see all commands.


Maintained by CorrectRoadH | Upstream: watercooler-labs/toggl-cli