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

gournal

v0.5.0

Published

A developer's command-line journal with Git integration: log work, generate standup reports, and export your history to Markdown or CSV.

Readme

📔 Gournal

A Developer's Command-Line Journal with Git Integration

CI npm version npm downloads License: MIT

Gournal is a CLI tool that helps developers:

  • Log daily work in context of Git projects
  • Generate standup reports automatically

gournal demo

✨ Features

  • Git-Aware Logging: Auto-tag entries with project names
  • Standup Reports: gournal standup generates daily, weekly, or monthly summaries
  • Work Log: gournal log shows a chronological, by-day view (daily/weekly/monthly), unlike standup's per-project grouping
  • Stats: gournal stats shows entry counts by project/tag and your current daily streak
  • Undo: gournal undo removes the most recently added entry
  • Lookup: gournal tags / gournal projects list distinct values with counts
  • Project Filtering: Scope standup/export/find output to a single project with --project
  • Export: gournal export writes entries to Markdown or CSV
  • MCP Server: gournal mcp exposes your journal to AI agents like Claude Code

🚀 Quick Start

Prerequisites

  • Node.js v18+
  • Git (for project detection)

Installation

npm install -g gournal
# or
yarn global add gournal

Usage

# Log an entry
gournal add "Fixed the flaky auth test" --tags bug,testing

# Daily / weekly / monthly standup
gournal standup
gournal standup --week
gournal standup --month

# Scope any report to one project
gournal standup --week --project gournal

# Chronological work log
gournal log --week
gournal log --month --tags bug,testing

# Undo the last entry
gournal undo

# Stats and lookups
gournal stats
gournal tags
gournal projects

# Find entries in a date range
gournal find "auth" --from 2026-07-01 --to 2026-07-15

# Export entries
gournal export --format md
gournal export --format csv --project gournal --output entries.csv

🤖 MCP Server

gournal mcp starts an MCP server (stdio transport) that exposes your journal to AI agents like Claude Code. It reuses the same storage/report/export logic as the CLI, so agents see exactly what you'd see.

Tools exposed:

  • list_entries — list entries newest-first, filterable by project, from, to, capped by limit (default 50, max 500)
  • get_standup — generate a standup report (yesterday / week / month, filterable by project)
  • export_entries — export entries to md or csv
  • get_work_log — generate a chronological work log grouped by day (yesterday / week / month, filterable by project/tags)
  • list_tags — distinct tags with counts, filterable by project
  • list_projects — distinct projects with counts

Using with Claude Code

Register it as an MCP server, e.g. with the Claude Code CLI:

claude mcp add gournal -- gournal mcp

Or add it directly to your MCP client config (e.g. .mcp.json):

{
  "mcpServers": {
    "gournal": {
      "command": "gournal",
      "args": ["mcp"]
    }
  }
}

Once registered, you can ask your agent things like "summarize what I worked on this week" or "export my gournal entries for the api project to markdown."