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

englog

v0.1.0

Published

Repo-local engineering experience graph and CLI for capturing project pitfalls, decisions, and reports.

Readme

EngLog

EngLog is a repo-local engineering experience timeline graph. It stores structured project experience inside .englog/, then builds a time-series graph and local web dashboard for problems, optimizations, decisions, and reports.

MVP

  • englog / englog .: run the interactive init wizard
  • englog init: scaffold .englog/ in a project
  • englog init --agent claude-code --agent cursor --agent codex: scaffold project-local command/skill entrypoints non-interactively
  • englog capture: save an experience entry
  • englog graph build: build the timeline graph cache
  • englog report generate: write a project report
  • englog web: start a local dashboard

Quick Start

npm install -g englog
cd /path/to/repo
englog .

然后就会进入初始化向导,选择:

  • claude-code
  • codex
  • cursor

默认命令名是 /capture。初始化完成后,就可以在这些客户端里直接调用,而且不需要给 /capture 传任何参数;模型会根据当前上下文自动整理记录,必要时再追问确认。

englog capture \
  --type problem \
  --title "Prisma migration ran in wrong package" \
  --summary "Monorepo root script proxied the command to the wrong workspace." \
  --symptom "Migration artifacts were created under the wrong app." \
  --root-cause "I ran the command from the repo root without checking schema ownership." \
  --resolution "Re-ran under apps/api and documented the package boundary." \
  --takeaway "For monorepos, locate the owning package before running DB tooling." \
  --tag prisma \
  --tag monorepo
englog graph build
englog report generate --type pitfalls
englog web

如果你想用结构化 JSON 一次性写入,也可以:

cat <<'JSON' | englog capture --stdin-json
{
  "type": "problem",
  "title": "Prisma migration ran in wrong package",
  "summary": "Monorepo root script proxied the command to the wrong workspace.",
  "symptom": "Migration artifacts were created under the wrong app.",
  "rootCause": "I ran the command from the repo root without checking schema ownership.",
  "resolution": "Re-ran under apps/api and documented the package boundary.",
  "takeaway": "For monorepos, locate the owning package before running DB tooling.",
  "efficiencyGain": "Avoids 30m of repeated debugging.",
  "tags": ["prisma", "monorepo"],
  "artifacts": ["apps/api/schema.prisma"]
}
JSON

The command set works against the current directory by default, but each command also accepts --path to target a different repository.

Agent Integrations

englog . or englog init can scaffold project-local command or skill files for supported clients:

  • claude-code -> .claude/skills/<command-name>/SKILL.md
  • cursor -> .cursor/commands/<command-name>.md
  • codex -> .codex/skills/<command-name>/SKILL.md

Interactive example:

cd /path/to/repo
englog .

Non-interactive example:

englog init \
  --path /path/to/repo \
  --agent claude-code \
  --agent cursor \
  --agent codex \
  --command-name capture

This gives you a shared slash command or skill name like /capture in tools that support it, while all of them eventually save into the same repo-local .englog/ data model.

Repo Layout

.englog/
  project.yaml
  entries/
  sessions/
  reports/
  artifacts/
  templates/
  cache/
  private/

Notes

  • .englog/cache/ and .englog/private/ are ignored by Git by default.
  • The graph cache is rebuilt from the markdown source files, so the graph is an index layer rather than the source of truth.
  • Runtime requirement: Node.js 18+