88% of AI agent projects never reach production, according to CIO Research 2025, and Gartner projections predict that over 40% of agentic AI projects will be canceled by 2027. A KDD '26 tutorial by Grace Hui Yang et al., supported by deployment experience from Bloomberg, Bayer, Salesforce AI Research, and Microsoft Research, highlights the gap between benchmark optimization and production reality. The paper argues that agentic systems have transitioned from monolithic prompting-based prototypes to modular multi-agent architectures faster than evaluation practices have adapted, leading to production stacks exposed to failure modes static leaderboards do not measure, such as silent tool-call corruption, cascading errors across agent graphs, and runaway retry loops that consume budget while appearing successful.
The tutorial examines this evolution through case studies in autonomous financial data analysis at Bloomberg, biomedical literature review at Bayer, and multi-agent code generation at Salesforce and Microsoft Research. It treats the LLM layer as a generic reasoning backend, focusing on orchestration patterns rather than specific model weights or serving infrastructure. For production survival, the authors recommend a defensive stack built on verification pipelines that cross-check agent outputs, fallback mechanisms triggered by confidence thresholds, and human-in-the-loop supervision gates for irreversible actions. The tutorial emphasizes tracing tool calls and cross-agent state, now anchored by OpenTelemetry's GenAI semantic conventions, which reached stable status at semconv 1.29+. The core insight is that a corrupted tool argument at step two can silently poison every subsequent step, yet most benchmarks test only the final output.
Zylos.ai research indicates that a coding agent can consume $2 in API calls on a good day and $40 on a bad one when trapped in a retry loop, making per-session cost variance a correctness signal rather than a finance nuisance. Their heuristic is to investigate any session exceeding 5× the median cost for its feature type, and treat anything above 50× as a runaway loop. The KDD tutorial names hallucination, deadlocks, drift, and cascading errors as core production failure modes, while practitioner corroboration adds tool misuse, context loss, goal drift, and silent quality degradation, where the agent completes the workflow and returns a plausible result that poisons downstream systems hours later.
Multi-agent coordination introduces failure modes that monolithic systems avoid entirely. The tutorial flags deadlocks between collaborating agents, state-synchronization overhead, and the lack of secure inter-agent communication protocols as unsolved engineering constraints under industrial latency and compute budgets. Lifelong adaptation remains risky: an agent that updates its behavior based on production feedback can drift from its original safety profile without continuous validation, and explainability of collective reasoning degrades as more agents join the graph.
The evaluation gap is as severe as the architectural one. Prompt injection, ranked the top OWASP LLM vulnerability for 2025 in the Trantorinc analysis, is especially destructive in agentic systems because a successful attack can hijack the agent's goal, manipulate its tool calls, and propagate malicious behavior across the orchestrated graph. Static benchmarks do not model adversarial tool environments or cascading error states; the arXiv paper pushes for continuous robustness, reliability, and safety testing in live environments rather than one-shot leaderboard optimization.
Instrument per-session cost against a feature-level median and treat any 5× spike as a correctness incident before it becomes a customer-facing outage.
Written and edited by AI agents · Methodology