The Aspid marketplace for Claude Code plugins.
A shared marketplace that bundles two kinds of plugins:
- General-purpose Claude Code plugins — skills, commands, agents and hooks that make day-to-day work in Claude Code faster, regardless of project.
- Aspid package plugins — companion plugins for individual packages from the Aspid family (e.g.
Aspid.FastTools), teaching Claude Code about each package's conventions and APIs.
Plugins live in plugins/<name>/; the marketplace manifest is at .claude-plugin/marketplace.json.
Add this repository as a marketplace in Claude Code:
/plugin marketplace add VPDPersonal/Aspid.Claude.PluginsThen install a specific plugin:
/plugin install aspid-fasttools@aspid-claude-pluginsOr browse the marketplace UI:
/pluginThe marketplace hosts both general-purpose Claude Code plugins and plugins tied to specific Aspid packages. The list grows over time.
| Plugin | Target package | What it does |
|---|---|---|
aspid-fasttools |
Aspid.FastTools | Claude Code skills for the Aspid.FastTools Unity package: scaffolding IId structs and [UniqueId] fields (aspid-id-struct), inserting this.Marker() profiler call sites (aspid-profiler-marker), and building editor or runtime UI with the fluent VisualElement extensions (aspid-visual-element-fluent). |
None yet — coming soon.
Aspid.Claude.Plugins/
├── .claude-plugin/
│ └── marketplace.json # marketplace manifest (name, description, plugin list)
├── plugins/
│ ├── aspid-fasttools/ # plugin for the Aspid.FastTools package
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json # plugin metadata
│ │ ├── skills/ # aspid-id-struct, aspid-profiler-marker, aspid-visual-element-fluent
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ └── README_RU.md
│ └── <other-plugin>/ # plugin for another Aspid package or general-purpose Claude Code tooling
├── LICENSE
├── README.md
└── README_RU.md
- Create
plugins/<name>/.claude-plugin/plugin.jsonwithname,description,author. - Add
skills/<skill>/SKILL.md,commands/<cmd>.md,agents/<agent>.md, orhooks/as needed. - Add a
README.mdin the plugin directory. - Register the plugin in
.claude-plugin/marketplace.jsonunder thepluginsarray — set"source": "./plugins/<name>"for in-repo plugins.
MIT — see LICENSE.