Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

Anthropic CCAR-F Exam - Topic 1 Question 6 Discussion

You are building a multi-agent research system using the Claude Agent SDK. A coordinator agent delegates to specialized subagents: one searches the web, one analyzes documents, one synthesizes findings, and one generates reports. The system researches topics and produces comprehensive, cited reports.After the web-search and document-analysis subagents complete their tasks, the coordinator needs to spawn the synthesis subagent to synthesize the findings.What is the correct approach for providing the synthesis subagent with the information it needs?
B) Include the complete findings from both subagents directly in the synthesis subagent's prompt.
A) Provide the subagent with tool definitions that allow it to request outputs from other subagents through callbacks.
C) Spawn the subagent with only a brief task description, relying on automatic context inheritance from the coordinator.
D) Pass reference identifiers and configure the subagent with read access to a shared memory store where the other subagents deposited their results.

Anthropic CCAR-F Exam - Topic 1 Question 6 Discussion

Actual exam question for Anthropic's CCAR-F exam
Question #: 6
Topic #: 1
[All CCAR-F Questions]

You are building a multi-agent research system using the Claude Agent SDK. A coordinator agent delegates to specialized subagents: one searches the web, one analyzes documents, one synthesizes findings, and one generates reports. The system researches topics and produces comprehensive, cited reports.

After the web-search and document-analysis subagents complete their tasks, the coordinator needs to spawn the synthesis subagent to synthesize the findings.

What is the correct approach for providing the synthesis subagent with the information it needs?

Show Suggested Answer Hide Answer
Suggested Answer: B

Option B follows the Claude Agent SDK's subagent context model. A normal subagent begins with a fresh context window and does not inherit the parent agent's conversation history or prior tool results. Anthropic's Subagents in the SDK documentation states that the information passed from parent to subagent is the spawning tool's prompt string; required file paths, decisions, errors, or findings must therefore be included in that prompt. In this scenario, the coordinator should supply both agents' relevant findings, source metadata, and explicit synthesis instructions. ''Complete findings'' means the full required result artifacts, not every intermediate search trace. Option C incorrectly assumes automatic context inheritance. Option A introduces callbacks that are neither necessary nor the standard handoff mechanism. Option D can be a valid custom architecture when a shared store has deliberately been implemented, but the question does not establish such infrastructure, and identifiers alone do not give the subagent information. The prompt should use clear sections or structured objects to distinguish web findings, document findings, sources, unresolved conflicts, and expected output. This preserves context isolation while providing everything the synthesis task actually requires.

================


Contribute your Thoughts:

0/2000 characters

Currently there are no comments in this discussion, be the first to comment!


Save Cancel