From 3ac91c0638e569837e680b5b80cb01880f0f2077 Mon Sep 17 00:00:00 2001 From: smartchoice Date: Thu, 2 Apr 2026 10:47:44 +0800 Subject: [PATCH] Add cc-inspect plugin Claude Code environment inspector that shows all installed skills, plugins, MCP servers, commands, and hooks in a browser dashboard. Scope-aware (user/project/local), zero dependencies. GitHub: https://github.com/howardpen9/cc-inspect --- README-zh.md | 1 + README.md | 1 + plugins/cc-inspect/commands/cc-inspect.md | 25 +++++++++++++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 plugins/cc-inspect/commands/cc-inspect.md diff --git a/README-zh.md b/README-zh.md index 2c2de0e..a919f83 100644 --- a/README-zh.md +++ b/README-zh.md @@ -56,6 +56,7 @@ ### 工作流编排 - [angelos-symbo](./plugins/angelos-symbo) +- [cc-inspect](./plugins/cc-inspect) - [ceo-quality-controller-agent](./plugins/ceo-quality-controller-agent) - [claude-desktop-extension](./plugins/claude-desktop-extension) - [lyra](./plugins/lyra) diff --git a/README.md b/README.md index e4de615..efddc5a 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ Install or disable them dynamically with the `/plugin` command — enabling you ### Workflow Orchestration - [angelos-symbo](./plugins/angelos-symbo) +- [cc-inspect](./plugins/cc-inspect) - [ceo-quality-controller-agent](./plugins/ceo-quality-controller-agent) - [claude-desktop-extension](./plugins/claude-desktop-extension) - [lyra](./plugins/lyra) diff --git a/plugins/cc-inspect/commands/cc-inspect.md b/plugins/cc-inspect/commands/cc-inspect.md new file mode 100644 index 0000000..38461fa --- /dev/null +++ b/plugins/cc-inspect/commands/cc-inspect.md @@ -0,0 +1,25 @@ +--- +allowed-tools: Bash(bash:*), Bash(python3:*), Bash(open:*) +description: Show all installed skills, plugins, MCP servers, commands, and hooks in a browser dashboard +--- + +## Your Task + +Inspect the current Claude Code environment and display a browser-based dashboard showing all installed components. + +The dashboard is scope-aware (user / project / local) and covers: +- **Skills** — installed slash-command skills +- **Plugins** — active Claude Code plugins +- **MCP Servers** — configured Model Context Protocol servers +- **Commands** — registered slash commands +- **Hooks** — configured lifecycle hooks + +### How It Works + +1. Scan `~/.claude/` and project-level `.claude/` directories +2. Generate a self-contained HTML dashboard (no external dependencies) +3. Open it in the default browser + +### Source + +GitHub: [howardpen9/cc-inspect](https://github.com/howardpen9/cc-inspect)