Why can't I tell if my AI agent is actually doing what it said it did?

Teams ship agents that call tools, hit production data, and report back in natural language. Trace logs are JSON soup. There is no per-run verdict on whether the agent did the right thing, just token counts and latency.

Category: Others · Trend: LLM · Opportunity score: 8.6 / 10

What is the “Why can't I tell if my AI agent is actually doing what it said it did?” problem in 2026?

Teams ship agents that call tools, hit production data, and report back in natural language. Trace logs are JSON soup. There is no per-run verdict on whether the agent did the right thing, just token counts and latency.

Who has this problem?

Eng leads at startups running production LLM agents on Anthropic, OpenAI, or open-weights inside Langfuse, Braintrust, Arize.

Evidence this problem is real

“I have 200K traces a day. I can tell you the p95 latency. I cannot tell you what fraction of refund agents actually issued a correct refund.”

Sourced from r/LocalLLaMA, Hacker News "who is debugging agents in prod" threads, Langfuse and Braintrust Discord support channels.

Existing players in this space

  • Langfuse — Strong tracing, weak per-run correctness verdict
  • Braintrust — Great eval harness, runs offline, not on live traffic
  • Arize Phoenix — Observability, no agent-task scorer out of the box
  • LangSmith — Tied to LangChain, scoring is BYO

What existing players are missing

A drop-in agent scorer: read your trace, infer the user goal, replay the tool outputs against an LLM judge with your policy, emit a pass/fail with a 1-line reason. Bucketed by tool, by user segment, by version. Spend $0.002 per run, save your team from shipping a regression.

How Real Problem AI scores this opportunity

Aggregate score: 8.6 / 10. Four-axis rubric:

  • Problem severity: 9 / 10
  • AI feasibility today: 9 / 10
  • Market signal: 9 / 10
  • Competition gap: 7 / 10

How to build a solution: stack hints

  • OpenTelemetry trace ingest with tool-call schema awareness
  • Goal-inference LLM pass over the first user turn
  • Policy DSL for what counts as success per tool
  • LLM-judge plus ground-truth replay on sampled traces
  • Regression-detection dashboard per agent version

Related Others problems on Real Problem AI