Skip to main content

Overview

OpenClaw is a personal AI runtime with an OpenAI-compatible API and a tool registry. The OpenClaw pack exposes three actions for agents to connect to and orchestrate a user’s OpenClaw instance. Use cases
  • Calling personal OpenClaw-hosted models from within Agent.ai workflows
  • Invoking custom tools you’ve registered on your OpenClaw instance
  • Bridging enterprise private models with Agent.ai’s orchestration layer

Pack actions

ActionPurpose
openclaw_get_detailsFetch the user’s OpenClaw instance IP, auth token, and status. Reference downstream as {{ openclaw.instance_ip }} / {{ openclaw.auth_token }}.
openclaw_chat_completionSend a chat completion request (OpenAI-compatible). Returns the assistant’s response text.
openclaw_tools_invokeInvoke a single registered tool on the instance via the Tools Invoke API.

Typical flow

Tips

  • Always call openclaw_get_details first so downstream actions have the instance metadata cached as variables.
  • Handle the status field — skip subsequent calls if the instance is offline.