Stats
Links
Categories
A plugin marketplace for AI tools and Claude Code extensions
npx claudepluginhub jimfm/tiki-marketplacePersistent memory for Claude Code powered by OpenViking sessions
A plugin marketplace registry for AI tools and Claude Code extensions.
tiki-marketplace is a git-based plugin registry that tracks available plugins and their metadata. Plugins can be discovered and added to Claude Code via commands like:
/plugin marketplace add ov-claude
.claude-plugin/marketplace.json - Plugin catalog and metadata.claude/ - Claude Code configurationTo add a plugin to this marketplace:
.claude-plugin/marketplace.json with:
name - Plugin identifiersource - Git URL and refdescription - Brief description (≤125 chars)version - Semantic versionstrict - Boolean flagExample:
{
"name": "plugin-name",
"source": {
"source": "url",
"url": "https://github.com/path/to/plugin",
"ref": "main"
},
"description": "What this plugin does",
"version": "0.1.0",
"strict": true
}
In Claude Code, first add this marketplace as a source, then add plugins from it:
/plugin marketplace add @jimfm/tiki-marketplace
/plugin add ov-claude
MIT