用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/rcarmo/piclaw-addons --skill yolochat命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | yolochat |
| description | Send unauthenticated best-effort messages to another reachable Piclaw instance over HTTP. |
| distribution | public |
Use the yolochat-send.ts script to send messages to other Pi instances over HTTP.
<chat-name>@<hostname>:<port>
Examples:
web:default@192.168.1.50:3000web:lab@pi.local:3000The sender splits at the first @; the chat portion therefore cannot contain @.
Messages use a UUCP/SMTP-like text envelope:
From: web:default@10.0.0.5:3000
To: web:default@10.0.0.10:3000
Hello from my instance!
The envelope is posted as the content field of a standard piclaw agent message POST.
Pipe the message body into the script via stdin:
echo "Hello!" | bun ../../scripts/yolochat-send.ts web:default@192.168.1.50:3000
Multiline messages:
cat <<'EOF' | bun ../../scripts/yolochat-send.ts web:default@192.168.1.50:3000
First line
Second line
Third line
EOF
Incoming yolochat messages arrive as normal user messages in the target chat timeline. They contain the envelope headers (From: / To:) followed by the message body.
Parse the From: header to know who sent it and to reply back.
Extract the From: address from the received envelope and use it as the target for your reply:
echo "Got your message, thanks!" | bun ../../scripts/yolochat-send.ts web:default@10.0.0.5:3000
/pair — zero security guarantees