Summary
A practical Chinese-language guide to Claude Code’s Plugin system, arguing that most users only use 10% of Claude Code’s potential by ignoring plugins. The article reframes Claude Code as an open platform (like iOS/Android) rather than a closed tool, where plugins are apps and marketplaces are app stores. It covers what a plugin is, its 5 core components, how to install from the official marketplace in 3 steps, and the file structure that distinguishes plugins from standalone skills.
一篇中文實戰指南,論述大多數用戶因忽略插件系統而只發揮了 Claude Code 10% 的潛力。文章將 Claude Code 重新定框為開放平台(類似 iOS/Android)而非封閉工具,插件是 App,市場是應用商店。涵蓋插件定義、5 個核心組件、從官方市場三步安裝,以及區分插件與獨立 Skill 的文件結構。
Key Points
- A plugin bundles 5 components: Commands (slash commands), Skills (context-triggered), Hooks (event-driven automation), Sub-Agents (domain specialists), MCP Servers (external integrations)
- Key advantage over standalone Skills: plugins are easier to transfer and hand off in team settings
- Install from official marketplace:
/plugin marketplace add anthropics/claude-code→/pluginDiscover → select → install - Direct install format:
/plugin install your-plugin@your-org - Verify: type
/in input and check if plugin commands appear - Plugin file structure requires
.claude-plugin/plugin.jsonmanifest; containscommands/,agents/,skills/,hooks/,mcp/directories
Insights
- The platform/app metaphor is the most useful frame: just as phones ship with basics (calls, SMS) but become powerful through apps, Claude Code ships with coding ability but plugins add domain-specific superpowers
- The team handoff advantage is underappreciated: Skills are personal; plugins with their manifest and structure are portable artifacts that can be versioned, distributed, and installed by others without manual setup
- This article is a consumer-level guide; the deeper value is becoming a plugin creator — the author explicitly positions this as the journey from “consumer to creator”
- The 5-component structure maps directly onto the conceptual taxonomy in the “你不知道的 Claude Code” article: plugins are just a packaging layer over the same primitives (Skills, Hooks, Subagents, MCP)
- The Notion example (checking if Notion commands appear after install) is a concrete verification pattern worth remembering: command visibility is the simplest install health check
Connections
- Claude Code
- Plugins
- Skills
- Hooks
- MCP
- 你不知道的 Claude Code:架构、治理与工程实践
- Lessons from Building Claude Code How We Use Skills
Raw Excerpt
要把 Claude Code 看作一个像 iOS 或 Android 一样的开放平台。Plugin 就是这个平台的”APP”。市场 (Marketplace),就是下载这些APP的”应用商店”。