Some checks are pending
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / preflight (push) Waiting to run
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / vps-smoke (push) Waiting to run
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:frustration-matrix,kei-frustration-loop,kei-skill-importer,kei-projects-index,kei-projects-watcher,kei-gdrive-import,kei-leak-matrix,kei-skills,kei-gateway,kei-cron-scheduler,kei-export-trajectories,kei-backend-daytona,kei-d… (push) Blocked by required conditions
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:kei-compute-baremetal,kei-compute-vultr,kei-compute-linode,kei-compute-digitalocean,kei-svc-systemd,kei-llm-bridge-mlx name:hosted-sleep-compute]) (push) Blocked by required conditions
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:kei-diff,kei-scheduler,kei-watch,kei-prune,kei-discover,kei-brain-view,kei-hibernate,kei-ledger-sign,kei-fork name:wave13-15]) (push) Blocked by required conditions
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:kei-git-gitea,kei-git-forgejo,kei-git-gitlab,kei-git-bitbucket,kei-memory-sled,kei-memory-redis,kei-memory-postgres,kei-memory-sqlite,kei-auth-google,kei-auth-apple,kei-auth-magiclink,kei-auth-webauthn,kei-notify-slack,kei-n… (push) Blocked by required conditions
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:kei-ledger,kei-migrate,kei-changelog,kei-memory,kei-store,kei-conflict-scan,kei-refactor-engine,kei-graph-check,kei-shared,kei-dna-index,kei-pet name:core]) (push) Blocked by required conditions
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:kei-machine-probe,kei-llm-ollama,kei-llm-llamacpp,kei-llm-mlx,kei-llm-router,kei-model name:llm-stack]) (push) Blocked by required conditions
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:kei-router,kei-sage,kei-task,kei-chat-store,kei-crossdomain,kei-search-core,kei-content-store,kei-social-store,kei-curator,kei-auth,kei-artifact name:mcp-lbm]) (push) Blocked by required conditions
CI (Forgejo Actions — self-hosted runner on Mac, host mode) / rust-primitives (map[crates:keisei,kei-forge,kei-runtime,kei-runtime-core,kei-atom-discovery,kei-agent-runtime,kei-capability,kei-provision,kei-entity-store,kei-pipe,kei-cache,kei-spawn,kei-replay name:atom-substrate]) (push) Blocked by required conditions
Thin skill wrapper over the existing kei-message jsonl mailbox so the user (and agents) can talk between Claude Code sessions with @id syntax: /msg read my inbox (to me or "all") /msg @frontend text send to a session (identity = its cwd basename) /msg all text broadcast /msg list | who whole bus / known recipients - kei-message.sh send now accepts a leading @name as the recipient (first token only; a later @x stays literal). --to still works. - skills/msg/SKILL.md documents the identity model (cwd-basename), pull delivery (recipient's next turn via mailbox-inject hook), and the first-contact discovery path (who / all). - README skills count 68 -> 69. Verified: @name/all/--to parsing (3 cases) + end-to-end send/inbox/who via the live script in a sandbox HOME. Skill registered + discoverable. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
71 lines
2.8 KiB
Bash
Executable file
71 lines
2.8 KiB
Bash
Executable file
#!/bin/sh
|
|
# kei-message — minimal persistent mailbox so ANY Claude Code session can message
|
|
# ANY other (not just Agent-Teams teammates). Append-only jsonl bus; the
|
|
# mailbox-inject.sh UserPromptSubmit hook pulls unread into each session's
|
|
# context per turn. Identity = basename of the session's cwd (or --from/--to a
|
|
# name), plus the broadcast channel "all".
|
|
#
|
|
# kei message send [--to <name|all>] [--from <name>] <text...>
|
|
# kei message inbox # messages addressed to me (cwd) or all
|
|
# kei message list # whole bus (recent)
|
|
# kei message channels # known recipient names
|
|
#
|
|
# Store: ~/.claude/mailbox/messages.jsonl (one JSON object per line)
|
|
|
|
set -eu
|
|
command -v jq >/dev/null 2>&1 || { echo "kei message: jq required" >&2; exit 1; }
|
|
|
|
MBOX="$HOME/.claude/mailbox"
|
|
LOG="$MBOX/messages.jsonl"
|
|
mkdir -p "$MBOX"
|
|
[ -f "$LOG" ] || : > "$LOG"
|
|
|
|
me="$(basename "$PWD")"
|
|
cmd="${1:-inbox}"
|
|
[ $# -gt 0 ] && shift || true
|
|
|
|
case "$cmd" in
|
|
send)
|
|
to="all"; body=""
|
|
while [ $# -gt 0 ]; do
|
|
case "$1" in
|
|
--to) to="$2"; shift; shift ;;
|
|
--from) me="$2"; shift; shift ;;
|
|
--) shift; body="$body $*"; break ;;
|
|
# Leading @name = recipient (e.g. `send @frontend hi`). First token only;
|
|
# a later @x stays literal text.
|
|
@?*) if [ "$to" = "all" ] && [ -z "$body" ]; then to="${1#@}"; else body="$body $1"; fi; shift ;;
|
|
*) body="$body $1"; shift ;;
|
|
esac
|
|
done
|
|
body="${body# }"
|
|
[ -n "$body" ] || { echo "usage: kei message send [--to <name|all>] <text>" >&2; exit 1; }
|
|
# Sub-second component: GNU `date +%N` where available; on stock macOS (BSD
|
|
# date) %N is unsupported and prints literal "N" → fall back to /dev/urandom.
|
|
# Result id = epoch(10) + 6 digits = 16-digit integer, safely < 2^53.
|
|
ns="$(date +%N 2>/dev/null)"
|
|
case "$ns" in *[!0-9]*|'') ns="$(od -An -N4 -tu4 /dev/urandom 2>/dev/null | tr -dc 0-9)" ;; esac
|
|
sub="$(printf '%s000000' "$ns" | cut -c1-6)"
|
|
id="$(date +%s)${sub}"
|
|
jq -cn --argjson id "$id" --arg ts "$(date -u +%FT%TZ)" \
|
|
--arg from "$me" --arg to "$to" --arg body "$body" \
|
|
'{id:$id, ts:$ts, from:$from, to:$to, body:$body}' >> "$LOG"
|
|
echo "-> sent to '$to' (from '$me')"
|
|
;;
|
|
inbox|read)
|
|
while [ $# -gt 0 ]; do case "$1" in --me) me="$2"; shift; shift ;; *) shift ;; esac; done
|
|
jq -r --arg me "$me" '
|
|
select(.to==$me or .to=="all")
|
|
| "[\(.ts|sub("T";" ")|sub("Z";""))] \(.from) -> \(.to): \(.body)"' "$LOG" | tail -20
|
|
;;
|
|
list|all)
|
|
jq -r '"[\(.ts|sub("T";" ")|sub("Z";""))] \(.from) -> \(.to): \(.body)"' "$LOG" | tail -40
|
|
;;
|
|
channels|names|who)
|
|
jq -r '.to, .from' "$LOG" 2>/dev/null | sort -u | grep -v '^$' || true
|
|
;;
|
|
*)
|
|
echo "kei message: send [--to <name|all>] <text> | inbox | list | channels" >&2
|
|
exit 1
|
|
;;
|
|
esac
|