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

@datacore-one/cli

v1.2.0

Published

CLI for setting up and managing Datacore installations

Readme

@datacore-one/cli

Set up and manage your AI second brain.

Why

Your AI assistant forgets everything between conversations. Your coding patterns, your domain knowledge, your project decisions -- all gone the moment you close the chat.

Datacore changes that. It gives AI assistants persistent memory, structured knowledge, and the ability to learn from every interaction. The CLI sets up the full system in minutes: knowledge base, task management, AI agents, and an MCP server that makes your AI smarter over time.

Everything lives in ~/Data as plain text files. No databases, no vendor lock-in.

Quick Start

curl -fsSL https://datacore.one/install | bash

This handles everything: installs Node.js if needed, installs the CLI, and starts the setup wizard.

Or if you already have Node.js 20+:

npm install -g @datacore-one/cli
datacore init

What Gets Installed

After datacore init, you have:

~/Data/
├── .datacore/           # System config, modules, agents
├── .mcp.json            # MCP server config (auto-configured)
├── 0-personal/          # Your personal space
│   ├── org/             # GTD task management
│   ├── notes/           # Journals, pages, knowledge
│   └── 3-knowledge/     # Zettelkasten knowledge base
├── CLAUDE.md            # AI context (auto-generated)
└── sync                 # Repo sync script

The MCP server (@datacore-one/mcp) is installed and configured for both Claude Desktop and Claude Code, giving your AI structured tools for memory, learning, and knowledge capture.

Commands

Setup

| Command | Description | |---------|-------------| | datacore init | Interactive setup wizard | | datacore update | Pull repos, install MCP, rebuild context | | datacore doctor | Check dependencies, MCP config, system health | | datacore ingest <path> | Import files with AI processing |

Admin

| Command | Description | |---------|-------------| | datacore space create | Create a new team or personal space | | datacore space list | List all spaces | | datacore module install <name> | Install a module | | datacore module list | List installed modules | | datacore module update | Update all modules | | datacore config show | Show current settings | | datacore snapshot create | Create installation snapshot | | datacore snapshot restore | Restore from snapshot |

Automation

| Command | Description | |---------|-------------| | datacore sync | Git sync all repos | | datacore today | Generate daily briefing | | datacore tomorrow | End-of-day wrap-up | | datacore nightshift trigger | Execute queued AI tasks | | datacore cron install | Set up scheduled tasks |

After Setup

cd ~/Data && claude

This starts Claude Code with full access to your second brain. The MCP server provides structured tools for:

  • Learning -- create engrams that persist across conversations
  • Journaling -- capture daily entries and knowledge notes
  • Searching -- find anything in your knowledge base
  • Task management -- GTD workflow with AI delegation

Architecture

The CLI handles setup and admin: installing dependencies, configuring repos, managing modules, and setting up the MCP server.

Daily work happens through Claude Code, which uses the MCP server and Datacore agents for semantic tasks like file routing, knowledge extraction, and task processing.

Development

bun install
bun run dev          # Run in development
bun test             # Run tests (76 tests)
bun run build        # Build for distribution

License

MIT