vp-claude-code-marketplace
一个用于发现和获取 Claude Code 插件、技能与扩展的市场。
插件市场
Claude Code
插件
技能
扩展
自动化
命令行
⭐ 0⬇️ 0🏷️ main📦 2
vp-claude-code-marketplace-main.zip
174.9 KB下载
安装与使用说明
Codex
- 先下载 ZIP 包(例如:vp-claude-code-marketplace-main.zip)。
- 解压后放到 $CODEX_HOME/skills/ 目录下。
- 如果没有设置 $CODEX_HOME,通常可放到 ~/.codex/skills/。
- 确保目录内有 SKILL.md,然后重开会话即可使用。
源码目录预览
├── .claude │ └── settings.json ├── .claude-plugin │ └── marketplace.json ├── plugins │ ├── vp-checklist-runner │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ └── skills │ │ └── checklist-runner │ │ ├── references │ │ │ ├── checkbox-update-rules.md │ │ │ ├── classification-patterns.md │ │ │ └── verification-recipes.md │ │ └── SKILL.md │ ├── vp-cspell │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ └── skills │ │ └── cspell │ │ ├── references │ │ │ ├── config-bootstrapping.md │ │ │ └── decision-tree.md │ │ └── SKILL.md │ ├── vp-deps-shift │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ └── skills │ │ ├── deps-migrate │ │ │ ├── references │ │ │ │ ├── confidence-index.md │ │ │ │ ├── context7-integration.md │ │ │ │ ├── migration-patterns.md │ │ │ │ ├── package-managers.md │ │ │ │ └── repo-conventions.md │ │ │ └── SKILL.md │ │ └── deps-upgrade │ │ ├── references │ │ │ ├── confidence-index.md │ │ │ ├── context7-integration.md │ │ │ ├── deps-bot-handling.md │ │ │ ├── package-managers.md │ │ │ └── repo-conventions.md │ │ └── SKILL.md │ ├── vp-gitignore-builder │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ ├── scripts │ │ │ └── merge-gitignore.sh │ │ └── skills │ │ └── gitignore-builder │ │ ├── references │ │ │ └── examples.md │ │ └── SKILL.md │ ├── vp-gmaps-list │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ └── skills │ │ ├── gmaps-list │ │ │ └── SKILL.md │ │ └── gmaps-status-check │ │ └── SKILL.md │ ├── vp-guided-focus │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ └── skills │ │ └── guided-focus │ │ └── SKILL.md │ ├── vp-localsend │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ ├── scripts │ │ │ └── localsend.sh │ │ └── skills │ │ └── localsend │ │ └── SKILL.md │ ├── vp-macos-clean-uninstall │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ └── skills │ │ └── macos-clean-uninstall │ │ └── SKILL.md │ ├── vp-nyan-mode │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ └── skills │ │ └── nyan-mode │ │ └── SKILL.md │ ├── vp-pr-comment-resolver │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ └── skills │ │ └── pr-comment-resolver │ │ ├── references │ │ │ ├── reply-templates.md │ │ │ └── workflow.md │ │ └── SKILL.md │ ├── vp-prename │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ └── skills │ │ └── prename │ │ └── SKILL.md │ ├── vp-review-loop │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ └── skills │ │ ├── plan-review │ │ │ ├── references │ │ │ │ ├── confidence-index.md │ │ │ │ ├── loop-control.md │ │ │ │ ├── plan-review-passes.md │ │ │ │ └── pros-cons-analysis.md │ │ │ └── SKILL.md │ │ └── review-loop │ │ ├── references │ │ │ ├── loop-control.md │ │ │ └── review-passes.md │ │ └── SKILL.md │ ├── vp-skills │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ └── skills │ │ └── skills │ │ └── SKILL.md │ ├── vp-somafm │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ ├── scripts │ │ │ └── somafm.sh │ │ └── skills │ │ └── somafm │ │ └── SKILL.md │ ├── vp-stacked-pr-rebase │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ └── skills │ │ └── stacked-pr-rebase │ │ ├── references │ │ │ ├── conflict-resolution.md │ │ │ └── merge-strategies.md │ │ └── SKILL.md │ ├── vp-typescript-best-practices │ │ ├── .claude-plugin │ │ │ └── plugin.json │ │ └── skills │ │ └── typescript-best-practices │ │ ├── references │ │ │ ├── branded-types.md │ │ │ ├── code-style.md │ │ │ ├── setup.md │ │ │ ├── template-literals.md │ │ │ ├── type-patterns.md │ │ │ ├── type-testing.md │ │ │ └── union-exhaustive.md │ │ └── SKILL.md │ └── vp-wenyan-mode │ ├── .claude-plugin │ │ └── plugin.json │ └── skills │ └── wenyan-mode │ └── SKILL.md ├── templates │ ├── SKILL.md │ ├── marketplace-entry.json │ └── plugin.json ├── .gitignore ├── CLAUDE.md ├── LICENSE └── README.md
元数据
Slug: vp-claude-code-marketplace
作者: VdustR
协议: MIT
包大小: 174.9 KB
SHA256: 83afcd9445229d9d3ba4eb448caf50e20634c8ab7103b193ecf51dffcf985b07