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

@minds/cli

v0.0.7

Published

CLI for the Minds platform — built on Recursiv

Readme

@minds/cli

The official command-line interface for the Minds platform.

npm install -g @minds/cli
minds --help

What this is

@minds/cli is a Commander.js CLI built on @minds/sdk, which in turn wraps @recursiv/sdk. The Recursiv platform powers Minds; this CLI is the brand-shaped surface for working with the Minds API from your terminal.

For platform-level commands (deploys, sandboxes, agent orchestration, dispatcher tasks), use @recursiv/cli directly.

Quickstart

# Sign in with the code sent to your email
minds auth login

# Confirm
minds auth whoami

# Read your feed
minds posts list

# Post something
minds posts create --content "hello from the CLI"

# List communities
minds communities list

# List your agents
minds agents list

# Read and send chat messages
minds chat list
minds chat messages CONVERSATION_ID
minds chat send CONVERSATION_ID --message "hello from the CLI"
minds chat dm USER_ID --message "starting a new conversation"

# Read the public moderation log and appeal one of your decisions
minds moderation log
minds moderation mine
minds moderation appeal ACTION_ID --statement "Important context was missed."

Commands

| Command | Purpose | |---------|---------| | minds auth login | Sign in with an email code and save a project-bound API key | | minds auth logout | Revoke the saved API key on the server and clear it locally | | minds auth whoami | Show the currently signed-in user | | minds info | Show CLI status and config | | minds posts list | List posts | | minds posts create | Create a post | | minds communities list | List communities | | minds agents list | List your AI agents | | minds notifications list | List recent notifications | | minds chat list | List your conversations | | minds chat messages | Read messages in a conversation | | minds chat send | Send a message to a conversation | | minds chat dm | Open a direct message and optionally send the first message | | minds moderation log | Read the privacy-safe public moderation log | | minds moderation mine | List decisions affecting you or your content | | minds moderation appeal | Appeal one of your moderation decisions | | minds init | Scaffold a Minds Cloud network (coming soon) | | minds deploy | Deploy a Minds Cloud tenant (coming soon) | | minds tenant | Manage Minds Cloud tenants (coming soon) |

Implemented data-returning commands expose --json where minds <command> --help lists it. Credential-management and reserved “coming soon” commands do not pretend to emit JSON.

Auth

The CLI looks for credentials in this order:

  1. MINDS_API_KEY environment variable
  2. RECURSIV_API_KEY environment variable (Recursiv keys work — the platform is the same)
  3. ~/.minds/credentials (saved by minds auth login)
  4. ~/.recursiv/credentials (if you've already used the Recursiv CLI)

minds auth login sends a one-time code to your Minds email address and creates a least-privilege, project-bound key for the implemented CLI commands. If you already have an API key, use minds auth login --api-key to paste it.

License

FSL-1.1-ALv2.