Internal Claude Code plugin marketplace for building and packaging plugins for the KROS plugin store (the business app marketplace).
| Plugin | Stack | Description |
|---|---|---|
| plugin-builder | Any | Interactive workflow that builds a valid, upload-ready plugin package (manifest.json + .zip) for the KROS plugin store — validates every field against the Framework contract and can validate/deploy against a running app. |
From within Claude Code (interactive mode):
# 1. Add Kros marketplace (one-time)
/plugin marketplace add Kros-sk/Kros.Plugins
# 2. Install the plugin
/plugin install plugin-builder@kros-plugins
Or from the terminal (CLI):
# 1. Add Kros marketplace (one-time)
claude plugin marketplace add Kros-sk/Kros.Plugins
# 2. Install the plugin
claude plugin install plugin-builder@kros-pluginsYou can also browse available plugins interactively with /plugin → Discover tab.
To pick up new versions after a plugin is updated here: /plugin marketplace update kros-plugins.
.claude-plugin/marketplace.json # Marketplace index
plugins/
plugin-builder/ # KROS plugin store package builder
skills/ plugin-builder (SKILL.md + manifest/package rules reference + New-PluginPackage.ps1)
- Create
plugins/<my-plugin>/.claude-plugin/plugin.json(name,description,author). - Put the plugin's content next to it — a skill in
plugins/<my-plugin>/skills/<skill-name>/SKILL.md, commands incommands/, agents inagents/. - Add an entry to the
pluginsarray in.claude-plugin/marketplace.jsonwithsourcepointing at./plugins/<my-plugin>. - Commit and push. Users refresh with
/plugin marketplace update kros-plugins.