MaritimemaritimeDocumentation
Dashboard

OpenClaw Guide

Deploy OpenClaw agents on Maritime.

Configuration

maritime.toml
[agent]
name = "my-claw-agent"
framework = "openclaw"
tier = "smart"

[triggers]
webhook = true

Entry Point

agent.py
from openclaw import Agent

def run(payload: dict) -> dict:
    agent = Agent(
        name="my-claw-agent",
        capabilities=["web_search", "code_execution"],
    )

    result = agent.execute(payload.get("task", ""))

    return {"result": str(result)}