You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: add ci validation gaps and improve docs after full review
add semver format validation for versions in both marketplace and plugin
entries, cross-validate marketplace name against plugin.json name, expand
skill-creator readme with usage examples, add "what are plugins" section
to main readme, enhance pr template with testing checklist, fix
switch-provider category to ai-tools, clean up add-command template
Copy file name to clipboardExpand all lines: README.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,17 @@
5
5
6
6
Community marketplace of plugins for [Claude Code](https://docs.anthropic.com/en/docs/claude-code). Claude Code plugins extend your CLI with new skills, slash commands, hooks, and agents. This marketplace is a single place where the community shares and discovers plugins — all installable with one command.
7
7
8
+
## What Are Plugins?
9
+
10
+
Claude Code plugins let you add new capabilities without modifying Claude Code itself:
11
+
12
+
-**Slash commands** — custom actions triggered by `/<plugin>:<command>` (e.g., `/commit:commit`)
13
+
-**Skills** — ambient knowledge that activates automatically based on context
14
+
-**Agents** — specialized sub-agents for deep, multi-file analysis
15
+
-**Hooks** — automated scripts that run at lifecycle events (before/after tool use, session start, etc.)
16
+
17
+
Each plugin is a folder with a manifest and one or more of these components. No programming required — skills and commands are written in Markdown.
18
+
8
19
## Installation
9
20
10
21
Add the marketplace:
@@ -23,7 +34,7 @@ Install any plugin:
23
34
24
35
| Plugin | Version | Category | Description |
25
36
|--------|---------|----------|-------------|
26
-
|[switch-provider](plugins/switch-provider/)| 1.0.0 |utilities| Switch Claude Code between AI providers (Anthropic, Z.AI, Kimi, MiniMax) |
37
+
|[switch-provider](plugins/switch-provider/)| 1.0.0 |ai-tools| Switch Claude Code between AI providers (Anthropic, Z.AI, Kimi, MiniMax) |
27
38
|[plugin-development](plugins/plugin-development/)| 1.3.0 | developer-tools | Scaffold, validate, and submit Claude Code plugins |
Copy file name to clipboardExpand all lines: plugins/plugin-development/README.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,12 +60,10 @@ Once installed, you can scaffold a new plugin:
60
60
This scaffolds:
61
61
-`.claude-plugin/plugin.json` - Plugin manifest
62
62
-`commands/` - Slash commands directory
63
-
-`agents/` - Sub-agents directory
64
-
-`skills/` - Skills directory
65
-
-`hooks/hooks.json` - Hook configuration
66
-
-`scripts/` - Validation scripts
67
63
-`README.md` - Documentation template
68
64
65
+
Additional directories (`skills/`, `agents/`, `hooks/`, `scripts/`) are created on demand when you add components via `/plugin-development:add-skill`, `/plugin-development:add-agent`, or `/plugin-development:add-hook`.
0 commit comments