<< All versions
Skill v1.0.1
currentAutomated scan100/100soul-brews-studio/arra-oracle-skills-cli/hey
+3 new
──Details
PublishedAugust 6, 2026 at 06:03 AM
Content Hashsha256:ee9573172e053eb1...
Git SHA044e8396bc9f
Bump Typepatch
──Files
Files (1 file, 2.7 KB)
SKILL.md2.7 KBactive
SKILL.md · 105 lines · 2.7 KB
version: "1.0.1" name: hey description: Talk to another oracle via maw federation. Uses fleet machine names (white, mba, clinic-nat, oracle-world, phaith). Auto-signs with current oracle's [host:handle] from CLAUDE.md. Global — works from any oracle repo. zombie: true metadata: internal: true
/hey
Quick federation messenger. Wraps maw hey <node>:<agent> with two additions:
- Fleet-name resolution — just use
firemaninstead ofwhite:firemanwhen target is on current host - Auto-sig — appends
[<host>:<handle>]read from local CLAUDE.md
Usage
/hey <node>:<agent> <message> # explicit node:agent/hey <agent> <message> # same host as me (infer node)/hey list # list reachable agents in fleet/hey peek <node>:<agent> # wrap maw peek
Step 0: Init + resolve identity
bash
date "+🕐 %H:%M %Z"# Resolve my identity from CLAUDE.mdMY_HANDLE=$(grep -E "^- \*\*Technical handle\*\*:|^- \*\*Handle\*\*:" CLAUDE.md 2>/dev/null | head -1 | sed -E 's/.*`([^`]+)`.*/\1/' || echo "")# Fallback to repo name if CLAUDE.md missing[ -z "$MY_HANDLE" ] && MY_HANDLE=$(basename "$(git rev-parse --show-toplevel 2>/dev/null || pwd)" | sed 's/-oracle$//')MY_HOST=$(hostname -s 2>/dev/null | tr '[:upper:]' '[:lower:]')# Common fleet host aliasescase "$MY_HOST" inwhite.local|white) MY_HOST=white ;;mba*) MY_HOST=mba ;;esacMY_SIG="[$MY_HOST:$MY_HANDLE]"echo "sig=$MY_SIG"
Usage: send
bash
TARGET="$1" # fireman OR white:firemanMSG="$2" # message body# Resolve target nodeif [[ "$TARGET" == *:* ]]; thenNODE=${TARGET%%:*}AGENT=${TARGET##*:}elseNODE=$MY_HOSTAGENT=$TARGETfimaw hey "$NODE:$AGENT" "$MSG $MY_SIG"
Usage: list
bash
maw agents 2>&1 | awk 'NR>1 {print $1":"$4, "("$5")"}'
Usage: peek
bash
maw peek "$TARGET" 2>&1 | head -40
Fleet machine names (from ~/etc/hosts)
| Name | IP | Route | |
|---|---|---|---|
white | localhost / 10.x | this machine (Linux/Ubuntu) | |
mba | mba.wg / 10.20.0.3 | WireGuard | |
clinic-nat | 10.20.0.1 | WireGuard | |
oracle-world | 100.120.242.120 | WireGuard | |
phaith | localhost:3458 | local peer |
Rule 6 discipline
All outbound federation messages carry [<host>:<handle>] at the end. Never pretend to be human; never drop the sig. The sig is identity, not decoration.
Related
/contacts(core) — Oracle contact registry/talk-to(core) — heavier threaded conversation/federation-talk(user) — fleet-wide broadcast
Examples
/hey fireman "FMT registry changed?"/hey white:arthur-god-line "update from child"/hey list/hey peek white:fireman
ARGUMENTS: $ARGUMENTS