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

wayfind

v2.0.81

Published

Team decision trail for AI-assisted development. The connective tissue between product, engineering, and strategy.

Readme

Wayfind

Team memory for AI-assisted engineering.

Your AI coding assistant forgets everything between sessions. Wayfind gives it a memory — for you and your whole team.

Plain markdown files. No infrastructure. Works with any MCP client.

CI npm License: Apache 2.0

Works with: Claude Code | Cursor | Any MCP client


The Problem

AI coding assistants are stateless. Every session starts cold. The decisions you made yesterday, the architecture you agreed on last week, the reason you chose Postgres over Mongo — gone. You re-explain, or the AI guesses wrong.

Now multiply that across a team. Five engineers, each with their own AI sessions, none of them aware of what the others decided. Your PM reads the standup notes, but the AI that writes the code doesn't.

What Wayfind Does

For you: Sessions resume where they left off. Decisions are extracted automatically and become searchable history. Drift detection flags when work veers from the stated goal.

For your team: A daily digest summarizes what everyone shipped, decided, and discovered — tailored per role (engineering, product, design, strategy). Team members who use AI tools get session memory directly. Everyone else gets a Slack digest.

For your AI tools: An MCP server exposes your team's full decision history as tools. Claude, Cursor, or any MCP client can search decisions, browse by date, and retrieve context — no file reading or guessing.


Quick Start

Option A: Claude Code plugin

/plugin marketplace add usewayfind/wayfind
/plugin install wayfind@usewayfind
/wayfind:init-memory

Option B: npm (works with any AI tool)

npm install -g wayfind
wayfind init

Your next AI session has memory. That's it.


How It Works

Plain Files, Not Databases

All context is plain markdown in directories you control:

~/.claude/
  global-state.md           # Thin index — always loaded at session start
  memory/
    journal/YYYY-MM-DD.md   # Daily decision log

<repo>/.claude/
  team-state.md             # Shared team context (committed)
  personal-state.md         # Your context (gitignored)

No proprietary formats. No vendor lock-in. grep works if Wayfind breaks.

The Session Loop

  1. Start — AI reads state files, summarizes context, asks "What's the goal?"
  2. Mid-session — If work drifts from the goal, the AI flags it.
  3. End — Decisions are extracted, written as journal entries, and synced to the team repo — automatically via hooks.

Team Digests

Each role sees the same data through a different lens:

  • Engineering: What shipped, what drifted, what patterns emerged
  • Product: What shipped vs. planned, discovery signals
  • Strategy: Cross-team patterns, drift trends, capability gaps

The digest posts to Slack. Anyone on the team — engineer, PM, CEO — who uses an AI tool gets session memory. Everyone else gets the digest.

MCP Server

Wayfind includes an MCP server that exposes team context to any MCP-compatible AI tool. Auto-registered during wayfind init.

Tools:

| Tool | What it does | |------|-------------| | search_context | Search decisions by query, date range, author, or repo. Semantic or browse mode. | | get_entry | Retrieve the full content of a specific entry. | | get_signals | Recent GitHub, Intercom, and Notion activity. | | get_team_status | Current team state: who's working on what, active projects, blockers. | | add_context | Capture a decision or blocker from the current session. | | record_feedback | Rate whether a result was useful (improves future retrieval). |

Each team member's MCP server searches their local content store — journals synced from the shared team repo, with local embeddings generated automatically. No infrastructure required.


Signal Connectors

Pull external context into digests:

wayfind pull github       # Issues, PRs, Actions status
wayfind pull intercom     # Support conversations, tags, response times
wayfind pull notion       # Pages, databases, comments
wayfind pull --all        # All configured channels

Team Setup

/wayfind:init-team

This walks you through creating a team, setting up profiles, creating a shared team-context repo, and configuring Slack digest delivery. Multi-team support built in — bind repos to different teams, each with isolated context.


Tool Support

| Tool | How | Setup | |------|-----|-------| | Claude Code | Plugin (full support) | /plugin marketplace add usewayfind/wayfind | | Cursor | MCP server | wayfind init auto-registers | | Any MCP client | MCP server | wayfind init auto-registers | | Slack | Bot + digests | wayfind bot --configure |


What's Open Source

Everything that runs on your machine is open source (Apache 2.0).

| Open Source (this repo) | Commercial (future) | |---|---| | CLI, plugin, and all commands | Cloud-hosted team aggregation | | Session protocol and journal extraction | Managed digest delivery | | Content store, semantic search, MCP server | Web dashboard | | Signal connectors (GitHub, Intercom, Notion) | SSO and tenant isolation | | Digest generation (your API key) | | | Slack bot (self-hosted) | | | Multi-team support | |


Architecture


Contributing

See CONTRIBUTING.md. Good first contributions:

  • Specializations for AI tools (Windsurf, Aider, Continue)
  • Signal connectors for new tools (Linear, Jira, Slack, HubSpot)
  • Bug reports and feature requests via issues

License

Apache 2.0. See LICENSE.