MCPcopy
hub / github.com/shareAI-lab/learn-claude-code / run_check_inbox

Function run_check_inbox

s15_agent_teams/code.py:740–747  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

738
739
740def run_check_inbox() -> str:
741 msgs = BUS.read_inbox("lead")
742 if not msgs:
743 return "(inbox empty)"
744 lines = []
745 for m in msgs:
746 lines.append(f" [{m['from']}] {m['content'][:200]}")
747 return "\n".join(lines)
748
749
750# ── Tool Definitions ──

Callers

nothing calls this directly

Calls 1

read_inboxMethod · 0.45

Tested by

no test coverage detected