Repeatability
High
The task is explicitly described as a one-time pipeline build, and the underlying logic — parse, normalize, deduplicate, validate, output — is structurally identical each run. High repeatability strongly favors automation.
Ambiguity Tolerance
High
The output schema is fully specified (7 named columns), deduplication and validation rules are stated, and the output format is defined. Success criteria are crisp enough for a non-human to verify correctness.
Data & Tool Availability
Medium
The agent needs sample files from all three sources to map inconsistent headers and parse the email text table format — without those, it can only produce a generic template. Assuming samples are provided, standard Python libraries (pandas, openpyxl, email parsing) cover everything needed.
Error Cost
Low
The output is a consolidated CSV reviewed by a human coordinator before any downstream action; a bad merge or missed dedup is visible and correctable before it affects orders. No irreversible consequences from a pipeline bug.
Human Judgment Required
Low
Column normalization and deduplication logic are rule-based once the field mappings are established. Validation flags (missing data, past delivery dates) are deterministic checks with no taste or ethics dimension.