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

devmind

v1.1.2

Published

AI Memory Layer for development - Complete project context (codebase + database + memory)

Readme

DevMind

Deterministic context and memory layer for AI coding agents. Let Agent remember your design system, general context, and database.

Install

npm install -g devmind

Integrations

OpenClaw

devmind openclaw-plugin --force

Optional:

devmind openclaw-plugin --project --force

Default install target:

  • ~/.openclaw/skills/devmind/SKILL.md

Claude Code

devmind claude-plugin --force

This creates:

  • .claude-plugin/marketplace.json
  • .claude-plugin/skills/devmind/SKILL.md

Then install that local folder in Claude Code using your plugin installer flow.

Codex (CLI + App)

devmind codex-plugin --force

Optional:

# Also install project-local skill
devmind codex-plugin --project --force

# Skip legacy mirror paths
devmind codex-plugin --no-legacy --force

Default install targets:

  • ~/.agents/skills/devmind/SKILL.md
  • CODEX_HOME/skills/devmind/SKILL.md
  • ~/.codex/skills/devmind/SKILL.md

Quick Start

# 1) Design system policy first
devmind design-system --init

# 2) Build overall context
devmind generate --all

# 3) Validate freshness/recommendation
devmind status --json

You are ready when .devmind/AGENTS.md and .devmind/index.json exist.

CI and npm Publish

  • CI runs on pushes to main and pull requests via .github/workflows/ci.yml.
  • npm publishing runs via .github/workflows/publish-npm.yml on tags like v1.2.3 or manual dispatch.
  • Add repository secret NPM_TOKEN (npm automation token with publish permission).
  • Release by bumping package.json version, pushing commit, then pushing a matching tag:
git tag v1.1.2
git push origin v1.1.2

Canonical Flow

  1. Design system
  2. Overall context
  3. Database checks

Quick Command Guide

Context lifecycle

devmind generate --all
devmind scan
devmind status --json

DevMind reads .devmindignore (and .devmind/ignore if present) to exclude paths from scan/generate/status/analyze/audit/extract context workflows. devmind generate --all skips DB generation if no database config is detected.

Focused context

devmind context --focus src/features
devmind context --query runbook
devmind retrieve -q "auth middleware flow" --type architecture --json
devmind retrieve -q "ui animation jitter" --route ui --level 2 --state --json

Learning loop

devmind audit
devmind extract
devmind extract --apply
devmind autosave --source task-end

Database validation

devmind analyze
devmind validate --strict

Agent-First Runbook

# 1) Preflight
devmind status --json

# 2) If stale, run recommendedCommand

# 3) Execute with focused retrieval
devmind retrieve -q "<task query>" --json

# 4) Persist memory
devmind autosave --source task-end

Key Outputs

.devmind/
+-- AGENTS.md
+-- index.json
+-- design-system.json
+-- devmind-tools.json
+-- analysis/
|   +-- AUDIT_REPORT.md
|   +-- DESIGN_SYSTEM_AUDIT.md
|   +-- CODE_DB_MAPPING.md
+-- memory/
|   +-- LEARN.md
|   +-- checkpoints/
|   +-- SESSION_JOURNAL.md
+-- codebase/
+-- database/

License

Apache 2.0 (c) Nyan Lin Maung