Public marketplace from Datons hosting reference plugins for Claude Code. Acts as both a working scaffold and a teaching tool for building your own plugins.
| Plugin | Slash commands | What it does |
|---|---|---|
demo |
/demo:hello |
Minimal example: one skill that greets the user. Used as a reference for the marketplace + plugin + skill structure. |
/plugin marketplace add https://github.com/datons/claude-code-marketplace.git
/plugin install demo@datons
Updates: /plugin marketplace update datons && /plugin update demo@datons.
If you want to experiment with the plugin locally without registering the marketplace, clone the repo and load it directly:
git clone https://github.com/datons/claude-code-marketplace.git
CLAUDE_CONFIG_DIR=/tmp/claude-demo claude --plugin-dir ./claude-code-marketplace/demoCLAUDE_CONFIG_DIR isolates the session from your personal Claude configuration, so you get a clean preview of what an end user would see.
claude-code-marketplace/
├── .claude-plugin/marketplace.json marketplace index
├── README.md you are here
├── CONTRIBUTING.md how to build plugins on this scaffold
├── LICENSE MIT
└── demo/ the demo plugin
├── .claude-plugin/plugin.json
└── skills/hello/SKILL.md
See CONTRIBUTING.md for the full developer workflow: local setup, isolated dev sessions, adding skills, branching, and release.
If you want to build your own plugin from this scaffold, the easiest path is to fork the repo, rename demo/ to your plugin's name, and update the marketplace.json entry.
MIT — use, fork, adapt freely.