A dashboard fails. The sales team says the numbers changed overnight. The data engineer checks the pipeline. The analyst checks the SQL. The BI vendor says its “agent” can help. The executive hears “agent” and imagines a small autonomous data scientist quietly fixing the mess before breakfast.

Usually, no. Usually it is a chatbot with access to SQL, a tool wrapper with better manners, or a workflow assistant that still depends on human supervision at the awkward parts. Useful, yes. Autonomous, no. The distinction is not academic hair-splitting; it determines who owns the error when the agent rewrites a query, changes a pipeline, or confidently explains a metric built on dirty data.

That is why the tutorial paper Data Agents: Levels, State of the Art, and Open Problems is valuable.1 It does not introduce a new benchmark score or another heroic demo. Instead, it proposes a six-level autonomy hierarchy for data agents, from L0 to L5, and uses that hierarchy to classify systems across data management, data preparation, and data analysis. The paper’s quiet message is inconvenient for product decks: most current “data agents” are not autonomous data scientists. Many are L1 assistants, L2 executors, or Proto-L3 orchestrators operating inside carefully bounded environments.

This article uses the paper’s category-based structure as a buyer and operator map. The point is not to memorize six labels. The point is to stop asking “Is this an AI data agent?” and start asking a better question: what responsibility has actually moved from the human to the system?

The useful axis is responsibility, not intelligence theater

The paper defines data agents as LLM-based architectures that operate inside Data+AI environments: databases, code interpreters, APIs, data lakes, BI tools, and related infrastructure. That already separates them from general-purpose LLM agents. A generic agent may summarize text, search the web, or produce a slide outline. A data agent interacts with systems where errors cascade.

A wrong paragraph is embarrassing. A wrong transformation in a data pipeline can contaminate downstream dashboards, model features, business reports, and management decisions. The paper emphasizes this difference: data agents work over large, heterogeneous, noisy, evolving data environments, and their outputs are often data products, processed datasets, configurations, visualizations, or analytical reports rather than just conversational answers.

The hierarchy therefore tracks autonomy through a practical lens:

Level Agent role Who dominates the work? Business interpretation
L0 No agent Human Manual data work, scripts, DBA judgment, analyst workflows
L1 Assistant Human Suggests SQL, explanations, cleaning rules, charts, or code
L2 Executor Human designs, agent executes bounded steps Runs tools, observes feedback, performs task-specific loops
L3 Conditional orchestrator Agent dominates workflow, human supervises Plans and coordinates multi-step data workflows under review
L4 Proactive operator Agent, within governance constraints Monitors systems, discovers issues, prioritizes tasks without explicit prompts
L5 Generative data scientist Agent Invents new methods, algorithms, or paradigms

This is a responsibility ladder. The higher the level, the less the human designs the immediate workflow and the more the agent decides what to do, when to do it, and how to recover when the world refuses to behave like a demo dataset.

The taxonomy is inspired by the familiar idea of levels of driving automation. That analogy is useful, with one caveat: a car has roads, traffic rules, and physical constraints. Enterprise data ecosystems have schema drift, undocumented transformations, contradictory business definitions, silent data quality problems, and the occasional spreadsheet named “final_final_v7.xlsx.” The road is not always visible. Sometimes the road is an Excel file.

L1: the SQL copilot is helpful, but it is still a passenger

L1 data agents operate in a stateless prompt-response mode. They answer questions, generate snippets, suggest SQL, draft data-cleaning rules, or propose visualizations. They do not directly perceive the environment, execute changes, or close the loop through system feedback.

This category includes many tools that feel impressive because they reduce friction. A user asks for a SQL query; the assistant writes one. A DBA asks for possible causes of slow performance; the assistant suggests indexing or configuration checks. An analyst asks for a visualization; the system proposes a chart. These are real productivity gains.

But the responsibility remains with the human. The human must inspect the query, run it, verify the output, check whether the join logic matches the business definition, and notice whether the chart is nonsense dressed in professional colors.

The paper maps L1 systems across three lifecycle areas:

Lifecycle area Typical L1 behavior Practical boundary
Data management Suggests query rewrites, tuning candidates, diagnostic explanations Does not safely operate the DBMS by itself
Data preparation Suggests cleaning rules, schema matches, imputations, metadata descriptions Does not own data quality outcomes
Data analysis Answers table questions, generates SQL, creates chart suggestions, drafts reports Does not reliably validate analytical assumptions

The business mistake is to buy L1 as if it were L3. A SQL copilot may reduce analyst effort, improve first drafts, and help junior staff explore unfamiliar schemas. It should not be treated as an autonomous analytics function. It is a fast passenger with a map, not the driver.

L2: tool execution changes the risk profile

L2 is where the system starts to touch the environment. The agent can perceive data, invoke tools, execute task-specific operations, and use feedback to refine its behavior. In data management, that may mean observing workload statistics, running tuning experiments, rewriting queries, or adjusting configurations inside a designed loop. In data preparation, it may mean executing cleaning transformations and verifying constraints. In data analysis, it may mean calling SQL engines, plotting libraries, or retrieval modules while iterating over intermediate results.

This is a meaningful jump. It turns the agent from a suggestion engine into an executor. The system is no longer merely saying “maybe try this.” It may actually try it.

That creates the first serious governance question. If the workflow is still human-designed but the execution is delegated, what guardrails are required? The answer depends on the operation. A chart-generation agent can be allowed to fail cheaply. A database tuning agent that changes configurations in production deserves a shorter leash. Preferably one made of steel, not vibes.

The paper’s L2 category is useful because it prevents two opposite mistakes. The first mistake is dismissing L2 as “just tool use.” Tool use matters because execution introduces operational consequences. The second mistake is exaggerating L2 into autonomous workflow ownership. L2 agents may execute loops, but the overall pipeline is still prescribed by humans.

A practical procurement checklist for L2 should therefore focus less on the demo and more on control:

Question What it reveals
What tools can the agent call? Scope of possible operational impact
Can it write, modify, or delete data? Severity of failure modes
Does it log actions and intermediate states? Auditability
Can humans approve high-risk steps? Governance boundary
Can it roll back or isolate changes? Recovery capability
Does it evaluate outputs against constraints? Whether feedback is meaningful or cosmetic

An L2 agent can be highly valuable. But its value comes from bounded execution, not from pretending it has independent judgment over the whole data lifecycle.

L3 is the frontier: the agent starts designing the workflow

The paper treats L3 as the crucial transition from executor to orchestrator. At L2, humans design the pipeline and agents execute pieces. At L3, the agent interprets a high-level user goal, constructs a workflow across data management, preparation, and analysis, adapts based on intermediate results, and leaves humans mainly as supervisors.

That is the first level where the phrase “autonomous data agent” begins to deserve oxygen.

However, the paper is careful: current systems are mostly Proto-L3, not fully mature L3. They show partial orchestration ability in constrained environments. They may use LLM-based planners, predefined operators, workflow optimization, tool libraries, multi-agent collaboration, or stateful long-running interactions. They can coordinate tasks across heterogeneous systems, but they still rely heavily on curated tools, bounded task definitions, and human-crafted guardrails.

The paper’s Table 2 is especially useful here. It is not an experimental result, and it should not be read as a leaderboard. Its likely purpose is comparison and positioning: it maps research prototypes and industrial products by tool flexibility, data complexity, lifecycle coverage, and task support. The table shows that many systems cover pieces of management, preparation, and analysis, but the coverage is uneven. Some systems are open-source, some are not. Some handle multi-source or heterogeneous data, fewer handle multimodal complexity. Some support report generation, others focus on query optimization, cleaning, or structured analysis.

For business readers, the table’s meaning is simple: “data agent” is not a single product category. It is a bundle of possible capabilities, and most products instantiate only part of the bundle.

Paper artifact Likely purpose What it supports What it does not prove
Figure 1 overview Conceptual framing Data agents span management, preparation, and analysis That current agents cover the full lifecycle robustly
Figure 2 level positioning Taxonomy illustration Different systems sit at different autonomy levels That higher-positioned systems are production-ready
Figure 3 L3 diagram Mechanism explanation L3 means conditional workflow orchestration That current systems have achieved mature L3
Table 1 general vs data agents Category distinction Data agents face larger, noisier, more governed environments That data agents are always harder in every task
Table 2 Proto-L3 comparison Landscape mapping Current systems vary across tool flexibility and lifecycle coverage That checkmarks equal reliability, ROI, or safety

This distinction matters because L3 changes the management model. At L1, review the answer. At L2, supervise the execution. At L3, audit the plan.

That is a different operating discipline. A supervisor must understand not only whether the final chart looks plausible but whether the agent selected the right data sources, applied the right transformations, handled missingness correctly, chose the right analysis method, and stopped when uncertainty became too high. The human moves from doing the work to judging a machine-designed workflow. That is progress, but it is not free.

The bottleneck is not another chat interface

The paper identifies several gaps that prevent current systems from realizing full L3 autonomy: limited pipeline orchestration, reliance on predefined operators, inadequate higher-order causal and meta-reasoning, difficulty adapting to dynamic environments, and dependence on human-crafted reinforcement learning setups for alignment and adoption.

These are not minor engineering details. They are the core reason many “agentic data” demos work beautifully in prepared examples and become fragile in real organizations.

A data task is rarely just a sequence of API calls. It requires deciding what matters, what changed, what can be trusted, and whether the task should be attempted at all. Consider a revenue drop investigation. A weak agent retrieves sales tables and plots a trend. A better agent checks schema changes, discount policy, channel mix, missing orders, currency conversion, late-arriving data, and whether the “revenue” metric means booked, billed, recognized, or collected revenue. The annoying part is that all six definitions may exist somewhere in the same company.

That is why causal and meta-reasoning matter. The agent must reason about the process that produced the data, not just the data itself. It must ask whether a pattern is a business event, a pipeline artifact, a measurement change, or a semantic mismatch. Without that, orchestration becomes a longer way to produce a wrong answer.

The paper’s roadmap is therefore less glamorous than “autonomous AI data scientist,” but more useful: improve perception over complex data ecosystems, expose appropriate indexes and summaries as the agent’s senses, train and evaluate agents in realistic operational environments, and develop benchmarks that measure autonomy, robustness, adaptability, and safety beyond task-level accuracy.

In other words, stop asking whether the chatbot sounds like an analyst. Ask whether the system can survive contact with an enterprise data lake.

L4 is proactive operation, not a louder alerting system

L4 agents are described as proactive, long-lived, self-governing components of Data+AI ecosystems. They monitor data lakes, systems, and models continuously. They detect data drift, performance regressions, schema changes, and data quality issues. They identify opportunities such as missing indexes, beneficial materializations, or promising analytical workflows. They prioritize tasks and act without explicit user instructions, while operating within reliability, safety, and governance constraints.

This is where autonomy becomes operationally serious. L4 is not “the agent can answer more types of questions.” It is “the agent notices problems before users ask.”

That has obvious business appeal. Many data failures are discovered late because humans only notice after dashboards break, model performance decays, or executives ask why numbers changed. A genuine L4 agent could reduce detection latency, automate routine diagnosis, and maintain data assets continuously.

But the same capability creates a new problem: unsupervised prioritization. If the agent can decide what matters, it needs a model of cost, risk, business importance, latency, and data quality. It must choose between competing interventions. Should it rebuild a stale materialized view, investigate a suspected schema drift, tune a slow query, or flag a suspicious KPI movement? The answer is not purely technical. It depends on business context.

That is why L4 is still a research vision in the paper, not a product claim to accept casually. The required ingredients—task discovery, intrinsic motivation, long-horizon planning, multi-objective trade-offs, and governance—are not solved by connecting an LLM to more tools. More tools merely increase the number of ways to make a mess.

For firms, the near-term lesson is to build toward L4 in modules: monitoring, anomaly triage, metadata enrichment, lineage-aware diagnosis, safe recommendation, approval workflows, and rollback. That path produces value before full autonomy arrives. It also avoids the charming strategy of giving a probabilistic system production privileges and calling the incident report “innovation.”

L5 is invention, and procurement should stop pretending otherwise

L5 is the most ambitious level: a fully autonomous generative data scientist. Such an agent would not merely apply known methods. It would identify gaps in current techniques, hypothesize new algorithms or representations, design experiments, analyze results, and refine its own solutions. It would contribute to the evolution of database and ML systems, not just operate them.

This is an important research north star. It is not a near-term enterprise feature.

The paper is explicit that L4 and L5 remain speculative. That statement deserves more attention than it will probably receive, because “autonomous data scientist” is exactly the phrase that sales narratives enjoy. But the distance between L3 and L5 is not the distance between a cheaper plan and a more expensive plan. It is the distance between supervised workflow orchestration and methodological invention.

A practical test is simple:

Vendor claim Likely real level What to ask
“Ask questions in natural language over your warehouse” L1 Does it only generate SQL or also validate assumptions?
“The agent can run SQL, create charts, and iterate” L2 What tools can it execute, and where are the approval gates?
“The agent builds an end-to-end analysis workflow” Proto-L3 / L3 Can it select sources, plan transformations, recover from errors, and explain the workflow?
“The agent monitors your data stack proactively” Aspirational L4 unless proven What does it detect without prompts, and what actions can it safely take?
“The agent is an autonomous data scientist” Usually marketing poetry What new methods has it invented, tested, and validated?

There is nothing wrong with buying L1 or L2 systems. In many companies, that is exactly where the ROI is: faster SQL drafting, lower analyst bottlenecks, better documentation, safer cleaning assistance, and more consistent report generation. The problem begins when L1 economics are sold with L5 language.

What Cognaptus infers for business adoption

The paper directly provides a taxonomy and state-of-the-art map. Cognaptus infers a practical adoption model from it: organizations should align agent autonomy with data risk, operational maturity, and governance capacity.

For low-risk analytical exploration, L1 may be enough. A copilot that drafts SQL, explains schema, or proposes charts can save time without taking control of production systems. For repeated operational tasks with measurable feedback, L2 becomes attractive: cleaning standardization, query tuning experiments, report assembly, or bounded diagnostic loops. For cross-functional data workflows, Proto-L3 systems may be worth piloting, but only where humans can inspect plans, intermediate artifacts, and final outputs.

The wrong adoption sequence is to chase “autonomy” as a single product feature. The better sequence is to move responsibility one layer at a time:

  1. Suggestion: Let the agent draft and explain.
  2. Execution: Let it run bounded tools with logs and approvals.
  3. Orchestration: Let it design workflows under supervision.
  4. Proactivity: Let it monitor and recommend before being asked.
  5. Invention: Treat this as research, not next quarter’s dashboard upgrade.

This sequence also clarifies ROI. L1 ROI comes from time saved. L2 ROI comes from repeatable execution and reduced handoff cost. L3 ROI comes from workflow compression across data roles. L4 ROI would come from earlier detection and autonomous maintenance. L5 ROI, if it becomes real, would come from discovering methods humans did not specify.

Different level, different business case. One invoice should not pretend to buy all five.

The boundary: taxonomy is not validation

The paper is a tutorial and taxonomy-oriented survey, not a controlled benchmark study. It does not prove that a specific product is safe, cost-effective, or ready for production autonomy. Its tables and figures classify and compare; they do not certify reliability. That boundary is important.

A system’s placement on the L0–L5 ladder should be treated as a starting hypothesis, not a procurement verdict. Firms still need task-specific evaluation: accuracy, latency, cost, auditability, permission design, rollback, security, data privacy, user acceptance, and failure recovery. The taxonomy tells you what questions to ask. It does not answer them for your environment.

The second boundary is that autonomy is not always desirable. A finance team may prefer a slower human-approved workflow for regulatory reporting. A product analytics team may accept more automation for exploratory dashboards. A data platform team may allow autonomous recommendations but require approval for production configuration changes. Higher level is not automatically better. Sometimes the correct level is lower, cheaper, and less likely to surprise the compliance officer.

The third boundary is semantic. “Human-in-the-loop” can mean anything from real review authority to a decorative approval button clicked after the system has already shaped the outcome. L3 supervision only works if humans can inspect the plan, understand the evidence, and intervene meaningfully. Otherwise, the loop is mostly theater, and not even good theater.

The reality check is useful because it is boring in the right way

The paper’s most useful contribution is not a dramatic claim that data agents will replace data teams. It is a disciplined vocabulary for saying what kind of help a system provides and how much responsibility has actually shifted.

That sounds boring. It is also exactly what the market needs.

Without levels, every tool becomes an “agent,” every agent becomes “autonomous,” and every autonomous system somehow still needs a human to fix the CSV encoding problem. With levels, firms can separate assistance from execution, execution from orchestration, orchestration from proactivity, and proactivity from invention.

For now, the practical frontier is not L5. It is making L2 and Proto-L3 systems robust, transparent, governable, and useful in real data environments. That is less cinematic than an autonomous data scientist. It is also where the near-term business value probably lives.

The dashboard will still fail. But with the right autonomy level, the organization may at least know whether the agent is allowed to explain the failure, test the failure, fix the failure, or merely produce a confident paragraph about how failures are opportunities for learning. One of these is useful. The others should be priced accordingly.

Cognaptus: Automate the Present, Incubate the Future.


  1. Yuyu Luo, Guoliang Li, Ju Fan, and Nan Tang, “Data Agents: Levels, State of the Art, and Open Problems,” arXiv:2602.04261, 2026. https://arxiv.org/html/2602.04261 ↩︎