()
| 738 | |
| 739 | |
| 740 | def 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 ── |
nothing calls this directly
no test coverage detected