src/skills/contacts/SKILL.md
Manage Oracle contacts — add, list, remove agents with their transport info (maw, inbox, thread). Use when user says "contacts", "add contact", "register agent", "who can I talk to", "list contacts". Do NOT trigger for sending messages (use /talk-to) or family registry (use /oracle-family-scan).
npx skillsauth add Soul-Brews-Studio/oracle-skills-cli contactsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manage contacts for /talk-to routing. Stored in repo at ψ/contacts.json — committable, shareable.
Run before any mode — current-time reference for the AI (#301) plus absolute
$PSI so announce-mode writes show clickable paths (CONVENTIONS.md).
date "+🕐 %H:%M %Z (%A %d %B %Y)"
ORACLE_ROOT=$(git rev-parse --show-toplevel 2>/dev/null || pwd)
PSI="$ORACLE_ROOT/ψ"
CONTACTS_FILE="$PSI/contacts.json"
ψ/contacts.json
If ψ/ doesn't exist, use .oracle/contacts.json as fallback.
{
"contacts": {
"peter": {
"maw": "peter-oracle",
"thread": "channel:peter",
"inbox": "/home/peter/Code/peter-oracle/ψ/inbox",
"repo": "laris-co/peter-oracle",
"notes": "Frontend dev, available weekdays"
},
"pulse": {
"maw": "pulse-oracle",
"thread": "channel:pulse",
"inbox": null,
"repo": "laris-co/pulse-oracle",
"notes": "PM bot"
}
},
"updated": "2026-03-23T22:30:00Z"
}
/contacts # list all
/contacts list # same
/contacts add peter # interactive — ask transports one by one
/contacts add peter --maw peter-oracle --inbox /path/ψ/inbox
/contacts remove peter # remove (with confirmation)
/contacts show peter # show details for one contact
Read ψ/contacts.json. Display:
📇 Contacts (4)
# Name maw repo inbox
── ────────────── ──────────────── ─────────────────────── ──────
1 peter peter-oracle laris-co/peter-oracle ✓
2 pulse pulse-oracle laris-co/pulse-oracle ✗
3 hermes hermes-oracle laris-co/hermes-oracle ✓
4 neo neo-oracle laris-co/neo-oracle ✓
If no contacts file exists:
📇 No contacts yet.
/contacts add <name> — register a new contact
/contacts add <name>Ask each transport one by one. User can skip any with Enter.
📇 Register: peter
1. maw name? (for `maw hey <name>`)
→ peter-oracle
2. Thread channel? (for Oracle threads)
→ channel:peter [default: channel:{name}]
3. Inbox path? (for direct ψ/inbox/ writes)
→ /home/peter/Code/peter-oracle/ψ/inbox
(Enter to skip — not all agents have accessible inbox)
4. Repo? (org/repo on GitHub)
→ laris-co/peter-oracle [default: guess from maw name]
5. Notes? (optional)
→ Frontend dev, Thai timezone
/contacts add peter --maw peter-oracle --inbox /path/ψ/inbox
Skip interactive for provided flags. Still ask for missing ones.
# Read existing — $CONTACTS_FILE comes from Step 0 (absolute, via $PSI).
mkdir -p "$(dirname "$CONTACTS_FILE")"
# If file doesn't exist, create empty
if [ ! -f "$CONTACTS_FILE" ]; then
echo '{"contacts":{},"updated":""}' > "$CONTACTS_FILE"
fi
Use jq or Write tool to update the JSON. Set updated to current ISO timestamp.
After adding, ask:
✅ Added peter. Commit? [Y/n]
If yes:
git add ψ/contacts.json
git commit -m "contacts: add peter"
/contacts remove <name>Show the contact details, ask confirmation:
Remove peter?
maw: peter-oracle
thread: channel:peter
inbox: /home/peter/.../ψ/inbox
[Y/n]
If yes, remove from JSON, save, optionally commit.
/contacts show <name>📇 peter
maw: peter-oracle
thread: channel:peter
inbox: /home/peter/Code/peter-oracle/ψ/inbox
repo: laris-co/peter-oracle
notes: Frontend dev, Thai timezone
/talk-to should read ψ/contacts.json before routing:
ψ/contacts.json → found? Use registered transportsARGUMENTS: $ARGUMENTS
testing
Cut a beta pre-release — bump CalVer with --beta, PR to beta branch, CI auto-tags + publishes to npm @beta. Use when user says 'release beta', 'cut beta', '/release-beta', or wants to publish a beta version for pre-release testing.
testing
Cut an alpha pre-release — bump CalVer, PR to alpha branch, CI auto-tags + publishes to npm @alpha. Use when user says 'release alpha', 'cut alpha', '/release-alpha', or wants to publish an alpha version.
tools
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.
development
Log information for future reference. Use when user says "fyi", "remember this", "note that", "for your info".