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

@cm64/cli

v2.0.4

Published

CM64 CLI — Stateless command-line tool for CM64 Studio

Readme

@cm64/cli

Stateless command-line tool for CM64 Studio. Build, manage, and deploy web applications from your terminal or AI agent.

Install

npm install -g @cm64/cli

Quick Start

# 1. Login with your email (sends verification code)
cm64 login

# Or login with an existing PAT token
# cm64 login cm64_pat_abc123

# 2. List your projects
cm64 projects

# 3. Set active project
cm64 use 69a5b1234567890abcdef12

# 4. Start building
cm64 ls                              # List all files
cm64 read component/Header           # Read a file
cm64 write component/Header -f ./Header.jsx  # Write from local file
cm64 snapshot "v1.0"                  # Create snapshot
cm64 deploy latest                    # Deploy to production

How It Works

Each command is a single HTTP POST to /api/cli. No sessions, no persistent connections, no MCP protocol overhead. Token and project ID stored locally in ~/.cm64/config.json.

For AI Models

See SKILL.md for comprehensive AI model documentation.

Commands

Setup

  • cm64 login [token] — Authenticate
  • cm64 projects — List projects
  • cm64 use <id> — Set active project
  • cm64 create <name> — Create project
  • cm64 status — Quick one-liner status
  • cm64 info — Full project metadata

Files

  • cm64 ls — List files
  • cm64 read <class/name> — Read file
  • cm64 write <class/name> — Write file
  • cm64 edit <class/name> — Find-and-replace
  • cm64 diff <class/name> — Compare cached vs remote
  • cm64 delete <class/name> — Delete file

Search

  • cm64 search <pattern> — Grep across files
  • cm64 glob <pattern> — Glob file paths

Deploy

  • cm64 snapshot <name> — Create snapshot
  • cm64 deploy <id|latest> — Pin to production

Data

  • cm64 users — App end-users
  • cm64 analytics — Product analytics
  • cm64 debug — Execution logs

Flags

  • --json — Structured JSON output
  • --force — Skip conflict detection
  • -f <file> — Read content from local file

Environment Variables

| Variable | Description | |----------|-------------| | CM64_TOKEN | Auth token (overrides config) | | CM64_ENDPOINT | API endpoint (default: https://build.cm64.io/api/cli) | | CM64_PROJECT | Active project ID (overrides config) |

Claude Code Integration

Add to your Claude Code MCP config to use cm64 commands directly:

{
  "mcpServers": {
    "cm64": {
      "command": "cm64",
      "args": ["--mcp", "--token", "cm64_pat_abc123"]
    }
  }
}

Or use the CLI directly — Claude Code can run cm64 commands via its shell tool.

Generate a Token

Visit https://build.cm64.io/settings/tokens to create a Personal Access Token.

License

MIT