@seashail/openclaw-plugin
v0.1.0
Published
OpenClaw plugin that exposes Seashail tools as native OpenClaw agent tools (local-only).
Maintainers
Readme
Seashail OpenClaw Plugin
An OpenClaw plugin that exposes Seashail tools as native OpenClaw agent tools by spawning a local seashail mcp subprocess.
See the main README for full project documentation, or the OpenClaw setup guide for step-by-step instructions.
Install
Via Seashail CLI (Recommended)
seashail openclaw installThis installs the plugin, enables it, configures sandbox permissions, creates a default wallet if needed, and restarts the OpenClaw gateway.
Testnet mode:
seashail openclaw install --network testnetVia OpenClaw CLI
openclaw plugins install @seashail/seashail
openclaw plugins enable seashail
openclaw gateway restartDev Install
seashail openclaw install --link --plugin ./packages/openclaw-seashail-pluginHow It Works
- The plugin spawns
seashail mcpas a subprocess using MCP stdio JSON-RPC transport (one JSON object per line) - All Seashail MCP tools become available as native OpenClaw agent tools
- The plugin connects to the singleton
seashail daemonfor shared state (keystore, passphrase session, policy)
Interactive Confirmation
Some Seashail actions require interactive confirmation and/or passphrase unlock:
- Confirmation prompts (policy-gated write operations) can be completed by calling the
seashail_resumetool - Passphrase prompts should generally be handled via an env var (see
passphraseEnvVar), not by pasting secrets into chat
CLI Flags
The seashail openclaw install command supports:
| Flag | Default | Description |
|------|---------|-------------|
| --network | mainnet | Session-only network mode |
| --plugin | Auto-detected | Plugin path or npm spec |
| --link | false | Link local plugin path instead of copying |
| --restart-gateway | true | Restart OpenClaw gateway after install |
| --enable-in-sandbox | true | Allow plugin in sandboxed agent mode |
| --onboard-wallet | true | Create default wallet if none exists |
See the CLI Reference for full details.
Related
- Main README — Full project documentation
- OpenClaw Setup Guide — Full OpenClaw integration guide
- Agent Config Templates — Static config templates for other agents
- Security Model — How policy gating works
- E2E Tests — End-to-end tests including OpenClaw integration tests
