ComfyUI Node

AZAll Inbox

The mailbox listing your agent actually reads

By cronos3k·Created 5 months ago·Updated 5 months ago· 0
AZAll Inbox
  • config
  • inbox
show_all_datesfalse

The "what's in my mailbox" node. AgentAZAll_Inbox lists the messages a Relay has delivered to the current agent's inbox - a formatted summary of sender, subject, status, and message ID per line. It's the first thing the receiving agent's side of a workflow needs, because it's how the agent learns a message exists before it reads the actual contents.

This is the closest thing in the pack to an email client's list view, and like everything else here it's just files: an inbox is a folder of .txt files with headers, so the node is really a pretty-printed ls.

How it works

Point it at a config and it scans the agent's inbox directory. By default it shows today's messages only; flip show_all_dates on and it walks every dated inbox folder, newest first. Each message is parsed for its headers - From, Subject, Status (new/read), and Message-ID - and rendered as one line per message, grouped under a per-date header, with a total count up top. No messages gets you Inbox is empty.

The status field matters: Read Message flips a message from new to read when you open it, and that status shows up right here. So Inbox doubles as a lightweight "have I processed this yet" tracker.

The inputs that matter

  • config (required) - from AZAll Setup.
  • show_all_dates - set true to list messages from every day, not just today. Handy when the agent's been idle for a while.

The inbox output is the formatted listing string. The typical pattern: feed it into a Text Combine or Prompt Template so the LLM sees its mail as context, then use Read Message to pull the full contents of whatever looks relevant.

Installing it

Ships in cronos3k/comfyui-agentazall. Manager search "AgentAZAll", or:

cd ComfyUI/custom_nodes
git clone https://github.com/cronos3k/comfyui-agentazall.git
pip install "agentazall>=1.0.13"
# restart ComfyUI

No models, no keys - the whole pack is one pip dependency plus files.

Common issues

Empty inbox but you know messages were sent? Check that a Relay node ran on the sender's side - delivery is a separate step. Still empty? Check the recipient address matches the agent's configured name exactly, and that both agents share the same mailbox_dir. And remember the default is today-only: if you're testing across days or restarted with a new date, flip show_all_dates. Because the listing shows only headers, don't expect message bodies here - that's Read Message's job.

CategoryAgentAZAll/Messaging

Inputs (2)

NameTypeDefaultDescription
configAZALL_CONFIG
show_all_datesoptBOOLEANfalse

Outputs (1)

NameTypeDescription
inboxSTRING