remote-peer

remote-peer is a skill for Claude Code, Codex from rcarmo/piclaw-addons. It costs 28 tokens per session (974 once invoked), scanned A, original, MIT.

A peer-management tool for Piclaw, used to pair trusted peers, inspect message delivery, and manage signed inbox messages. Ordinary conversations and file delivery use the chat tool.

In plain words
What is it for?
Use it to pair peers, check delivery status, find an approved remote address, send queued messages or files, and retry uncertain deliveries safely.
Why use it?
It separates operator tasks such as trust management from routine remote messaging and provides a durable way to deliver messages.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to pair peers, check delivery status, find an approved remote address, send queued messages or files, and retry uncertain deliveries safely.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rcarmo/piclaw-addons/remote-peer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add rcarmo/piclaw-addons --skill remote-peer
Clone the repo
git clone --depth 1 https://github.com/rcarmo/piclaw-addons

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for remote-peer

README.md
[![agentmods](https://agentmods.dev/badge/skills/rcarmo/piclaw-addons/remote-peer.svg)](https://agentmods.dev/skills/rcarmo/piclaw-addons/remote-peer)
Your own site
<a href="https://agentmods.dev/skills/rcarmo/piclaw-addons/remote-peer"><img src="https://agentmods.dev/badge/skills/rcarmo/piclaw-addons/remote-peer.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 974 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00028 $0.00974
Opus 5 $0.00014 $0.00487
Sonnet 5 $0.00006 $0.00195
Haiku 4.5 $0.00003 $0.00097

Measured 8d ago against content hash 4963eaf8a056, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

remote-peer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

addons/remote-peer/skills/remote-peer/SKILL.md · 65 lines

How it starts

The opening of the file, as written. The whole thing — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Remote Peer

Operators use remote_peer for pairing and trust management. Agents should use the built-in chat tool for ordinary remote conversations and file delivery.

Agent chat workflow

  1. Call chat({ action: "directory" }) when you do not already have an exact remote address.
  2. Use only an address and mode returned by that directory, such as lab!inbox or lab!@research.
  3. Send text with content and files with files or media_ids. Never paste binary or base64 into message text.
  4. Use a stable idempotency_key when retrying an uncertain delivery.
  5. Reply through the opaque peer!reply.<capability> address supplied on the inbound message. Do not inspect or rewrite it.
chat({ action: "directory" })
chat({ target_address: "lab!inbox", content: "Please review this.", mode: "queue", idempotency_key: "review-2026-08-29" })
chat({ target_address: "lab!@research", content: "Data attached.", files: ["exports/data.csv"], mode: "queue", idempotency_key: "data-2026-08-29" })

File transfer is receiver-controlled. The directory reports whether it is enabled and the exact count/size limits.

Operator management

remote_peer({ action: "status" })
remote_peer({ action: "identity" })
remote_peer({ action: "list_peers" })
remote_peer({ action: "pending" })
remote_peer({ action: "pair_request", url: "https://peer.example" })
remote_peer({ action: "accept_pair", request_id: "pair_..." })
remote_peer({ action: "deny_pair", request_id: "pair_..." })
remote_peer({ action: "ping", peer: "peer-alias" })
remote_peer({ action: "set_alias", peer: "peer-alias", alias: "new-alias" })
remote_peer({ action: "roster" })
remote_peer({ action: "roster", peer: "peer-alias" })
remote_peer({ action: "advertise_agent", local_agent: "research", alias: "research", modes: ["queue", "auto"] })
remote_peer({ action: "set_policy", peer: "peer-alias", scope: "named-agents", mode_ceiling: "queue-auto", agents: ["research"] })
remote_peer({ action: "message_status", message_id: "rmsg_..." })
remote_peer({ action: "message_failures" })
remote_peer({ action: "revoke", peer: "peer-alias" })

Read the full file on GitHub · 65 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 65 lines · 28 tokens per session scan A 4963eaf8a056

Subscribe to this mod's changes

remote-peer is a skill published in the GitHub repository rcarmo/piclaw-addons (23 stars, last pushed 2d ago), licensed MIT. It adds 28 tokens to every session and 974 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

pi

Use when needing a minimal, extensible terminal AI coding agent harness in TypeScript with plugin architecture. Pi: minimalist terminal AI coding agent emphasizing simplicity and composability.

znlgis/opengis-skills · 35 tokens

OpenShell + Pi: build an isolated coding-agent sandbox

Use when the user wants to install, configure, migrate, harden, inspect, or troubleshoot a Pi coding agent running in NVIDIA OpenShell, especially with rootless Podman, deny-by-default networking, hidden credentials, persistent state, or A2A communication. Do not use for ordinary containerization that does not involve…

howdeploy/deploychan_mcp · 80 tokens

aatmf-t10-confidentiality-breach

AATMF T10 — Integrity & Confidentiality Breach. System prompt extraction, training-data extraction, model-weight leakage, private-key recovery.

PurpleAILAB/Decepticon · 39 tokens

ensembl-database

Query Ensembl genome database REST API for 250+ species. Gene lookups, sequence retrieval, variant analysis, comparative genomics, orthologs, VEP predictions, for genomic research.

synthetic-sciences/openscience · 45 tokens

memory

Use when the user asks to remember, recall, forget, update, search, or inspect durable OpenSquilla memory, including profile facts in USER.md and long-term notes in MEMORY.md or memory//.md.

opensquilla/opensquilla · 44 tokens

lazarus-group

Adversary-emulation profile for Lazarus Group (G0032, aka Hidden Cobra / Diamond Sleet / Labyrinth Chollima), a North Korean RGB-linked actor conducting espionage, destructive, and financially motivated operations.

PurpleAILAB/Decepticon · 51 tokens