Claudit banner
cfdtlee cfdtlee

Claudit

Development community

Description

The easiest way to orchestrate Claude Code agents — web dashboard for sessions, tasks, and scheduling

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

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:7433

Environment Variable Description
PORT Server port (default: 7433)
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"
    }
  }
}

Aft