A Claude Code plugin marketplace for distributing plugins related to Odra — a Rust-based smart contract framework for Casper Network.
Streamlines smart contract development with the Odra framework. Gives Claude Code deep knowledge of Odra's APIs, patterns, and tooling so it can help you scaffold, build, and test Odra contracts more effectively.
Add the marketplace and install the plugin:
/plugin marketplace add odradev/odradev-plugins
/plugin install odra-plugin@odradev-plugins
To verify it's active:
/plugin list
Pull the latest version of the marketplace and its plugins:
/plugin marketplace update
The plugin ships with a .mcp.json that enables the Context7 MCP server for up-to-date library documentation lookups. The API key is read from an environment variable — set it before starting Claude Code:
export CONTEXT7_API_KEY=<your-key>Add this to your shell profile (e.g. ~/.zshrc) to make it permanent.
To make the plugin available automatically for everyone working on your Odra project, add this to .claude/settings.json in your repository:
{
"extraKnownMarketplaces": {
"odradev-plugins": {
"source": {
"source": "github",
"repo": "odradev/odradev-plugins"
}
}
}
"enabledPlugins": {
"odra-plugin@odradev-plugins": true
}
}Anyone who clones the repo and trusts the project folder will be prompted to install the plugin.
.claude-plugin/
marketplace.json # Marketplace catalog
plugins/
odra-plugin/ # The Odra development plugin
README.md
MIT