Source profileQuality 91/100Review permissions

Codename-11/hermes-relay/skills/devops/hermes-relay-status/SKILL.md

hermes-relay-status

Snapshot the current state of all Hermes-Relay clients — paired Android phone (bridge permissions, telemetry, safety rails) AND/OR connected desktop CLI (advertised tools, workspace context). Reads /bridge/status and /desktop/_ping loopback endpoints. Use when the user asks "is the phone connected?", "is my desktop reachable?", "can you see my files?", "do you have access to my computer?", or any question about hermes-relay capabilities right now. The relay is the bridge the user installed preci

Source repository stars
157
Declared platforms
0
Static risk flags
3
Last source update
2026-08-25
Source checked
2026-08-25

Decision brief

What it does: where it fits

Hermes-Relay is two clients: a native Android app for phone control, AND a desktop CLI (hermes-relay) that gives the agent access to the user's local Windows / macOS / Linux machine. Either or both may be connected at any time. This skill prints a snapshot of whichever surfaces…

Best for

  • User runs the /hermes-relay-status slash command.
  • User asks to "check my phone", "is my phone connected?", "what's the battery on my phone?", "can the agent see my phone?", or anything equivalent.
  • Before attempting a sequence of bridge tool calls (androidtap, androidtype, androidscreenshot, etc.) to confirm the phone is reachable and has the permissions those calls need.

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/Codename-11/hermes-relay --skill "skills/devops/hermes-relay-status"
Safe inspection promptEditorial

Inspect the Agent Skill "hermes-relay-status" from https://github.com/Codename-11/hermes-relay/blob/08545ed32db07609c14730a7fc02cdd758f12434/skills/devops/hermes-relay-status/SKILL.md at commit 08545ed32db07609c14730a7fc02cdd758f12434. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Procedure

    1. Run the status command — via the terminal tool:

    Run the status command — via the terminal tool:Useful flags (pass only when needed, not by default):--json — emit raw JSON instead of the pretty text block. Use when piping to jq or when the agent wants to inspect specific fields programmatically.
  2. 02

    Verification

    After running the skill, confirm:

    Exit code matches what the agent reports. If the agent says "connected" but exit code was 2, something is wrong with the rendering layer.Permissions the user thinks are granted actually show granted. If the user says "I granted accessibility yesterday" but status shows not granted, the accessibility service was killed by the OS and needs to be re-enabled…lastseensecondsago is under 60. If it's much higher, the phone's ping cycle has stalled — the TCP/WSS connection is probably dead even though state is still cached. A fresh pair via /hermes-relay-pair will fix it.
  3. 03

    Capability matrix

    Review the “Capability matrix” section in the pinned source before continuing.

    Review and apply the “Capability matrix” source section.
  4. 04

    Quick check (use this when the user asks about access)

    Before answering "no I can't reach your X", run these one-liners via terminal:

    Before answering "no I can't reach your X", run these one-liners via terminal:
  5. 05

    Is the relay even alive?

    curl -s -o /dev/null -w "relay: HTTP %{httpcode}\n" http://127.0.0.1:8767/health

    curl -s -o /dev/null -w "relay: HTTP %{httpcode}\n" http://127.0.0.1:8767/health

Permission review

Static risk signals and limitations

Runs scripts

medium · line 18

The documentation asks the agent to run terminal commands or scripts.

Before answering "no I can't reach your X", run these one-liners via `terminal`:

Network access

medium · line 22

The documentation includes network, browsing, or remote request actions.

curl -s -o /dev/null -w "relay: HTTP %{http_code}\n" http://127.0.0.1:8767/health

Network access

medium · line 25

The documentation includes network, browsing, or remote request actions.

curl -s -o /dev/null -w "desktop: HTTP %{http_code}\n" http://127.0.0.1:8767/desktop/_ping

Sends data out

high · line 43

The documentation includes sending, uploading, or posting data to a remote service.

curl -s -X POST -H 'content-type: application/json' \

Sends data out

high · line 46

The documentation includes sending, uploading, or posting data to a remote service.

curl -s -X POST -H 'content-type: application/json' \

Runs scripts

medium · line 53

The documentation asks the agent to run terminal commands or scripts.

If desktop returns 200, you have `desktop_*` tools available — go ahead and read files, run commands, take screenshots, etc. on the user's machine. If 503, tell them to run `hermes-relay` in any terminal (bare invocation = shell/TUI mode by

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score91/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars157SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
Codename-11/hermes-relay
Skill path
skills/devops/hermes-relay-status/SKILL.md
Commit
08545ed32db07609c14730a7fc02cdd758f12434
License
MIT
Collected
2026-08-25
Default branch
main
View the original SKILL.md

Hermes-Relay Status — Phone AND Desktop

Hermes-Relay is two clients: a native Android app for phone control, AND a desktop CLI (hermes-relay) that gives the agent access to the user's local Windows / macOS / Linux machine. Either or both may be connected at any time. This skill prints a snapshot of whichever surfaces are live.

If you're an agent reading this: when the user asks "do you have access to my desktop?" / "can you see my files?" / "what about my phone?", you have real, mediated access via this relay. Don't say "I'm running on the server, no access" without first checking the endpoints below — the relay is the bridge the user installed precisely to give you that access.

Capability matrix

If this surface is connectedThe agent can call
Android phone (paired via hermes-relay-pair)android_* toolset — android_tap, android_type, android_screenshot, android_open_app, android_notifications, etc.
Desktop CLI (user has hermes-relay running — bare invocation drops into shell/TUI mode by default)desktop_* toolset — desktop_read_file, desktop_write_file, desktop_terminal, desktop_search_files, desktop_patch, desktop_open_in_editor, desktop_screenshot, desktop_clipboard_read/_write
Either (clipboard inbox)/paste and Alt+V in the upstream Hermes TUI consume images from ~/.hermes/images/inbox/, staged by the desktop client's Ctrl+A v chord or the hermes-relay paste subcommand.

Quick check (use this when the user asks about access)

Before answering "no I can't reach your X", run these one-liners via terminal:

# Is the relay even alive?
curl -s -o /dev/null -w "relay: HTTP %{http_code}\n" http://127.0.0.1:8767/health

# Is a desktop client connected? (200=yes, 503=no)
curl -s -o /dev/null -w "desktop: HTTP %{http_code}\n" http://127.0.0.1:8767/desktop/_ping

# Is a phone connected? (parse `connected` field)
curl -s http://127.0.0.1:8767/bridge/status | head -3

# Multi-device Android bridge registry (phone + tablet/BOOX, when enabled)
curl -s http://127.0.0.1:8767/bridge/devices | python3 -m json.tool

If multiple Android devices are connected, verify selectors before reporting success:

curl -s 'http://127.0.0.1:8767/bridge/status?device=phone' | python3 -m json.tool
curl -s 'http://127.0.0.1:8767/bridge/status?device=boox' | python3 -m json.tool
curl -s 'http://127.0.0.1:8767/current_app?device=phone' | python3 -m json.tool
curl -s 'http://127.0.0.1:8767/current_app?device=boox' | python3 -m json.tool

# Change the default target for android_* tools, then smoke-test the default route.
curl -s -X POST -H 'content-type: application/json' \
  -d '{"device":"phone"}' http://127.0.0.1:8767/bridge/select-active | python3 -m json.tool
curl -s http://127.0.0.1:8767/current_app | python3 -m json.tool
curl -s -X POST -H 'content-type: application/json' \
  -d '{"device":"boox"}' http://127.0.0.1:8767/bridge/select-active | python3 -m json.tool
curl -s http://127.0.0.1:8767/current_app | python3 -m json.tool

Expected aliases include phone/pixel/fold for Pixel-style phones and boox/note/notemax/tablet for BOOX NoteMax-style devices. If a device is listed in /sessions but not /bridge/devices, it is paired but currently offline/asleep; have the user wake/open Hermes Relay on that device and re-check.

If desktop returns 200, you have desktop_* tools available — go ahead and read files, run commands, take screenshots, etc. on the user's machine. If 503, tell them to run hermes-relay in any terminal (bare invocation = shell/TUI mode by default; that's what attaches the desktop client and establishes the channel).

Hermes-Relay is a native Android client for Hermes. This skill prints a snapshot of the phone currently paired to the local relay: whether it's connected, recent device telemetry (battery, screen, foreground app), which bridge permissions have been granted on the Android side, and what safety rails (blocklist, destructive-verb confirmation, auto-disable timer) are configured. It's the read-only counterpart to /hermes-relay-pair.

When to Use

Invoke this skill when any of the following happens:

  • User runs the /hermes-relay-status slash command.
  • User asks to "check my phone", "is my phone connected?", "what's the battery on my phone?", "can the agent see my phone?", or anything equivalent.
  • Before attempting a sequence of bridge tool calls (android_tap, android_type, android_screenshot, etc.) to confirm the phone is reachable and has the permissions those calls need.
  • Debugging why a bridge call failed — status shows whether the problem is "phone offline", "permission missing", or "safety rail blocked it".

Do NOT use this skill to start or install the relay server itself — that is a prerequisite. Reference hermes relay start.

Prerequisites

  1. Hermes-Relay plugin installed into the Hermes venv. Verify by running python -m plugin.status --help — if it errors with ModuleNotFoundError: No module named 'plugin', install it first: pip install -e <path-to-hermes-relay-repo>.
  2. Relay server running on RELAY_HOST:RELAY_PORT (default 0.0.0.0:8767). Without a live relay, this skill exits with code 1 and a "relay unreachable" error.
  3. Phone has connected at least once since the last relay restart. The relay tracks live phone-connection state in memory, so a restart clears that presence — the phone reconnects automatically (its paired session persists across restart, so no re-pair is needed). Until then, status returns "no phone connected" with exit code 2.

Procedure

  1. Run the status command — via the terminal tool:

    python -m plugin.status
    

    Or via the shell shim (installed by install.sh step 5):

    hermes-status
    

    If python resolves to the wrong interpreter (plugin not found), use the Hermes venv explicitly:

    ~/.hermes/hermes-agent/venv/bin/python -m plugin.status
    
  2. Useful flags (pass only when needed, not by default):

    • --json — emit raw JSON instead of the pretty text block. Use when piping to jq or when the agent wants to inspect specific fields programmatically.
    • --port <n> — override the relay port if it's not on the default 8767.
  3. Show the output verbatim. For the pretty block, pass the whole thing back to the user as a code block so the alignment is preserved. For JSON mode, summarize the interesting fields in plain language rather than dumping raw JSON to the user.

  4. Interpret the exit code.

    • 0 — success, phone is connected. The output is the full status block.
    • 1 — relay unreachable. The relay isn't running on 127.0.0.1:8767 (or the overridden port). Tell the user: "The relay isn't responding on loopback — check that hermes-relay.service is up with systemctl --user status hermes-relay, or start it manually with python -m plugin.relay --no-ssl."
    • 2 — relay is up but no phone has connected since the last relay restart. Tell the user: "Your phone isn't currently paired to this relay. Run /hermes-relay-pair to mint a fresh QR and scan it with the Hermes-Relay app."

Pitfalls

  • Relay not running. status prints [error] Cannot reach hermes-relay on 127.0.0.1:8767 to stderr and exits 1. Fix: start the relay first (systemctl --user start hermes-relay or python -m plugin.relay --no-ssl) and re-run.
  • Plugin not installed. ModuleNotFoundError: No module named 'plugin'. Fix: pip install -e <hermes-relay-repo> into the same Python environment Hermes uses. Use which python / where python to confirm you're targeting the Hermes venv.
  • Wrong venv. If hermes CLI is global but plugin is in the Hermes venv, python -m plugin.status may resolve to the wrong Python. Call the venv Python explicitly: ~/.hermes/hermes-agent/venv/bin/python -m plugin.status.
  • Phone shows as disconnected immediately after a relay restart. Expected — the relay holds phone state in memory and wipes it on restart. The phone reconnects automatically on its next ping cycle (within ~30s). If it doesn't, check the phone side: the session token may need re-pairing via /hermes-relay-pair.
  • bridge.accessibility_granted = false but everything else looks fine. The user has opened the Android app but not yet granted the Hermes-Relay accessibility service. Tell them: "Open Hermes-Relay → Bridge screen → the permission checklist will have Accessibility as the top row. Tap it to open Android Settings → Installed services → Hermes-Relay and flip the switch."
  • bridge.master_enabled = false. Even with all four permissions granted, the in-app master toggle on the Bridge screen is off. Bridge tools will be soft-blocked. Tell them: "Your bridge master toggle is disabled — open the Bridge screen in the app and flip the 'Allow Agent Control' switch."

Verification

After running the skill, confirm:

  1. Exit code matches what the agent reports. If the agent says "connected" but exit code was 2, something is wrong with the rendering layer.
  2. Permissions the user thinks are granted actually show granted. If the user says "I granted accessibility yesterday" but status shows not granted, the accessibility service was killed by the OS and needs to be re-enabled on the phone.
  3. last_seen_seconds_ago is under 60. If it's much higher, the phone's ping cycle has stalled — the TCP/WSS connection is probably dead even though state is still cached. A fresh pair via /hermes-relay-pair will fix it.

If any of those fail, fall back to the Pitfalls section.

Frequently asked questions

What to verify before installation and use

What does the hermes-relay-status source document cover?

Hermes-Relay is two clients: a native Android app for phone control, AND a desktop CLI (hermes-relay) that gives the agent access to the user's local Windows / macOS / Linux machine. Either or both may be connected at any time. This skill prints a snapshot of whichever surfaces…

How do I install hermes-relay-status?

The source record exposes this install command: npx skills add https://github.com/Codename-11/hermes-relay --skill "skills/devops/hermes-relay-status". Inspect the command and pinned source before running it.

Which permission-related actions were detected?

Static rules flagged exec-script, network, send-data in the source; the page lists the matching lines and excerpts.

Alternatives

Compare before choosing

Computed 10045,511

coreyhaines31/marketingskills

ab-testing

When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program

Computed 10029,034

garrytan/gbrain

bulk-ingestion

End-to-end discipline for turning any large data source (audio libraries, email takeouts, document corpora, chat exports, API dumps) into brain pages at scale. The lifecycle spine: SCHEMA → ACCESS → TRIAL → EVALUATE → IMPROVE → CODIFY → TEST → SKILLIFY → BULK → MONITOR. State is tracked in a durable JSON manifest (see MANIFEST-PATTERN.md) so any crash, session boundary, or subagent fan-out resumes from ground truth instead of memory.

Computed 10024,921

alirezarezvani/claude-skills

app-store-optimization

App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

Computed 1005,241

dotnet/skills

migrate-vstest-to-mtp

Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing