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

devday

v0.4.1

Published

End-of-day recap for AI-assisted coding sessions. Reads OpenCode, Claude Code, Cursor, and Codex conversations, cross-references with git, and generates standup-ready summaries.

Downloads

485

Readme

devday

End-of-day recap for AI-assisted coding sessions. Reads your local conversations from OpenCode, Claude Code, Cursor, and Codex, cross-references with git, and generates standup-ready summaries.

devday output

What it does

  • Scans completed AI coding sessions from your local machine (nothing leaves your machine unless you enable LLM summaries)
  • Shows tokens used, estimated cost, duration, and models per session
  • Groups sessions by project and shows git commits alongside
  • Optionally generates first-person standup messages via Concentrate AI, OpenAI, or Anthropic

Supported tools

| Tool | Data source | |------|------------| | OpenCode | ~/.local/share/opencode/storage/ | | Claude Code | ~/.claude/ (SQLite + JSONL) | | Cursor | ~/Library/Application Support/Cursor/User/globalStorage/state.vscdb | | Codex | ~/.codex/sessions/ (JSONL + legacy JSON) | | Gemini CLI | WIP |

Install

npm install -g devday

Development

git clone https://github.com/ujjwaljainnn/devday.git
cd devday
npm install
npm run build
npm link

Usage

devday                        # today's recap
devday -d yesterday           # yesterday
devday -d 2026-02-11          # specific date
devday --standup              # short standup format
devday --json                 # machine-readable output
devday --no-git               # skip git integration
devday --no-summarize         # skip LLM summaries
devday -v                     # debug output

AI summaries

Summaries are optional. Without an API key, devday shows stats and git only.

export CONCENTRATE_API_KEY=sk-cn-...
# or
export OPENAI_API_KEY=sk-...
export ANTHROPIC_API_KEY=sk-...

# optional: enrich standup with Linear ticket context via MCP
export LINEAR_MCP_SERVER_URL=https://your-linear-mcp-server.example.com/mcp
export LINEAR_MCP_AUTH_TOKEN=lin_...

Concentrate AI

Concentrate AI is a unified LLM gateway that routes to 50+ models (GPT-5, Claude, Gemini, etc.) through a single API key. devday uses it with gpt-5-mini for fast, cheap summarization.

$20 in free credits when you sign up — more than enough to run devday for months.

Linear MCP (optional)

If LINEAR_MCP_SERVER_URL is set, devday enables a Linear MCP tool during standup generation. The summarizer will try to pull:

  • tickets created on the recap date
  • tickets closed/completed on the recap date (or previous day if needed)
  • currently assigned tickets
  • active/in-progress tickets

When data is available, standup output may include bullets like Things I'm working on and Things I'm planning to work on.

How it works

devday reads completed sessions from each tool's local storage. Sessions are grouped by project directory, and git commits are matched by date.

Duration is calculated from actual message processing times (not wall-clock), capped at 5 minutes per message to handle tools that write bogus completion timestamps.

Cost is estimated from token counts and model pricing tables when the tool doesn't provide it directly.

Contributing

Contributions are welcome. Fork the repo, make your changes, and open a PR.

If you use this tool and think it can be better — parsers for new tools, better summaries, new output formats, whatever — send it through. Let's make this thing more useful.