claudeers.
// MCP Servers

skill-manager

Zero-dependency CLI to scan, recommend, deduplicate, audit, and visualize Claude Code / Codex skills and MCP servers.

// MCP Servers[ cli ][ api ][ web ][ claude ]#claude#ai-tools#aide#audit#claude-code#cli#codex#codex-cli#mcp-serversMIT$open-sourceupdated 26 days ago
Actively maintained
100/100
last commit 5 days ago
last release 23 days ago
releases 4
open issues 5
// star history+4 this week

Install with your AI

Paste into Claude Code, Cursor, or any agent — it reads the repo and wires the tool into your project.

Install and set up skill-manager (git-clone project) into my current project.
Found on https://claudeers.com/skill-manager
Repo: https://github.com/GrubbyLee/skill-manager
Homepage/docs: https://grubbylee.github.io/skill-manager/
Detected install method: git-clone → git clone https://github.com/GrubbyLee/skill-manager
Category: mcp-servers. Platforms: cli, api, web.
Read the repo's README for exact setup and env vars, then install it and wire it into my project.

Claudeers Health Verdict:
active; community-verified: false. Confirm the source before running anything.
// or clone
git clone https://github.com/GrubbyLee/skill-manager

// compatibility

Platformscli, api, web
Operating systems
AI compatibilityclaude
LicenseMIT
Pricingopen-source
LanguageJavaScript

skill-manager (skm)

English | 简体中文

A zero-dependency CLI to scan, recommend, deduplicate, audit, and visualize Claude Code / Codex skills and MCP servers.

When you keep adding skills to Claude Code or Codex, the local setup can become hard to reason about: duplicated skills, shared symlinks, unused tools, unclear names, and MCP servers that keep consuming context. skm turns that local toolbox into something you can inspect, search, compare, and clean up safely.

If skm helps you understand your local skill setup, a GitHub Star helps other AIDE users find the project.

Animated preview of the skm project tour

Live preview · Click to play the complete English tour with voiceover and controls.

30-Second Start

git clone https://github.com/GrubbyLee/skill-manager.git
cd skill-manager
node scripts/install.mjs

skm scan
skm
skm ask "convert a web page to Markdown"
skm report --format html --output skm-report.html
skm graph --format html --output skill-graph.html

This is a source install. The install script runs npm link inside the cloned repository so the skm command becomes available on your machine. It also installs the bundled skill-navigator bridge skill into ~/.claude/skills/ and ~/.codex/skills/, so Claude Code and Codex can call your local skm command when you ask which skill to use. It does not install aide-skill-manager from the npm registry.

No npm package install is advertised yet. The package name aide-skill-manager is reserved, but the current recommended installation path is git clone plus node scripts/install.mjs.

CLI output supports language selection:

skm scan --lang en
SKM_LANG=zh-CN skm doctor

What It Solves

QuestionCommandWhat you get
How many skills and MCP servers are installed?skm scanCounts, categories, install sources, context estimate
Is my local AIDE setup healthy?skmHealth score, zombie skills, duplicate installs, idle MCP, session size
Which skill should I use for this task?skm ask "task"Best match, reasons, alternatives
Which skills are duplicated?skm dupesSame name, same content, same category, text similarity
Which skills were never really used?skm auditReal usage frequency from Claude Code / Codex sessions
How are skills related?skm graph --format htmlFilterable, draggable, single-file knowledge graph
What are the risky items?skm risksPrioritized risk list and conservative suggestions
Can I share one local overview?skm report --format htmlSingle-file overview with health, risks, usage, sessions, graph summary
Where did my session logs grow?skm sessionsWorkspace-level session log size and dry-run cleanup plan
Can my AIDE call skm directly?Ask in AIDE after installationThe auto-installed skill-navigator bridge skill calls local skm for you

Command Cheatsheet

CommandPurpose
skm / skm statusOne-screen health overview
skm doctorRead-only environment diagnostics
skm risksRisk report without changing AIDE data
skm reportOne-page overview report
skm scanScan skills and MCP servers, rebuild catalog
skm list / skm list --mcpList skills or MCP servers
skm search <keyword>Search by name, category, and description
skm recommend <task>Ranked skill recommendations
skm ask <task>Q&A-style skill recommendation
skm graphExport the skill knowledge graph
skm dupesDetect duplicates and similar skills
skm auditAudit real usage frequency
skm sessionsInspect session log distribution
skm sessions --cleanClean session logs with confirmation
skm disable / skm enableSoft-disable or restore skills / MCP servers

Detailed command manual: docs/usage.en.md.

Bundled bridge skill: skill-navigator is installed automatically for Claude Code and Codex to call local skm; it is not a CLI command.

Features

  • Scans Claude Code and Codex CLI skills / MCP servers
  • Detects shared symlinks, duplicate physical copies, and same-content copies
  • Classifies skills with local rules
  • Recommends skills from natural-language task descriptions
  • Audits real usage from session logs
  • Finds zombie skills and idle Claude-side MCP servers
  • Exports JSON, Mermaid, and single-file HTML knowledge graphs
  • Exports single-file HTML overview reports
  • Uses zero third-party npm dependencies
  • Runs on Node.js >= 18

Skill Recommendation

If you know what you want to do but do not remember which skill fits:

skm ask "convert a web page to Markdown"
skm recommend "create image cards for Xiaohongshu" --top 5
skm recommend "markdown to html" --why

By default, recommendations run locally. No external model is called, and no directory information is uploaded. The ranking combines skill name, category, description, task intent, conversion direction, usage history, recency, and whether the skill is available in both Claude Code and Codex.

Recommendation changes are checked against a public 40-case Chinese/English regression benchmark. Run npm run benchmark:recommend; see the recommendation guide for metrics and limitations.

You can explicitly ask a local AIDE CLI to help judge the short candidate list:

skm recommend "create a knowledge graph" --advisor codex --why
skm recommend "summarize meeting notes" --advisor claude

Advisor mode sends only a compact candidate list. It does not send real skill paths, config paths, MCP env values, API keys, passwords, private keys, or session log bodies.

Knowledge Graph

skm graph --format html --output skill-graph.html

The HTML graph is a zero-dependency single file. Open it in a browser and filter relationships from the left panel; the graph only shows nodes involved in the selected relationships. Nodes are draggable, which helps when you have many installed skills.

skm skill knowledge graph

Current relationship types include same family, same category, duplicate, alternative, workflow, reverse conversion, shared platform, and uses MCP. Details are in docs/graph.md.

Overview Report

skm report --format html --output skm-report.html

The report puts health score, risks, usage, context cost, session logs, graph summary, and next commands on one local HTML page. Details are in docs/report.en.md.

Visual Story

Too many toolsScan and label
Too many toolsScan and label
Knowledge graphSafe cleanup
Knowledge graphSafe cleanup

Safe Troubleshooting Workflow

skm doctor
skm scan
skm
skm risks
skm report --format html --output skm-report.html
skm dupes
skm audit
skm list --mcp
skm sessions
skm sessions --clean --days 30 --keep 3 --dry-run

Start with read-only commands. Refresh facts first, then inspect health, risks, duplicates, usage, MCP servers, and session logs. Use dry-run before any cleanup.

Safety Boundaries

Most commands are read-only for Claude Code and Codex data. Some commands may update skm's own cache under ~/.skill-manager, but they do not modify your Claude/Codex configs, skills, MCP servers, or session logs. The explicit install script is the exception: it links skm locally and installs the bundled bridge skill into your user skill directories.

Inside the CLI, only three actions can modify AIDE files:

ActionWhat changesSafeguards
sessions --cleanDeletes session log filesRequires retention policy; prints plan first; interactive confirmation or --yes; never deletes sessions active within 24 hours; aggregates usage stats before deletion
disable/enable <skill>Renames skill directoriesReversible, no deletion; plugin skills are refused
disable/enable --mcpEdits ~/.claude.json / config.tomlAutomatic backups; confirmation required; restore never overwrites manually recreated config

More details: docs/safety.md.

Use Inside AIDE

node scripts/install.mjs installs skill-navigator by default:

~/.claude/skills/skill-navigator
~/.codex/skills/skill-navigator

This thin skill is the bridge between your AIDE coding assistant and skill-manager: when you ask "which skill should I use for this task?", the assistant should call the local skm command instead of manually scanning directories. Re-run node scripts/install.mjs after pulling updates to refresh the bridge skill.

Documentation

DocumentContent
README.zh-CN.mdChinese README
docs/usage.en.md / docs/usage.mdFull command manual
docs/recommend.en.md / docs/recommend.mdRecommendation logic and advisor mode
docs/graph.en.md / docs/graph.mdKnowledge graph relationships and HTML interactions
docs/report.en.md / docs/report.mdHTML overview report
docs/safety.en.md / docs/safety.mdSafety boundaries and data notes
docs/roadmap.en.md / docs/roadmap.mdRoadmap
CONTRIBUTING.en.md / CONTRIBUTING.mdContribution guide
SECURITY.mdSecurity policy and sensitive data reporting notes
CODE_OF_CONDUCT.mdCommunity behavior expectations

Language and Platform Support

macOS / Windows: validated on demand through the manually triggered GitHub Actions workflow. Linux: validated locally by the maintainer with the same read-only build/test commands.

npm run check
npm test
npm pack --dry-run --registry=https://registry.npmmirror.com

skm help, argument validation, doctor, scan, status, risks, report, list, search, recommend, ask, graph, dupes, audit, sessions, disable, enable, and the local install script support English and Simplified Chinese output.

Use --lang en, --lang zh-CN, or SKM_LANG=en. JSON field names stay stable.

Manual validation entry: GitHub Actions / macOS / Windows CI.

Roadmap

  • More real-world skm scan / skm recommend samples
  • Better clustering and layout for large knowledge graphs
  • More AIDE adapters, such as Cursor and Gemini CLI
  • Per-server MCP tool schema token measurement

Full roadmap: docs/roadmap.en.md.

Community

If skm helped you understand your local skill setup, a GitHub Star helps more users find it. You can also:

License

MIT

// faq

What is skill-manager?

Zero-dependency CLI to scan, recommend, deduplicate, audit, and visualize Claude Code / Codex skills and MCP servers.. It is open-source on GitHub.

Is skill-manager free to use?

skill-manager is open-source under the MIT license, so it is free to use.

What category does skill-manager belong to?

skill-manager is listed under mcp-servers in the Claudeers registry of Claude-compatible tools.

3 views
20 stars
unclaimed
updated 26 days ago

// embed badge

skill-manager on Claudeers
[![Claudeers](https://claudeers.com/api/badge/skill-manager.svg)](https://claudeers.com/skill-manager)

// retro hit counter

skill-manager hit counter
[![Hits](https://claudeers.com/api/counter/skill-manager.svg)](https://claudeers.com/skill-manager)

// reviews

// guestbook

0/500

// related in MCP Servers

🔓

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete…

// mcp-serversf/HTML167,135NOASSERTION[ claude ]
🔓

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io

// mcp-serversfarion1231/Rust127,274MIT[ claude ]
🔓

An open-source AI agent that brings the power of Gemini directly into your terminal.

// mcp-serversgoogle-gemini/TypeScript106,524Apache-2.0[ claude ]
🔓

🪨 why use many token when few token do trick — Claude Code skill that cuts 65% of tokens by talking like caveman

// mcp-serversJuliusBrussee/JavaScript100,343MIT[ claude ]
→ see how skill-manager connects across the ecosystem