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

shipbrief

v0.1.0

Published

AXI-style read-only daily commit digests for local git repositories, with TOON output and provider-based delivery.

Downloads

170

Readme

shipbrief

AXI-style read-only daily commit digests for local git repositories.

shipbrief scans configured project roots, collects commits with git log, emits compact TOON for agents, renders Markdown for humans, and can send text to a Telegram group topic through the Bot API. It is built for Codex, Claude Code, Cursor, OpenCode, and other agents that should analyze commit data without crawling your whole machine themselves.

Install

npm install -g shipbrief

Until the package is published:

npm install -g /Users/devall/Projects/shipbrief

One-command agent run after publish:

npx -y shipbrief run --today

Setup

shipbrief init
shipbrief doctor

Edit ~/.shipbrief/config.json:

{
  "roots": ["/Users/devall/Projects"],
  "outputDir": "/Users/devall/Documents/Codex/commit-reports"
}

Telegram topic delivery uses env vars:

launchctl setenv TELEGRAM_BOT_TOKEN "123:abc"
launchctl setenv TELEGRAM_COMMIT_REPORT_CHAT_ID "-1001234567890"
launchctl setenv TELEGRAM_COMMIT_REPORT_THREAD_ID "87"

Usage

shipbrief run --today

Pipeline mode:

shipbrief collect --today --output commits.json
shipbrief render --input commits.json --output report.txt
shipbrief check --html report.html
shipbrief deliver --provider telegram --html report.html

Recommended agent flow:

  1. Run shipbrief run --today for compact TOON.
  2. Ask the agent to summarize the TOON into a readable follow-up in the user's language.
  3. Save the agent-written follow-up as HTML.
  4. Deliver through a provider:
shipbrief check --html report.html
shipbrief deliver --provider telegram --html report.html

Formats:

shipbrief run --today                 # TOON, default for evening automation
shipbrief run --today --format json   # complete machine-readable JSON
shipbrief run --today --format markdown

Quality metrics are included in every report:

quality:
  without_body: 14
  with_body: 1
  tests_note: 0
  codex_note: 3

Use them in the final follow-up when commit messages lack enough detail.

Agent Templates

  • templates/codex-automation.md
  • templates/AGENTS.md
  • templates/CLAUDE.md
  • skills/shipbrief/SKILL.md

Suggested public install paths:

npx -y shipbrief init
npx -y shipbrief doctor
npx -y shipbrief run --today

Provider model:

  • shipbrief collects commit data.
  • Agent writes human summary HTML.
  • shipbrief deliver --provider <name> handles provider-specific validation, chunking, and sending.
  • Current provider: telegram.
  • Planned providers can reuse the same flow: email, slack, webhook.

Safety

shipbrief only reads directories and runs:

  • git rev-parse --show-toplevel
  • git config --get remote.origin.url
  • git log --all ...

It never fetches, pulls, pushes, checks out, resets, edits files inside repositories, or scans outside configured roots.

Package Name

The npm name shiplog is already taken. This project uses the unscoped package name shipbrief.