Agent Skills
› rcarmo/piclaw
› remote-peer
remote-peer
GitHub用于向配对的远程 piclaw 节点发送签名提示、列出节点及管理待处理提议。支持 Ed25519 认证,提供列表、发送消息、查看及接受/拒绝提议等命令。
Trigger Scenarios
询问如何与远程代理通信
需要列出远程配对节点
管理来自远程节点的提议
Install
npx skills add rcarmo/piclaw --skill remote-peer -g -y
SKILL.md
Frontmatter
{
"name": "remote-peer",
"description": "Send prompts to paired remote piclaw peers, list peers, and manage incoming proposals (pending\/accept\/reject). Uses Ed25519 signing to authenticate requests over HTTP. Use when asked to message, query, or manage remote agents."
}
Remote peer
Send signed prompts to paired remote piclaw peers and manage incoming proposals.
Canonical implementation: runtime/skills/builtin/remote-peer/peer.ts
This workspace skill is a convenience pointer. The runtime ships the TypeScript source of truth, and list_scripts discovers it.
Usage
bun /workspace/piclaw/runtime/skills/builtin/remote-peer/peer.ts <command> [args]
Commands
| Command | Example |
|---|---|
list |
bun peer.ts list |
send <peer> <prompt> |
bun peer.ts send product-manager "What is your current task?" |
pending |
bun peer.ts pending |
decide <id> accept|reject |
bun peer.ts decide abc123 accept |
decide-all accept|reject |
bun peer.ts decide-all reject |
See the packaged runtime skill at runtime/skills/builtin/remote-peer/SKILL.md for full documentation.
Version History
- 5fa0ce5 Current 2026-07-25 10:25


