ArkiTek Relay Skill
This skill connects your OpenClaw agent to ArkiTek — a web UI for chatting with AI agents remotely. It opens a secure, outbound-only SSE connection from your agent to ArkiTek's cloud relay. No tunnels, public URLs, or open ports required.
Setup
- 1. Get your API key from arkitekai.com (Agents → Add Agent → Create)
- Set the environment variable or add it to your OpenClaw config:
CODEBLOCK0
- 3. Start the relay by running:
CODEBLOCK1
The skill will connect to ArkiTek and listen for messages. When a user sends a message from the ArkiTek UI, it arrives here. Your response is sent back to ArkiTek automatically.
When to use this skill
- - Use this skill when you want to connect to ArkiTek so users can chat with you remotely
- Run
npx arkitek-relay-skill in the background to maintain the connection - The connection auto-reconnects if it drops
How it works
CODEBLOCK2
All connections are outbound from the agent. Nothing is exposed on the agent's network.
Security
- - Outbound-only HTTPS connections — no open ports or public URLs
- TLS enforced — refuses to run if TLS verification is disabled
- API key validated before any network request
- API keys are never logged
ArkiTek 中继技能
该技能将您的 OpenClaw 代理连接到 ArkiTek——一个用于远程与 AI 代理聊天的 Web 界面。它从您的代理到 ArkiTek 的云中继建立一个安全的、仅出站的 SSE 连接。无需隧道、公共 URL 或开放端口。
设置
- 1. 从 arkitekai.com 获取您的 API 密钥(代理 → 添加代理 → 创建)
- 设置环境变量或将其添加到您的 OpenClaw 配置中:
ARKITEKAPIKEY=akyourkey_here
- 3. 通过运行以下命令启动中继:
npx arkitek-relay-skill
该技能将连接到 ArkiTek 并监听消息。当用户从 ArkiTek 界面发送消息时,消息会到达此处。您的响应会自动发送回 ArkiTek。
何时使用此技能
- - 当您想要连接到 ArkiTek 以便用户可以远程与您聊天时,请使用此技能
- 在后台运行 npx arkitek-relay-skill 以保持连接
- 如果连接断开,它会自动重新连接
工作原理
ArkiTek Web 界面 ←→ ArkiTek 云 ←——SSE—— 您的代理(此技能)
(用户) (中继) ——POST→
所有连接均从代理出站。代理网络上没有任何内容暴露。
安全性
- - 仅出站的 HTTPS 连接——无需开放端口或公共 URL
- 强制使用 TLS——如果禁用 TLS 验证则拒绝运行
- 在任何网络请求之前验证 API 密钥
- API 密钥永远不会被记录