:: Terminal ::
CLDKIT CLI
Search, verify, and install curated skills directly from your terminal.
No install required. Runs with npx.
Quick Start
THREE STEPS
SEARCH
Find skills scored for security, maintainability, and usability.
REVIEW
Check scores, security flags, and when-to-use guidance.
INSTALL
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
info<slug>View scores, flags, and usage notes
install<slug>Install with security verification
verify<command>Security-check any install command
try<slug>Open skill in browser Playground
recommendPersonalized suggestions
listShow installed skills
syncSync activity from web
loginLink CLI to your web account
logoutUnlink from web account
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
--jsonRaw JSON output for piping to jq or scripts
--quietSuppress non-essential output
--verboseShow API request details and timing
--no-colorDisable colors for CI environments
$ npx cldkit search testing --json | jq '.skills[0].slug'
"playwright-testing"