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

@massa-ai/claude-plugin

v1.55.0

Published

massa-ai plugin for Claude Code — semantic code search, durable memory, symbol graph, and context compression

Readme

massa-ai — Claude Code plugin

Slash commands and a specialized subagent that make massa-ai feel native in Claude Code.

What you get

Slash commands (installed as /massa-ai-*):

| Command | What it does | |---------|--------------| | /massa-ai-map | Project map: stats, top central files, symbols by kind, languages, recent indexes | | /massa-ai-index [projectId] | Index the cwd (polls status, reports ETA) | | /massa-ai-find <query> | Semantic code search | | /massa-ai-def <symbol> | Go-to-definition (exact then fuzzy fallback) | | /massa-ai-graph <symbol> | Reference graph (who calls / imports / extends) | | /massa-ai-status | Workspaces health + search analytics |

Plus 40 generated workflow commands, one per massa-ai workflow (/massa-ai:debug on the marketplace route, /massa-ai-debug on the file route, etc.) — see Workflow Commands in the root feature reference for the full naming table.

Subagent:

  • massa-ai-navigator — exploration specialist that prefers semantic queries over blind file reads. Protects the parent agent's context during large investigations.

Install

# user scope (~/.claude), default
apps/claude-plugin/install.sh

# or project scope (./.claude)
apps/claude-plugin/install.sh --project

Restart Claude Code to pick up the new commands.

Or install as a plugin

This is the route that makes massa-ai appear in /plugin:

/plugin marketplace add ~/Projects/massa-ai
/plugin install massa-ai@massa-ai
/reload-plugins

The marketplace manifest is .claude-plugin/marketplace.json at the repo root; the plugin manifest is .claude-plugin/plugin.json here. Commands installed this way are namespaced (/massa-ai:find rather than /massa-ai-find).

Claude Code copies the plugin directory into a cache on install, so the plugin can only reference files inside itself — hooks/hooks.json addresses the hook binary through ${CLAUDE_PLUGIN_ROOT}, never an absolute repo path.

Because the plugin ships hooks, running install.sh afterwards would wire a second copy of all 5 events. It doesn't: the installer checks ~/.claude/plugins/installed_plugins.json for a massa-ai@* entry and skips its hook merge when it finds one. The check fails open — a missing or malformed registry never blocks an install. Note it resolves from $HOME even under --project, because Claude Code records plugin installs at user scope regardless of install scope.

Neither manifest carries an mcp key: scripts/install-agents.sh is the single writer of host MCP config, and it writes to ~/.claude.json (not ~/.claude/settings.json, which holds only approval controls and hooks).

Prerequisites

The massa-ai MCP server must be registered for Claude Code. See apps/mcp-client/README.md.

A quick check after install:

/massa-ai-status

If nothing shows up, the MCP server probably isn't running — start it with the dev-server command from the massa-ai repo.