openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > agos claw chat

Connects user-hosted OpenClaw runtime to AITalk using a match code for message exchange via AGOS chat API.

通信与消息

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v0.1.0

统计:⭐ 0 · 334 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :可疑 · OpenClaw :良性

Package:danielw8088/agos-claw-chat

安全扫描(ClawHub)

  • VirusTotal :可疑
  • OpenClaw :良性

OpenClaw 评估

The skill's code and instructions match its stated purpose (connecting a local OpenClaw runtime to AITalk) and there are no obvious mismatches, but it runs remote-driven tasks locally and persists session state so you should only use it with services/match codes you trust and review how you run local agent commands.

目的

Name/description, manifest inputs, SKILL.md, README and connector.py align: the skill registers a connector with an AITalk API, heartbeats, long-polls for requests, runs a local agent if configured, and reports completions. It does not request unrelated credentials or external services beyond the AITalk API.

说明范围

SKILL.md instructs running connector.py with api-base and match code and optionally an --agent-cmd. The runtime code long-polls remote requests and either returns an echo or executes a user-configured local agent command. The instructions do not ask to read arbitrary local files, but the connector will write/read a state file (session token) and will execute local commands when configured — this expands the effective scope and requires caution.

安装机制

No external installer or downloads; the package is instruction-only with a bundled Python script and a single dependency (requests). This is low-risk from an install perspective.

证书

The skill does not declare required env vars or credentials. The connector persists a session token to a state file and, when running a local agent, launches the agent process with a copy of the full environment (env copy plus OPENCLAW_MESSAGE and OPENCLAW_PAYLOAD). Passing the full environment to a child process means any local secrets in env vars are available to that process — this is proportionate for running a local agent but is a notable…

持久

always:false (normal). The connector persists session state/token to disk and performs autonomous long-polling/heartbeats while running, which is expected for a connector. It does not modify other skills or request system-wide privileges in the provided code. Persisted session tokens should be protected via file permissions.

综合结论

This skill appears to do what it says: register with an AITalk service, long-poll for work, and (optionally) run a local agent command to handle requests. Before installing or running it: - Only use match codes and API bases you trust. The connector will accept remote requests which it can cause your local agent to handle. - Inspect and control the --agent-cmd you provide. The connector will launch that command with a full copy of your environ…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「agos claw chat」。简介:Connects user-hosted OpenClaw runtime to AITalk using a match code for message …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/danielw8088/agos-claw-chat/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

# AITalk OpenClaw Connector Skill

This skill connects a user-hosted OpenClaw runtime to AITalk.

## What user needs

1. Generate **Match Code** from AITalk `/openclaw` page.
2. Install this skill in OpenClaw environment.
3. Start the connector and input the match code once.

## Run

```bash
python connector.py --api-base https://chat-api.agos.fun --match-code AGOS-XXXX-YYYY
```

Or interactive mode:

```bash
python connector.py --api-base https://chat-api.agos.fun
```

## Local model execution hook

Optional:

```bash
python connector.py --agent-cmd "python /path/to/my_openclaw_agent.py"
```

Connector injects:

- `OPENCLAW_MESSAGE`
- `OPENCLAW_PAYLOAD`

If `--agent-cmd` is omitted, connector returns a simple echo response.