hello-openclaw-plugin
v1.0.1
Published
Minimal OpenClaw plugin that registers a sample agent tool
Downloads
45
Readme
hello-openclaw-plugin
Minimal OpenClaw Gateway plugin: one agent tool (hello_openclaw_ping) so you can confirm install on your VM.
Layout
openclaw.plugin.json— manifest (id:hello-openclaw) + bundled skill pathskills/hello-openclaw-verify/SKILL.md— tells the agent to callhello_openclaw_pingto verify installsrc/index.ts—definePluginEntry+registerToolpackage.json—openclaw.extensionspoints at./src/index.ts
Install on your VM (after pushing to GitHub)
OpenClaw resolves npm-style specs (openclaw plugins install <spec>). It does not install straight from a raw Git URL the way npm install git+... might.
Option A — publish to npm (or private registry), then:
openclaw plugins install hello-openclaw-plugin
# or, if you use a scoped name:
# openclaw plugins install @your-scope/hello-openclaw-plugin
openclaw gateway restartOption B — clone the repo on the VM and install from the folder:
git clone <your-repo-url> && cd <repo>/hello-openclaw-plugin
npm install
openclaw plugins install -l .
openclaw gateway restartOption C — tarball / zip (see CLI plugins):
openclaw plugins install ./hello-openclaw-plugin.tgzVerify
openclaw plugins list
openclaw plugins info hello-openclawIn an agent session, ask something like: “Use the hello-openclaw verification steps and confirm the plugin is installed.” The bundled skill instructs the model to call hello_openclaw_ping; a successful reply includes hello-openclaw OK, pluginId=hello-openclaw, and version=….
Notes
The tool is registered as a normal (required) agent tool. If your gateway uses strict tool allowlists, ensure hello_openclaw_ping is allowed. See agent tools.
