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

memax-cli

v0.2.0

Published

CLI for Memax — universal context & memory hub for AI agents

Downloads

1,550

Readme


Memax is the shared memory layer for you and your AI agents. Push knowledge once — notes, files, URLs, chat transcripts — and recall it from any agent, any session, any device. Ask grounded questions and get answers with citations from your own memory base.

memax-cli is the command-line entry point. It ships the memax binary for terminal workflows and a local MCP server so Claude Code, Cursor, Codex, and any other MCP-aware agent can read and write your memory directly.

Install

npm install -g memax-cli

Or run once without installing:

npx memax-cli recall "jwt session rotation policy"

Quick start

# One-time: log in via browser
memax login

# Remember something
memax push "Never block on a live migration — always do online + backfill."

# Recall with natural language
memax recall "migration guidelines"

# Ask a grounded question — answer includes citations
memax ask "How do we handle breaking schema changes?"

# Wire up your IDE agent (writes an MCP entry to the right config file)
memax setup

What it does

  • memax push — save a thought, file, URL, or piped stdin
  • memax recall — natural-language search across personal + team knowledge
  • memax ask — AI-synthesized answer grounded in your memory, with citations
  • memax list / show / delete — browse and manage entries
  • memax hub — create, invite, and switch between team hubs
  • memax topic — inspect auto-generated topic clusters
  • memax dreams — view the ingestion/organization pipeline status
  • memax agents sync — device-aware sync of agent configs and session artifacts
  • memax import <dir> — one-way ingest of a directory into memory
  • memax mcp serve — start a local MCP server for agent integration
  • memax setup — detect installed agents and wire up MCP + hooks
  • memax hook — Claude Code hook for automatic context injection

Run memax --help or memax <command> --help for the full surface.

Agent integration

Memax is built agent-first. Three integration paths:

  1. MCP (recommended for IDE agents)memax setup writes the right MCP server entry for Claude Code, Cursor, Codex, or Windsurf. The agent can then call memax_recall, memax_push, memax_ask, and friends directly.
  2. Claude Code hooks — automatic context injection before each prompt (memax hook). Latency budget is under 500ms; context is injected as <memax-context> blocks.
  3. Direct CLI piping — works with any agent and in CI. memax recall … | your-agent.

Configuration

The CLI reads from ~/.memax/config.json after first login. For CI and non-interactive use:

export MEMAX_API_KEY="mk_live_..."   # from memax.app → Settings → API Keys
export MEMAX_API_URL="https://api.memax.app"   # default

Links

License

Apache 2.0 — see LICENSE and NOTICE.