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

@aradenta.labs/centmem-skills

v2.1.2

Published

Cross-platform installer for cent-mem shared memory skills and slash commands

Readme

@aradenta.labs/centmem-skills

Frictionless installer for cent-mem skills & slash commands across AI agent harnesses.

npm version License: MIT

centmem-skills is a zero-dependency, cross-platform installer that equips your AI coding agents with cent-mem shared memory and intuitive /centmem slash command capabilities.


Prerequisites: Install centmem CLI

Before connecting your AI agents, ensure the centmem Go binary is installed and initialized on your machine.

1. Install centmem

Option A: Pre-built Binary (macOS & Linux) Download the latest release for your OS and architecture from GitHub Releases:

# Example for macOS (Apple Silicon):
curl -fsSL -o centmem https://github.com/aradenta-labs/cent-mem/releases/latest/download/centmem-darwin-arm64
chmod +x centmem
sudo mv centmem /usr/local/bin/

(Pre-built binaries available for darwin-arm64, darwin-amd64, linux-amd64, and linux-arm64.)

Option B: Install with Go (Go 1.22+)

go install -tags fts5 github.com/aradenta-labs/cent-mem/cmd/centmem@latest

2. Initialize centmem (Run once per machine)

centmem init

This creates the local database (~/.centmem/) and downloads the local ONNX embedding model (~100 MB).


Quickstart: Install Agent Skills

Run the installer directly from your project root:

npx @aradenta.labs/centmem-skills

What It Does

When you run npx @aradenta.labs/centmem-skills:

  1. Installs Detailed Skill Artifacts: Auto-discovers and installs SKILL.md, comprehensive references, workflow examples, and helper scripts into standard AI skill locations:

    • Project-Level Agents Skills (./.agents/skills/centmem)
    • User-Level Global Agents Skills (~/.agents/skills/centmem)
    • Claude Code (./.claude/skills/centmem, ~/.claude/skills/centmem)
    • Cursor (~/.cursor/rules/centmem)
    • Google Antigravity (~/.gemini/antigravity/skills/centmem)
    • OpenAI Codex (~/.codex/skills/centmem)
    • Trae (~/.trae/skills/centmem)
    • Hermes Agent (~/.hermes/skills/centmem)
    • DeepSeek Harness (~/.deepseek/skills/centmem)
    • Global Config (~/.config/skills/centmem)
  2. Automated Memory Loop Injection in AGENTS.md: Guarantees that AGENTS.md is updated (or created) in your project root, and injects into any existing rule files (CLAUDE.md, .cursorrules, .github/copilot-instructions.md) to establish the standard memory loop:

    • READ: Run centmem recall "<task context>" to load prior context.
    • DO: Execute the task.
    • UPDATE: Run centmem put or centmem set to persist decisions and learnings.
  3. Smart /centmem Slash Command Support: Registers routing instructions that allow you to interact with memory using simple prompts like /centmem review recent architectural decisions (triggers recall), /centmem remember we use PostgreSQL for this service (triggers put/set), or /centmem configure llm backend to ollama (triggers config get/set).


CLI Usage & Options

# Default installation
npx @aradenta.labs/centmem-skills

# Install with explicit repository source
npx @aradenta.labs/centmem-skills add https://github.com/aradenta-labs/cent-mem --skill centmem

# Preview targets and planned actions without touching disk
npx @aradenta.labs/centmem-skills --dry-run

# List detected instruction files and target directories
npx @aradenta.labs/centmem-skills --list

# Cleanly remove installed skill directories and injected instructions
npx @aradenta.labs/centmem-skills --uninstall

Options

| Option | Description | |---|---| | --global | Install globally to user-level harness directories (~/.claude/, ~/.cursor/, etc.) | | --project | Install locally to project-level harness directories (./.agents/, ./.claude/, etc.) | | --yes, -y | Skip interactive prompts and accept all detected defaults | | --skill <name> | Custom skill name (default: centmem) | | --dry-run | Simulate actions without modifying the filesystem | | --list | Display target install paths and detected instruction files | | --uninstall | Cleanly remove skill files and instruction blocks | | --cwd <path> | Override target working directory | | --home <path> | Override target home directory | | -h, --help | Show command help |


About cent-mem

cent-mem is a fast, local-first shared memory store for AI agents powered by SQLite, vector search, BM25 full-text search, and a built-in cognitive memory agent engine.