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

kenkeep

v1.1.0

Published

Builds and maintains a per-repo knowledge base from AI coding sessions, for use with Claude Code.

Readme


Coding assistants forget everything from past sessions. Your AI conversations produce a steady stream of project-specific knowledge (conventions, gotchas, named modules, decision rationale), and most of it evaporates when the session ends. kenkeep captures it, asks a human to curate it, commits it to the repo, and injects it back into every future session — on Claude Code, Codex CLI, Cursor, OpenCode, and GitHub Copilot CLI.

Why kenkeep

Built up and shared across your team

The knowledge base grows in your repo as plain markdown, one node per fact, accumulated from real coding sessions. It travels with the project through git pull, so every teammate works from the same conventions instead of rediscovering them on their own laptop.

Reviewed and versioned like code

Nothing reaches the knowledge base without a human approving it. Every addition or change is an ordinary git diff you review in a commit or PR, with the full history there to inspect, blame, or revert like any other code.

No extra infrastructure

No daemons, services, databases, or vector stores. kenkeep is just Node and git, so there is nothing to provision, host, or keep alive, and nothing new to secure.

No API keys

It all runs from within the assistant of your choice, on the subscription you already pay for. There is no separate API key to obtain, store, or rotate.

How it works

kenkeep runs a loop around your AI sessions. Capture and injection happen on their own; you trigger curation, and you decide what to keep:

  • Capture (automatic): when a session ends, a hook saves the transcript.
  • Curate (you run /kk-curate): the AI drafts proposed notes under nodes/, then walks you through any contradictions with an existing note.
  • Review (you decide): inspect the notes with git diff, then commit the ones you want to keep. INDEX.md is injected into every future session.

Full walkthrough: How it works.

Quick start

npx kenkeep init --harnesses claude
npx kenkeep doctor

Swap claude for codex, cursor, opencode, or copilot (or pass a comma-separated list). For GitHub Copilot CLI, npx kenkeep init --harnesses copilot installs the skills under .github/skills/ (Copilot's documented project skill location) and keeps the adapter's hook scripts under the project-local .copilot/ directory, registering them in the user-level ~/.copilot/hooks/kk.json.

Then code normally. When you want to turn captured material into knowledge nodes, run /kk-curate inside your harness session (also /kk-add, /kk-bootstrap). The skills are context-aware and walk you through conflict resolution. New nodes appear in nodes/; review with git diff and commit the ones you want to keep.

Seed from existing docs

If your repo already has READMEs, ADRs, or module docs, seed the knowledge base from them. Inside a harness session:

/kk-bootstrap

The scan walks the repo root, filtered by .kkignore (generated by init, uses gitignore-style syntax). Edit .kkignore to exclude directories you don't want scanned. Review the resulting nodes under nodes/ with git diff and commit the ones you want to keep.

Add knowledge manually

At any time during a session you can use /kk-add to make sure the assistant remembers a message. Just casually mention it, and you're done:

No, you got that wrong.

This project aims to maximize code re-use, instead of duplication. Adapt and extend
the abstractions to fit this use case. Also, /kk-add this.

Documentation

Full documentation: https://mateuaguilo.com/kenkeep

For maintainers of this package itself, see CONTRIBUTING.md.

License

MIT