Distribution repository for prebuilt, signed KelvinClaw plugin packages.
This repo is intentionally focused on publish/install artifacts, not plugin source code:
index.json(plugin index, schemav1)packages/<plugin_id>/<version>/<plugin_id>-<version>.tar.gztrusted_publishers.kelvin.json(publisher trust policy)
Use this guide first:
All plugins are signed with Ed25519 keys. AgenticHighway first-party releases are signed via CI. Community publishers use the PEM-based signing flow documented in the guides above.
For local community development, use the public authoring flow in the
kelvinclaw repo first. Unsigned local plugins are supported there and Kelvin
warns on install instead of blocking them. This repo is only for published
package artifacts and trust/index metadata.
Repo automation:
.github/workflows/validate-repository.yml.github/workflows/publish-first-party-package.ymlscripts/validate-repository.shscripts/refresh-first-party-package.sh
Templates:
- templates/plugin.tool.wasm_tool_v1.json
- templates/plugin.model.wasm_model_v1.json
- templates/index.entry.v1.json
This repo does not duplicate SDK/runtime specification docs. Canonical references:
- KelvinClaw: Plugin Install Flow
- KelvinClaw: Model Plugin ABI
- KelvinClaw: Plugin Index Schema
- KelvinClaw: Trusted Executive + WASM
Set KELVIN_PLUGIN_INDEX_URL to this repo's raw index URL, then use kpm from a KelvinClaw release bundle:
export KELVIN_PLUGIN_INDEX_URL=https://raw.githubusercontent.com/agentichighway/kelvinclaw-plugins/main/index.json
./kpm search # list available plugins
./kpm install kelvin.anthropic # install a plugin
./kpm install kelvin.cli # install a specific plugin
./kpm list # list installed plugins
./kpm update # update all installed pluginsThe underlying install script (share/scripts/plugin-index-install.sh) is also available directly in KelvinClaw release bundles for scripted or CI use.