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

@memfork/cli

v0.1.71

Published

MemForks CLI — init, commit, recall, merge, install plugins

Readme

@memfork/cli

Command-line interface for MemForks — on-chain, branch-aware agent memory.

Initialize a memory tree, commit facts, branch and merge, onboard teammates, and install IDE plugins.

Install

npm install -g @memfork/cli
# or run without installing
npx @memfork/cli init

Quick start

# One-shot setup on mainnet (gas sponsored — no SUI required)
memfork init

# Verify everything works
memfork doctor

# Install Cursor plugin (MemWal MCP + MemForks rules)
memfork install cursor

Restart your IDE. The agent recalls and commits memory scoped to your Git branch.

Commands

Setup

| Command | Description | |---------|-------------| | memfork init | Interactive setup — create or link a memory tree | | memfork init --quick | Auto-provision key, MemWal account, and tree (testnet) | | memfork join | Onboard to an existing tree (team member) | | memfork doctor | Verify config, RPC, credentials, and on-chain state | | memfork install cursor | Install Cursor MCP + rules | | memfork install codex | Install Codex plugin scaffold |

Memory operations

| Command | Description | |---------|-------------| | memfork status | Tree, network, branch, signer | | memfork log | Recent commits on a branch | | memfork recall <query> | Semantic recall from CLI | | memfork commit -m "…" --facts "…" | Anchor facts on-chain | | memfork branch <name> | Create a new branch | | memfork checkout <name> | Switch active branch | | memfork diff <a> <b> | Fact diff between branches | | memfork merge <from> <into> --resolver <id> | Propose a merge | | memfork proposals | List open merge proposals |

Access control

| Command | Description | |---------|-------------| | memfork grant --agent <addr> | Grant on-chain delegate access | | memfork grant-memwal --agent <addr> --pubkey <hex> | Register MemWal decrypt key | | memfork revoke --agent <addr> | Revoke delegate | | memfork delegates | List current delegates |

Config files

| File | Committable? | Contents | |------|--------------|----------| | .memfork/config.json | Yes | treeId, network, defaultBranch | | ~/.memfork/credentials.json | No | Private keys, MemWal delegate key |

Never commit credentials. Share .memfork/config.json via git so teammates can memfork join.

Team onboarding

Teammate:

git clone <repo>   # .memfork/config.json is already there
memfork join

Tree owner (runs the printed commands):

memfork grant --agent <teammate-address>
memfork grant-memwal --agent <teammate-address> --pubkey <hex>

Environment variables

| Variable | Description | |----------|-------------| | MEMFORK_TREE_ID | MemoryTree object ID | | MEMFORK_PRIVATE_KEY | Sui private key (suiprivkey1…) | | MEMFORK_NETWORK | mainnet (default) or testnet | | MEMFORK_SPONSOR_URL | Gas sponsor service URL | | MEMFORK_PACKAGE_ID | Override Move package ID |

Links

License

Apache-2.0