ironmesh-status

ironmesh-status is a skill for Claude Code from WizTheAgent/IronMesh. It costs 53 tokens per session (886 once invoked), scanned A, original, MIT.

A health check for an IronMesh network, showing whether its connected nodes are reachable and how messages are moving. IronMesh is a network for exchanging messages between peers.

In plain words
What is it for?
Use it to check uptime, online peers, message delivery timing, retry counts, response times, and traffic before sending data or after restarting the service.
Why use it?
It gives a quick view of network availability and congestion before you rely on a peer or investigate a problem.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to check uptime, online peers, message delivery timing, retry counts, response times, and traffic before sending data or after restarting the service.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wiztheagent/ironmesh/ironmesh-status
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 WizTheAgent/IronMesh --skill ironmesh-status
Clone the repo
git clone --depth 1 https://github.com/WizTheAgent/IronMesh

Made for: Claude Code.

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 ironmesh-status

README.md
[![agentmods](https://agentmods.dev/badge/skills/wiztheagent/ironmesh/ironmesh-status/github.svg)](https://agentmods.dev/skills/wiztheagent/ironmesh/ironmesh-status)
Your own site
<a href="https://agentmods.dev/skills/wiztheagent/ironmesh/ironmesh-status"><img src="https://agentmods.dev/badge/skills/wiztheagent/ironmesh/ironmesh-status/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ironmesh-status

Your own site · 80×15
<a href="https://agentmods.dev/skills/wiztheagent/ironmesh/ironmesh-status"><img src="https://agentmods.dev/badge/skills/wiztheagent/ironmesh/ironmesh-status.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 886 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Supply Chain · line 24
    Remote code is downloaded and executed. This bypasses code review and could introduce malicious code.
    Fix: Avoid downloading and executing remote scripts. Use trusted packages from PyPI/npm. If remote fetch is required, verify checksums and use HTTPS.
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.00053 $0.00886
Opus 5 $0.00026 $0.00443
Sonnet 5 $0.00011 $0.00177
Haiku 4.5 $0.00005 $0.00089

Measured 11d ago against content hash 38ea4d861a2f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

ironmesh-status scanned grade A with 1 finding 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 11d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sS "http://127.0.0.1:${IRONMESH_GUI_PORT}/api/mesh_stats?token=${IRONMESH_GUI_TOKEN}" \
skills/ironmesh/ironmesh-status/SKILL.md · 73 lines

How it starts

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

IronMesh status

Query the local daemon's /api/mesh_stats endpoint and summarize the mesh's health in one screen.

When to use this

  • User asks for mesh health ("status", "is ironmesh up", "peers online")
  • Before attempting ironmesh-send to a specific peer — verify they're online
  • As a sanity check after restarting the daemon

How to run

: "${IRONMESH_GUI_PORT:=8766}"
: "${IRONMESH_GUI_TOKEN:?set IRONMESH_GUI_TOKEN from the startup log}"

curl -sS "http://127.0.0.1:${IRONMESH_GUI_PORT}/api/mesh_stats?token=${IRONMESH_GUI_TOKEN}" \
  | python3 -c '
import json, sys, datetime
d = json.load(sys.stdin)
print(f"Node: {d[\"name\"]} ({d[\"node_id\"][:12]}...)")
print(f"Uptime: {int(d[\"uptime_seconds\"])}s")
print(f"Peers: {d[\"active_peers\"]}/{d[\"total_peers\"]} online")
lt = d["message_lifetime"]
if lt["count"] > 0:
    print(f"Lifetime (n={lt[\"count\"]}): p50={lt[\"p50\"]*1000:.1f}ms  p90={lt[\"p90\"]*1000:.1f}ms  p99={lt[\"p99\"]*1000:.1f}ms")
else:
    print("Lifetime: no samples yet")
print()
print(f"{\"peer\":<16} {\"status\":<9} {\"rtt\":>8} {\"retries\":>8}  {\"bytes s/r\":<20}")
for p in d["peers"]:
    nid = (p["name"] or p["node_id"])[:16]
    online = "online" if p["online"] else "offline"
    rtt = f"{p[\"rtt_ms\"]:.1f}ms" if p["rtt_ms"] is not None else "-"
    retries = p["retries_total"]
    bs = p["bytes_sent_total"]
    br = p["bytes_received_total"]
    print(f"{nid:<16} {online:<9} {rtt:>8} {retries:>8}  {bs:>9}/{br:<9}")
'

Interpreting

  • 0 online peers → either you're the only node, or dial is failing. Check the daemon log for mDNS tie-breaker / TLS connection failed lines.
  • retries_total grows on a peer → intermittent link. Check ironmesh-audit for PEER_DROPPED_LONG events.
  • Lifetime p99 > 1s → mesh is congested or a peer is slow to respond. Check per-peer RTT to pinpoint.
  • No lifetime samples → no application traffic yet; PING/PONG doesn't count. Send a real MSG through the mesh to populate.

Read the full file on GitHub · 73 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. 11d ago First seen · 73 lines · 53 tokens per session scan A 38ea4d861a2f

Subscribe to this mod's changes

ironmesh-status is a skill published in the GitHub repository WizTheAgent/IronMesh (22 stars, last pushed today), licensed MIT. It adds 53 tokens to every session and 886 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

draw-image

Generate an image from a text prompt using an OpenAI-compatible image generation API (gpt-image-1-mini or compatible). The image is uploaded to the gofile.io public file sharing service and ONLY the public download page URL is returned. Trigger when user asks to draw, paint, generate, or create an image.

ai-sns/ai-sns · 67 tokens

design-taste-frontend

Use for visual design direction on greenfield, user-facing surfaces — marketing and landing pages, generated apps, portfolio-style or standalone pages. NOT for routine Archestra platform UI work (dashboards, data tables, settings, forms, existing components) — use archestra-dev-frontend for that. Upstream intent…

archestra-ai/archestra · 0 tokens

managing-archestra-releases

Runs rolling beta releases, stable patches, and complete stable-line cutovers. Use when backporting fixes, cutting or retiring release branches, configuring release protections, testing artifacts, recovering failed runs, or approving releases.

archestra-ai/archestra · 51 tokens

archestra-dev-rust-napi

Use when editing Rust in this repo — the NAPI crates under platform/archestra-rs (app-runtime, image, and sandbox core/-rs crate pairs plus napi-loader, with their generated TypeScript bindings) or the standalone ai-labs Rust workspace (core/runner/cli/analyzer/dashboard) — including Rust build/test checks.

archestra-ai/archestra · 76 tokens

archestra-dev-testing

Use when deciding whether a change needs a test and at which level — unit, backend route-level integration, MSW-backed frontend integration, or e2e — or when reviewing tests for the "fluff test" anti-pattern. Start here before archestra-dev-backend-tests or archestra-dev-e2e.

archestra-ai/archestra · 68 tokens

migrate-to-archestra

Migrate an existing agentic PoC/pilot (Claude Code project files, MCP configs, hooks, local tools, openclaw config, or similar hand-rolled setup artifacts) into an Archestra instance. Use when the user wants to move, port, or convert an existing agentic setup into an Archestra pilot.

archestra-ai/archestra · 73 tokens