rohitg00/ai-engineering-from-scratch · error · EventStreamError
tool result or confirmation must reference a known action
Error message
tool result or confirmation must reference a known action
What it means
Error "tool result or confirmation must reference a known action" thrown in rohitg00/ai-engineering-from-scratch.
Source
Thrown at certifications/claude/lessons/12-claude-agent-sdk-and-hooks/code/main.py:93
status = "running"
stop_reason = None
elif event_type == "agent.message":
content = event.get("content", [])
if not isinstance(content, list):
raise EventStreamError("agent.message content must be a list")
messages.append(
"".join(
str(block.get("text", ""))
for block in content
if isinstance(block, dict) and block.get("type") == "text"
)
)
elif event_type in {"agent.custom_tool_use", "agent.tool_use", "agent.mcp_tool_use"}:
actionable.add(event_id)
elif event_type in {"user.custom_tool_result", "user.tool_confirmation"}:
reference = event.get("custom_tool_use_id") or event.get("tool_use_id")
if not isinstance(reference, str) or reference not in actionable:
raise EventStreamError("tool result or confirmation must reference a known action")
pending.discard(reference)
elif event_type == "session.status_idle":
status = "idle"
reason = event.get("stop_reason")
if not isinstance(reason, dict) or reason.get("type") not in {"requires_action", "end_turn"}:
raise EventStreamError("idle status needs a supported stop_reason")
stop_reason = reason["type"]
if stop_reason == "requires_action":
event_ids = reason.get("event_ids")
if not isinstance(event_ids, list) or not event_ids or not all(
isinstance(item, str) and item in actionable for item in event_ids
):
raise EventStreamError("requires_action must reference known actionable event IDs")
pending = set(event_ids)
else:
pending.clear()
elif event_type == "session.status_terminated":
status = "terminated"View on GitHub (pinned to 39ea8a1c6d)
When it happens
Trigger: Thrown at certifications/claude/lessons/12-claude-agent-sdk-and-hooks/code/main.py:93 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of rohitg00/ai-engineering-from-scratch@39ea8a1c6d (2026-08-26).
Data as JSON: /api/errors/39052458b053abd3.
Report an issue: GitHub.