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

@cacinie/cace-timer

v1.1.1

Published

A minimal time tracking CLI with cute anime girl mascot

Downloads

279

Readme

cace-timer

npm version license

A minimal time tracking CLI with cute anime girl mascot.

npm install -g @cacinie/cace-timer
  ▄▄▄▄▄▄▄▄▄▄▄▄
 █░░░░░░░░░░░░█
 █░▄▄▄▄▄▄▄▄▄░█
 █░│ ●   ● │░█
 █░│   ▽   │░█
 █░│  ───  │░█
 ╰────────────╯
   CACE TIMER

Quick Start

# Start a task
tk start "写周报" --tag work --estimate 30

# Mark progress
tk mark "完成数据分析"

# Check status
tk status

# Stop and get efficiency score
tk stop

Commands

tk start <task> [options]

Start a new task.

| Option | Description | |--------|-------------| | --tag <tag> | Add a tag | | --estimate <minutes> | Estimated duration (for efficiency score) |

tk start "开发登录功能" --tag coding --estimate 60

tk mark <note>

Record a time checkpoint.

tk mark "完成API接口"
tk mark "开始写测试"

tk stop

Stop current task, show summary and efficiency score.

| Score | Emoji | Meaning | |-------|-------|---------| | 100% | 🏆 | Actual ≤ Estimate | | 80-99% | ⭐ | Slightly over or on target | | 50-79% | 💪 | Moderately over estimate | | <50% | 💀 | Far over estimate |

Efficiency score is only shown when --estimate was set at task start.

tk status

Show current running task.

tk list [options]

View history.

| Option | Description | |--------|-------------| | --today | Today only | | --tag <tag> | Filter by tag | | --limit <n> | Limit count (default 10) |

tk list --today
tk list --tag coding --limit 20

tk search <keyword>

Search across task names, tags, and mark notes.

tk search "登录"

tk sync <path>

Set sync file path for cross-device sync (Dropbox / iCloud / OneDrive).

# macOS / Linux
tk sync ~/Dropbox/cace-timer.json
tk sync ~/OneDrive/cace-timer.json

# Windows
tk sync "%USERPROFILE%\Dropbox\cace-timer.json"
tk sync "%USERPROFILE%\OneDrive\cace-timer.json"

tk help

Show help.

CACE Mascot

CACE reacts to what you do:

| State | Eyes | Mouth | When | |-------|------|-------|------| | Normal | ● ● | ─── | Default | | Happy | ★ ★ | ◡◡◡ | Task completed | | Super Happy | ◉ ◉ | ▽△▽ | Animation frame | | Sleepy | ─ ─ | ─── | No active task | | Blink | ─ ─ | ─── | Animation frame |

Data

All data is stored in ~/.cace-timer.json. Single JSON file, easy to backup and sync.

{
  "syncPath": "~/Dropbox/cace-timer.json",
  "current": null,
  "history": [
    {
      "id": "lq3x9k2",
      "task": "写周报",
      "start": "2024-03-02T10:00:00.000Z",
      "end": "2024-03-02T10:30:00.000Z",
      "tags": ["work"],
      "marks": [{ "time": "...", "note": "完成数据分析" }],
      "estimatedMinutes": 30
    }
  ]
}

Uninstall

npm uninstall -g @cacinie/cace-timer

Changelog

v1.1.1

  • Added prepare script (fixes git-based installs)
  • Added types field for TypeScript consumers
  • Fixed efficiency score display when no estimate was set
  • Fixed efficiency score table mismatch in README
  • Fixed --limit 0 falsy-zero bug
  • Fixed --estimate NaN handling
  • Added Super Happy mascot state and Windows sync paths to README
  • Added uninstall instructions and data format to README

v1.1.0

  • Restructured repo layout (flat structure, no nested timekeeper/)
  • Fixed .gitignore (dist/ was not properly ignored)
  • Fixed CI workflow (was running in wrong directory)
  • Added Node 18/20/22 matrix in CI
  • Added engines field in package.json

v1.0.0

  • Initial release
  • start / mark / stop / status / list / search / sync commands
  • CACE mascot animation
  • Efficiency scoring
  • Cloud sync support

License

MIT