inbox
/inbox - Oracle Inbox
Read and write timestamped notes to ψ/inbox/.
Usage
/inbox # List recent inbox items
/inbox read # List recent inbox items (alias)
/inbox read <topic> # Read specific item by topic keyword
/inbox write <topic> # Write new inbox item
/inbox ls # List all items (full)
/inbox clean # Archive old items (move to ψ/archive/inbox/)
Directory
ψ/inbox/
├── handoff/ # Session handoffs (managed by /forward)
├── schedule.md # Schedule (managed by /schedule)
├── YYYY-MM-DD_HHMM_<topic>.md # ← inbox items live here
└── ...
Filename Format
Every inbox item follows this pattern:
YYYYMMDD_HHMM_<topic-slug>_from_<sender>.md
Example: 20260323_2112_fix-auth-bug_from_peter.md
Rules:
- Date: compact
YYYYMMDD(no dashes) - Topic slug: lowercase, hyphens, no spaces
- Sender: who wrote it (oracle name or human name)
- Timestamp: local time (from
date) - Always at root of
ψ/inbox/(not in subdirectories)
Mode 1: Read (default)
/inbox or /inbox read
ROOT="$(pwd)"
INBOX="$ROOT/ψ/inbox"
List all .md files in ψ/inbox/ (excluding schedule.md and handoff/):
ls -1t "$INBOX"/*.md 2>/dev/null | grep -v schedule.md | head -10
For each file, show:
📥 20260323 21:12 — fix-auth-bug (from peter)
First 2 lines of content...
If MCP available, also run:
oracle_inbox(limit=10)
/inbox read <topic>
Find and display the most recent file matching the topic:
ls -1t "$INBOX"/*<topic>*.md 2>/dev/null | head -1
Read and display full content.
Mode 2: Write
/inbox write <topic>
TS=$(date +%Y%m%d_%H%M)
SLUG=$(echo "<topic>" | tr ' ' '-' | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9-]//g')
FROM=$(echo "<sender>" | tr ' ' '-' | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9-]//g')
FILE="$INBOX/${TS}_${SLUG}_from_${FROM}.md"
Ask the user: "What do you want to note?" (unless content is provided after topic)
Write the file:
---
topic: <topic>
from: <current-oracle-name>
timestamp: YYYY-MM-DD HH:MM
---
<user's content>
If MCP available, also call:
oracle_handoff(content, slug)
This syncs to vault for cross-Oracle discovery.
Confirm: 📥 Written: ψ/inbox/${TS}_${SLUG}.md
Mode 3: List All
/inbox ls
Same as read but show ALL items (no limit), with file sizes:
ls -lht "$INBOX"/*.md 2>/dev/null | grep -v schedule.md
Also count handoffs:
echo "📁 Handoffs: $(ls "$INBOX/handoff/" 2>/dev/null | wc -l) files"
Mode 4: Clean
/inbox clean
Move items older than 7 days to archive:
ARCHIVE="$ROOT/ψ/archive/inbox"
mkdir -p "$ARCHIVE"
find "$INBOX" -maxdepth 1 -name "*.md" -not -name "schedule.md" -mtime +7 -exec mv {} "$ARCHIVE/" \;
Report what was moved. Never delete — move to archive (Nothing is Deleted).
Who Can Write?
Any Oracle, any skill, any agent. The only rule: timestamp before topic in filename.
| Writer | How | Example |
|---|---|---|
/inbox write |
This skill | 20260323_2112_idea_from_neo.md |
/forward |
Handoff | ψ/inbox/handoff/20260323_2112_session-forward.md |
| Another Oracle | /talk-to + write |
20260323_2112_status-update_from_odin.md |
| Agent directly | oracle_handoff() MCP |
Same format |
ARGUMENTS: $ARGUMENTS
More from soul-brews-studio/arra-oracle-skills
recap
Session orientation and awareness — retro summaries, handoffs, git state, focus. Use when starting a session, after /jump, lost your place, switching context, or when user asks "now", "where are we", "what are we doing", "status", "recap". Do NOT trigger for "standup" or "morning check" (use /standup), or session mining "dig", "past sessions" (use /dig).
22learn
Explore a codebase with parallel Haiku agents — clone, read, and document. Modes — --fast (1 agent), default (3), --deep (5). Use when user says "learn [repo]", "explore codebase", "study this repo", or shares a GitHub URL to study. Do NOT trigger for finding projects (use /trace), session mining (use /dig), or cloning for active development (use /incubate).
21project
Clone and track external repos. Use when user shares GitHub URL to study or develop, or says "search repos", "find repo", "where is [project]". Actions - learn (clone for study), search/find (search repos), list (show tracked). For active development, use /incubate.
20rrr
Create session retrospective with AI diary and lessons learned. Use when user says "rrr", "retrospective", "wrap up session", "session summary", or at end of work session.
20forward
Create handoff + enter plan mode for next session. Use when user says "forward", "handoff", "wrap up", or before ending session.
20oracle-soul-sync-update
Sync Oracle instruments with the family. Check and update skills to latest version. Use when user says "soul-sync", "sync", "calibrate", "update", or before /awaken.
19