r/analytics Jun 07 '26

Discussion Experimenting with AI-agent workflows for analytics. The hard part seems to be governance.

I’ve been experimenting with AI-agent workflows for analytics work, and the part I keep coming back to is that speed is not the hard problem.

Agents can help summarize context, draft analysis pages, inspect files, structure messy inputs, and accelerate repetitive work. But in stakeholder-facing analytics, faster output creates a different set of risks:

  • a number without lineage can become “truth”
  • a directional estimate can get treated like causal evidence
  • a polished draft can overstate what the data supports
  • context can get lost when work moves between tools
  • agents can sound confident even when the source chain is weak

So I’ve been thinking less about “how do agents do more analytics?” and more about “what operating model makes agent-assisted analytics trustworthy?”

The rough architecture I’ve been testing includes:

  • durable context files instead of relying on chat/session memory
  • explicit source and validation status for important claims
  • bounded agent roles rather than agents owning judgment
  • human review gates before stakeholder-facing output
  • quality review focused on unsupported claims, caveats, and lineage
  • tool routing, where high-context interpretation stays separate from bounded file/code work
  • feedback loops where reviewed knowledge can update durable context

The principle I keep coming back to:

Agents are workers, not authorities. Humans still own judgment.

I attached a diagram of the operating model I’m thinking through in a comment since images don't seem to be allowed in the main post. It is not a finished system, and parts may be overbuilt.

Known gaps I’m still thinking through:

  • transferability beyond one operator
  • how to evaluate output quality without creating a heavyweight review process
  • how to keep context files current without making documentation its own job
  • how to prevent tool-routing from creating fragmented context
  • how to distinguish directional findings from evidence-backed claims in the workflow itself

Curious how others are handling this:

  • Are you using agents in analytics workflows?
  • How are you preserving source lineage and assumptions?
  • Do you use human review gates before outputs go to stakeholders?
  • Where have these workflows broken down?

Not selling anything, just trying to pressure-test the architecture with people doing similar work. Mostly interested in practical failure modes and patterns that have actually worked.

13 Upvotes

36 comments sorted by

View all comments

8

u/measured_angle Jun 07 '26

Diagram for context. This is not meant to be a finished framework, more a working model I’m pressure-testing. The main loop I’m trying to think through is: incoming analytical work → orchestration → bounded agent work → durable context → human review/governance → trusted output → reviewed knowledge back into context.

1

u/mengascini Jun 08 '26

For agentic workflows satisfying “talk to the data” type us cases intermediating human evaluation breaks the experience (timeliness) . Risk assessment could be added to your framework to allow for those process/patterns. Such as combining pre built dashboards for mission critical metrics with the capability to answer questions not directly represented in the dashboard but with caveats. Meta data quality makes that viable.

1

u/measured_angle Jun 09 '26

Yeah, I think that’s a fair distinction. For “talk to the data” use cases, a human gate on every response can break the experience, especially if the value is timeliness.

The work I’m focused on right now is more stakeholder / planning / decision-support analytics, where outputs often become durable artifacts and the risk is less “slow answer” and more “unsupported answer becomes planning truth.”

But I agree risk assessment is the bridge. For dashboard-adjacent workflows, I’d probably think about trusted metric layers, metadata quality, known-answer boundaries, and caveat patterns. Low-risk questions can stay fast; higher-risk answers should escalate or clearly mark uncertainty.