2026-02-26 16:32:59 -06:00
|
|
|
export const type = "openclaw";
|
|
|
|
|
export const label = "OpenClaw";
|
|
|
|
|
|
|
|
|
|
export const models: { id: string; label: string }[] = [];
|
|
|
|
|
|
|
|
|
|
export const agentConfigurationDoc = `# openclaw agent configuration
|
|
|
|
|
|
|
|
|
|
Adapter: openclaw
|
|
|
|
|
|
|
|
|
|
Use when:
|
2026-03-05 14:28:59 -06:00
|
|
|
- You run an OpenClaw agent remotely and wake it over HTTP.
|
|
|
|
|
- You want SSE-first execution so one Paperclip run captures live progress and completion.
|
2026-02-26 16:32:59 -06:00
|
|
|
|
|
|
|
|
Don't use when:
|
2026-03-04 16:48:54 -06:00
|
|
|
- You need local CLI execution inside Paperclip (use claude_local/codex_local/opencode_local/process).
|
2026-02-26 16:32:59 -06:00
|
|
|
- The OpenClaw endpoint is not reachable from the Paperclip server.
|
|
|
|
|
|
|
|
|
|
Core fields:
|
2026-03-05 14:28:59 -06:00
|
|
|
- url (string, required): OpenClaw endpoint URL
|
|
|
|
|
- streamTransport (string, optional): \`sse\` (default) or \`webhook\`
|
2026-02-26 16:32:59 -06:00
|
|
|
- method (string, optional): HTTP method, default POST
|
2026-03-05 14:28:59 -06:00
|
|
|
- headers (object, optional): extra HTTP headers for requests
|
2026-02-26 16:32:59 -06:00
|
|
|
- webhookAuthHeader (string, optional): Authorization header value if your endpoint requires auth
|
|
|
|
|
- payloadTemplate (object, optional): additional JSON payload fields merged into each wake payload
|
|
|
|
|
|
2026-03-05 14:28:59 -06:00
|
|
|
Session routing fields:
|
|
|
|
|
- sessionKeyStrategy (string, optional): \`fixed\` (default), \`issue\`, or \`run\`
|
|
|
|
|
- sessionKey (string, optional): fixed session key value when strategy is \`fixed\` (default \`paperclip\`)
|
|
|
|
|
|
2026-02-26 16:32:59 -06:00
|
|
|
Operational fields:
|
|
|
|
|
- timeoutSec (number, optional): request timeout in seconds (default 30)
|
|
|
|
|
`;
|