:: Terminal ::

CLDKIT CLI

Search, verify, and install curated skills directly from your terminal.

$npx cldkit

No install required. Runs with npx.

Quick Start

THREE STEPS

01

SEARCH

$ npx cldkit search testing

Find skills scored for security, maintainability, and usability.

02

REVIEW

$ npx cldkit info playwright-testing

Check scores, security flags, and when-to-use guidance.

03

INSTALL

$ npx cldkit install playwright-testing

Every install is score-checked against our review database before you run it.

Interactive

NO COMMANDS TO REMEMBER

Run npx cldkit without arguments to enter interactive mode. Navigate with arrow keys, select with Enter.

$ npx cldkit

 

cldkit v0.3.1

Curated skills for Claude Code

 

? What would you like to do?

> Search for skills

Browse recommendations

Install a skill

Verify a command

My installed skills

Login / Account

Exit

SEARCH & BROWSE

Search by keyword, browse recommendations based on your installed skills and bookmarks.

SECURITY FIRST

Every install is pre-checked. MCP servers auto-configure to Claude Code settings instead of executing directly.

ONE-SHOT OR INTERACTIVE

Use commands directly (cldkit search X) or enter the menu. Your choice.

Reference

ALL COMMANDS

search<query>

Find skills by keyword

$ cldkit search database
info<slug>

View scores, flags, and usage notes

$ cldkit info playwright-testing
install<slug>

Install with security verification

$ cldkit install playwright-testing
verify<command>

Security-check any install command

$ cldkit verify "npx -y @scope/pkg"
try<slug>

Open skill in browser Playground

$ cldkit try playwright-testing
recommend

Personalized suggestions

$ cldkit recommend
list

Show installed skills

$ cldkit list
sync

Sync activity from web

$ cldkit sync --watch
login

Link CLI to your web account

$ cldkit login
logout

Unlink from web account

$ cldkit logout

MCP Servers

AUTO-CONFIGURE

MCP servers are long-running processes. Instead of executing them directly, CldKit generates the correct configuration and writes it to your Claude Code settings.

$ npx cldkit install github-mcp

 

github-mcp npx -y @modelcontextprotocol/server-github

Score: 88/100 Grade: A+

 

This is an MCP server. Add it to your Claude Code settings:

 

~/.claude/settings.json → mcpServers:

 

"github-mcp": {

"command": "npx",

"args": ["-y", "@modelcontextprotocol/server-github"]

}

 

? Auto-configure Claude Code settings? Yes

Added to ~/.claude/settings.json

Options

GLOBAL FLAGS

--json

Raw JSON output for piping to jq or scripts

--quiet

Suppress non-essential output

--verbose

Show API request details and timing

--no-color

Disable colors for CI environments

$ npx cldkit search testing --json | jq '.skills[0].slug'

"playwright-testing"

GET STARTED

$npx cldkit