convex-realtime
Installation
SKILL.md
Convex Realtime
Convex is available at http://{{CONVEX_HOST}}:{{CONVEX_PORT}} within the Docker network.
Query Data
curl -X POST "http://{{CONVEX_HOST}}:{{CONVEX_PORT}}/api/query" \
-H "Content-Type: application/json" \
-d '{"path": "messages:list", "args": {}}'
Mutate Data
curl -X POST "http://{{CONVEX_HOST}}:{{CONVEX_PORT}}/api/mutation" \
-H "Content-Type: application/json" \
-d '{"path": "messages:send", "args": {"body": "Hello from OpenClaw"}}'