Pod AI Connector for Openclaw

Openclaw Skills for Pod AI lets you securely inspect schemas and run Pod AI actions through the oo CLI without handling raw tokens.

oomol
v1.0.0
Jul 30, 2026
0
262
0

Install & Download

1. ClawHub CLI

The fastest way to install a skill directly from the registry.

npx clawhub@latest install oo-pod-ai

2. Manual Installation

Copy the skill folder to one of these locations

Global
~/.openclaw/skills/
Workspace
<project>/skills/

Priority: Workspace > Local > Bundled

3. Prompt Installation

Copy this prompt to OpenClaw to install it automatically.

Help me install oo-pod-ai using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).

Prefer to download?

Get the raw skill files in a ZIP archive.

What is Pod AI Connector?

Pod AI Connector is an Openclaw Skills workflow for operating Pod AI through an OOMOL-connected account using the oo CLI. It is designed to help agents safely read, create, and update Pod AI data by fetching live action schemas first and then executing validated payloads against the pod_ai connector.

The key value of this Openclaw Skills package is that OOMOL injects credentials server-side, so you never need to manage API keys directly. This makes Pod AI automation more reliable, auditable, and agent-friendly, while still preserving safety controls for write and destructive actions.

Pod AI Connector Use Cases

  • Trigger Pod AI operations from an AI coding agent without calling the API directly.
  • Inspect the live contract for a Pod AI action before constructing a request payload.
  • Create an outbound phone call with a Pod AI voice agent.
  • Run read or list actions safely when no write or destructive state change is involved.
  • Recover from setup issues like missing CLI installation, expired credentials, or disconnected app connections.
  • Handle billing or credit interruptions before retrying failed Pod AI runs.

How Pod AI Connector Works

  1. Verify the target Pod AI action and determine whether it is a read, write, or destructive operation.
  2. Inspect the authoritative input/output schema with oo connector schema for the selected action.
  3. Build a JSON payload that matches the live schema exactly.
  4. Run the action through the pod_ai connector with oo connector run, passing the payload via --data.
  5. Read the result from the returned JSON, including data and meta.executionId for traceability.
  6. If a command fails due to setup issues, perform the matching first-time setup step only once, such as installing oo, signing in, reconnecting Pod AI, or resolving billing credit errors.

Pod AI Connector Setup

  1. Install the oo CLI if it is missing.
curl -fsSL https://cli.oomol.com/install.sh | bash

For Windows PowerShell:

irm https://cli.oomol.com/install.ps1 | iex
  1. Sign in to your OOMOL account if authentication is required.
oo auth login
  1. Connect Pod AI in the OOMOL console if the connector is missing, expired, or lacks scope.
https://console.oomol.com/app-connections?provider=pod_ai
  1. Confirm billing credit if requests fail with HTTP 402 or OOMOL_INSUFFICIENT_CREDIT.
https://console.oomol.com/billing/token-recharge
  1. Before running any action, inspect the live schema.
oo connector schema "pod_ai" --action "<action_name>"
  1. Execute the action with a validated JSON payload.
oo connector run "pod_ai" --action "<action_name>" --data '{"key":"value"}' --json

Pod AI Connector Data Schema & Taxonomy

Pod AI is organized around connector actions, each with its own live input/output contract that must be inspected before execution. Openclaw Skills treats the schema as the source of truth for payload construction.

Core execution data

Item Purpose Source
action_name Identifies the Pod AI operation to run User intent / connector action list
--data JSON payload sent to the action CLI input or @path/to/file.json
data Returned response payload oo connector run output
meta.executionId Execution trace identifier Response metadata

Action taxonomy

Tag Meaning Behavior
read Untagged actions Safe to run directly
[write] Mutates Pod AI state Confirm exact payload and effect first
[destructive] Overwrites or removes data Require explicit approval before running

File and payload conventions

  • Payloads may be passed inline as a JSON string.
  • Payloads may also be loaded from a JSON file using --data @path/to/file.json.
  • If --data is omitted, an empty object {} is sent.
  • Always fetch the current schema before building a request, because the live connector contract is authoritative.

Supported action inventory

  • create_outbound_call — create an outbound phone call with a Pod AI voice agent. [write]

Pod AI Connector Advanced Features

  • Live schema introspection with oo connector schema for contract-first execution.
  • Secure server-side credential injection through OOMOL, eliminating direct token handling.
  • Support for JSON payloads inline or from files, making Openclaw Skills easy to automate in scripts and agents.
  • Execution metadata via meta.executionId for traceability and debugging.
  • Safety-aware tagging for read, write, and destructive actions to reduce accidental state changes.
  • Recovery paths for CLI installation issues, authentication failures, connector expiration, scope problems, and billing interruptions.

SKILL.md


Loading

Related Openclaw Skills

METADATA

Github Stars: 0
forks: 0

Featured*