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

claudit

v0.1.12

Published

A web dashboard for managing Claude Code sessions, cron tasks, and todos

Downloads

506

Readme

   ██████╗██╗      █████╗ ██╗   ██╗██████╗ ██╗████████╗
  ██╔════╝██║     ██╔══██╗██║   ██║██╔══██╗██║╚══██╔══╝
  ██║     ██║     ███████║██║   ██║██║  ██║██║   ██║
  ██║     ██║     ██╔══██║██║   ██║██║  ██║██║   ██║
  ╚██████╗███████╗██║  ██║╚██████╔╝██████╔╝██║   ██║
   ╚═════╝╚══════╝╚═╝  ╚═╝ ╚═════╝ ╚═════╝ ╚═╝   ╚═╝

The simplest Claude Code orchestrator — manage agents, sessions, tasks, and cron jobs from a clean web UI.

Install

npm install -g claudit

The MCP server is automatically registered with Claude Code during installation.

Prerequisites:

  • Claude Code CLI installed and authenticated
  • Node.js 18+
  • C++ build tools for native modules:
    • macOS: xcode-select --install
    • Linux: sudo apt install build-essential python3

Usage

claudit          # Start the dashboard
claudit --help   # Show help and MCP setup info
claudit -v       # Show version

Open http://localhost:3001

| Environment Variable | Description | |---|---| | PORT | Server port (default: 3001) | | NODE_ENV | Set to development for dev mode |

Features

  • Session Management — View, search, archive, and batch-delete Claude Code sessions. Multi-select with Cmd/Ctrl+Click and Shift+Click.
  • Cron Tasks — Schedule recurring Claude Code tasks with cron expressions.
  • Todos — Create, organize, and track todos with groups and priorities.
  • MCP Integration — Let Claude Code manage your todos directly via the built-in MCP server.

MCP Server

Claudit ships a built-in MCP server (claudit-mcp) that lets Claude Code manage your todos directly. It is automatically registered during npm install -g claudit.

Manual Setup

If auto-registration didn't work (e.g. Claude Code wasn't installed yet):

claude mcp add claudit claudit-mcp

Or edit ~/.claude/settings.json:

{
  "mcpServers": {
    "claudit": {
      "command": "claudit-mcp"
    }
  }
}

After setup, restart Claude Code. You can then ask Claude to "list my todos", "create a high-priority todo", etc.

Available Tools

| Tool | Description | |------|-------------| | list_todos | List todos, filter by status, priority, or group | | get_todo | Get full details of a todo by ID | | create_todo | Create a todo with title, description, priority, and group | | update_todo | Update fields, mark complete, or move between groups | | delete_todo | Permanently delete a todo by ID |

Data Storage

All data is stored in a SQLite database at ~/.claudit/claudit.db (WAL mode for concurrent access).

Notes

  • Resuming a session that is already in use by another Claude Code instance will hang — pick an inactive session
  • Slash commands (/mcp, /help, etc.) are interactive-mode-only and not supported in pipe mode