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

@mmmnt/flmnt

v1.9.2

Published

flmnt CLI — installs the platform-native flmnt binary.

Readme

@mmmnt/flmnt

The developer CLI for the flmnt event-stream memory platform — authentication, workspace management, and the MCP auth helper that wires clients like Claude Code to a live, authenticated flmnt MCP.

This package is a thin installer: on postinstall it downloads the platform-native flmnt binary for your OS/architecture from the matching GitHub release, verifies it against the release checksums, and exposes it as the flmnt command. No Go toolchain required.

Install

npm install -g @mmmnt/flmnt

Requires Node.js ≥ 18. Supported platforms: macOS, Linux, and Windows on x64 and arm64.

Prefer a native package manager? The same CLI ships through several channels:

brew install mmmnt/tap/flmnt                 # Homebrew (macOS/Linux)
scoop install flmnt                          # Scoop (Windows)
go install github.com/mmmnt/flmnt-cli@latest # Go

Quickstart

Authenticate, pick a workspace, and wire Claude Code to your flmnt MCP:

flmnt login                              # OAuth2 — browser PKCE (or --device for headless)
flmnt workspace use <name|id>            # set the active workspace
flmnt setup --server-url <flmnt-url>     # write .mcp.json + the automation kit

flmnt setup writes a project-local .mcp.json pointing at the local proxy plus a .claude/ hook map and slash commands; flmnt proxy then injects your bearer token on outbound MCP requests — so Claude Code talks to a live, authenticated flmnt MCP without you handling tokens by hand. setup is idempotent.

Commands

flmnt help                       # list all commands
flmnt <command> -h               # detailed help for a command

# Authentication
flmnt login                      # authenticate via OAuth2 (browser PKCE, or --device for headless)
flmnt logout                     # sign out and revoke local credentials
flmnt whoami                     # show the active identity and workspace

# Workspaces
flmnt workspace list             # list workspaces you own or are a member of
flmnt workspace create <name>    # create a workspace and make it active
flmnt workspace use <name|id>    # set the active workspace
flmnt workspace members          # list members of a workspace
flmnt workspace add-member       # add a member to a workspace you own
flmnt workspace remove-member    # remove a member from a workspace you own

# MCP / Claude Code integration
flmnt setup --server-url <url>   # install the automation kit: .mcp.json + lifecycle hooks
                                 # + .claude/commands/flmnt-* slash commands (idempotent)
flmnt proxy                      # run the local MCP proxy (injects Authorization: Bearer)
flmnt mcp auth-header            # print MCP auth headers as JSON for .mcp.json

# Data
flmnt sync push                  # sync local Quorum data up to the remote workspace
flmnt sync pull                  # sync remote workspace data down to local

# Memory (continuity loop + deterministic writes for hooks / CI)
flmnt brief                      # SessionStart: inject latest keyframe + recent decisions + mistakes
flmnt derive --hook              # Stop: derive decisions/keyframes/mistakes from transcript + git
flmnt record-metric --name <n> --value <v>   # write an operational metric
flmnt record-plan --content <p>              # write a multi-step plan
flmnt record-supersession --content <c> --supersedes <id>  # replace a decision

# Utilities
flmnt health                     # check health of Core, Engine, and proxy services
flmnt gate                       # keyframe-recency check for the UserPromptSubmit hook
flmnt dashboard                  # open the dashboard in a browser
flmnt version                    # print the version

License

Apache-2.0. The flmnt CLI is open source; the flmnt platform is proprietary.