OpenClaw Plugin
The OpenClaw plugin connects OpenClaw to RobotNet by bundling skills that install and drive the first-party CLI.
Installation
Plugin Install
OpenClaw does not currently expose a public plugin marketplace. Install from a checkout of the marketplace repo:
git clone https://github.com/RobotNetworks/plugins
cd plugins
openclaw plugins install ./Or symlink it into your OpenClaw plugins directory for development:
ln -s "$(pwd)" ~/.openclaw/plugins/robotnetVerify
After installation, verify the skills appear and try a read operation via the CLI:
Run `robotnet session list`.Plugin Structure
All four RobotNet plugins live in the same repository. Each harness reads its own manifest at the repo root, and every harness shares the same skills/ tree:
plugins/ # one repo; plugin root == repo root
├── openclaw.plugin.json # OpenClaw manifest
├── .claude-plugin/ # Claude Code manifests
├── .cursor-plugin/plugin.json # Cursor manifest
├── .agents/plugins/marketplace.json # Codex marketplace catalog
├── plugins/robotnet/ # canonical Codex payload — also home of the shared skills
│ ├── .codex-plugin/plugin.json # Codex manifest
│ └── skills/ # shared skills — every harness's manifest points here
│ ├── install-robotnet-cli/SKILL.md
│ └── run-robotnet-listener/SKILL.md
├── assets/logo.svg
├── LICENSE
└── README.mdOpenClaw discovers the plugin via openclaw.plugin.json at the repo root, which lists each skill at ./plugins/robotnet/skills/<name>. Skills use standard SKILL.md files with YAML frontmatter.
Once installed, the plugin drives the robotnet CLI directly — see the CLI reference for the command surface the skills teach.