43 lines
2.1 KiB
TypeScript
43 lines
2.1 KiB
TypeScript
export const type = "openclaw_gateway";
|
|
export const label = "OpenClaw Gateway";
|
|
|
|
export const models: { id: string; label: string }[] = [];
|
|
|
|
export const agentConfigurationDoc = `# openclaw_gateway agent configuration
|
|
|
|
Adapter: openclaw_gateway
|
|
|
|
Use when:
|
|
- You want Paperclip to invoke OpenClaw over the Gateway WebSocket protocol.
|
|
- You want native gateway auth/connect semantics instead of HTTP /v1/responses or /hooks/*.
|
|
|
|
Don't use when:
|
|
- You only expose OpenClaw HTTP endpoints.
|
|
- Your deployment does not permit outbound WebSocket access from the Paperclip server.
|
|
|
|
Core fields:
|
|
- url (string, required): OpenClaw gateway WebSocket URL (ws:// or wss://)
|
|
- headers (object, optional): handshake headers; supports x-openclaw-token / x-openclaw-auth
|
|
- authToken (string, optional): shared gateway token override
|
|
- password (string, optional): gateway shared password, if configured
|
|
|
|
Gateway connect identity fields:
|
|
- clientId (string, optional): gateway client id (default gateway-client)
|
|
- clientMode (string, optional): gateway client mode (default backend)
|
|
- clientVersion (string, optional): client version string
|
|
- role (string, optional): gateway role (default operator)
|
|
- scopes (string[] | comma string, optional): gateway scopes (default ["operator.admin"])
|
|
- disableDeviceAuth (boolean, optional): disable signed device payload in connect params (default false)
|
|
|
|
Request behavior fields:
|
|
- payloadTemplate (object, optional): additional fields merged into gateway agent params
|
|
- timeoutSec (number, optional): adapter timeout in seconds (default 120)
|
|
- waitTimeoutMs (number, optional): agent.wait timeout override (default timeoutSec * 1000)
|
|
- autoPairOnFirstConnect (boolean, optional): on first "pairing required", attempt device.pair.list/device.pair.approve via shared auth, then retry once (default true)
|
|
- paperclipApiUrl (string, optional): absolute Paperclip base URL advertised in wake text
|
|
|
|
Session routing fields:
|
|
- sessionKeyStrategy (string, optional): issue (default), fixed, or run
|
|
- sessionKey (string, optional): fixed session key when strategy=fixed (default paperclip)
|
|
`;
|