← All notes
LeadershipAI

Measure AI Work Without Losing Leadership Judgment

A practical note on using metrics, evaluation, and observability in AI work without letting dashboards replace leadership judgment.

AI teams are surrounded by numbers now.

There are token counts, latency percentiles, retrieval scores, model evaluation results, cost dashboards, hallucination rates, user ratings, prompt versions, agent traces, acceptance rates for coding suggestions, incident counts, and adoption metrics. If the team is using several models, there may also be routing decisions, fallback behavior, provider error rates, and cost per task.

This is useful progress. A few years ago, many generative AI projects were judged by demos, screenshots, and executive excitement. Today, more teams understand that a fluent answer is not the same as a reliable system. They know that a retrieval assistant needs evaluation. They know that an agent needs tracing. They know that a coding assistant can increase speed while also changing review load, test quality, and maintenance risk.

But measurement can create its own problem.

Once a dashboard exists, people may start treating the dashboard as the decision. A metric becomes a target. A target becomes a performance theater. The team improves what is easy to count while the harder leadership questions stay unanswered: Should this workflow exist? Which risks are acceptable? Who owns the system when it fails? What should humans still decide? Are we making work better, or only moving the cost somewhere else?

I do not think the answer is to measure less. AI work needs more disciplined measurement, not less. The better lesson is that measurement is only one kind of work. It helps a team improve a system that already has a direction. It does not choose the direction by itself.

That distinction matters more as AI moves from experiments into production.

Metrics Are Useful When The Goal Is Clear

Good metrics are practical. They reduce guessing. They help a team notice drift, compare alternatives, identify bottlenecks, and decide whether a change improved the system or only made the demo look better.

For a RAG application, measurement can separate retrieval failure from generation failure. Did the system find the right source? Did the model use it correctly? Did the answer cite evidence? Did the user get a complete response, or only a confident partial answer?

For an AI agent, measurement can show whether the agent is using tools efficiently, repeating actions, making unnecessary calls, failing on permissions, or taking too long to complete a task. For an AI coding workflow, measurement can show whether cycle time improved, whether review burden increased, whether test coverage changed, and whether defects escaped more often.

These are not abstract concerns. LangChain’s 2026 State of Agent Engineering reported that many organizations now have agents in production, while quality, latency, observability, and evaluation remain central concerns. Datadog’s 2026 State of AI Engineering described production AI systems as multi-model, multi-service systems where prompts, retrieval, tools, and model changes can affect cost, latency, and failure rates without an obvious code change.

That is exactly where measurement earns its place. If a system is non-deterministic, connected to tools, exposed to users, and changing over time, teams need evidence. They need traces. They need test sets. They need production signals. They need enough visibility to know whether the thing they shipped is still behaving like the thing they approved.

But the useful phrase is “behaving like the thing they approved.” Measurement serves an intention. It does not replace one.

Before a team measures an AI workflow, it should be able to answer a few plain questions:

  • What job is this system supposed to help someone do?
  • What would count as a good outcome for the user, not only for the model?
  • What mistakes are acceptable, and which mistakes are unacceptable?
  • What should be automatic, and what should require human approval?
  • What would make us stop, rollback, or redesign the workflow?

If those questions are not answered, the team may still collect numbers. The numbers just may not mean much.

AI Evaluation Is Not The Same As Leadership

Evaluation is one of the most important practical skills in modern AI engineering. I have argued before that practical AI skill is proven by what you can build, test, explain, and improve, not by vocabulary alone. That point applies directly to teams as well as individuals. In How to build practical AI skills for today’s tech job market, the core idea was simple: proof matters. In production AI work, evaluation is part of that proof.

Still, evaluation has limits.

An offline test set can tell you whether a prompt or model performs better on known examples. It cannot prove that the workflow is worth doing. A human review sample can catch subtle quality issues. It cannot decide whether the organization should rely on AI for that decision in the first place. A dashboard can show that average latency improved. It cannot tell you whether users now trust the system less because the answers feel rushed or incomplete.

This is where technical leaders need to be careful. AI evaluation can become a way to avoid leadership decisions. Instead of asking whether the system should make a recommendation, the team asks whether recommendation accuracy is above a threshold. Instead of deciding how much autonomy an agent should have, the team watches completion rate. Instead of setting clear boundaries around sensitive data, the team adds another monitoring chart.

Those measurements may be useful, but they are not substitutes for judgment.

NIST’s Generative AI Profile is helpful here because it frames AI risk management across governance, mapping, measurement, and management. Measurement is one function in a broader system. The organization still has to define context, understand harms, assign responsibility, and decide how risks should be handled.

That broader view matters because AI systems do not fail only through bad answers. They fail through mismatched expectations, unclear authority, weak review processes, poor data governance, hidden cost growth, brittle workflows, overreliance, and missing escalation paths. Some of those failures can be measured after the fact. Many have to be prevented through design and leadership before the dashboard has anything to show.

The Wrong Metrics Can Make AI Work Worse

The most dangerous metrics are not always inaccurate. Sometimes they are accurate measurements of the wrong thing.

A team can measure how many documents an AI assistant summarizes per hour. That may be useful if the summaries are accurate and the workflow saves real time. It becomes harmful if people stop checking whether the summary preserved the decision-critical details.

A team can measure how many coding tasks an AI agent completes. That may be useful if completed means reviewed, tested, merged, and maintainable. It becomes harmful if completed means the agent produced a patch that looks plausible.

A team can measure how often employees use an internal chatbot. That may be useful if usage reflects solved problems. It becomes harmful if adoption is treated as value while employees quietly use the tool because they were told to, or because the old support process was removed.

This is not only an AI problem. Software teams have been misusing numbers for a long time: lines of code, story points, ticket counts, pull request counts, meeting hours, velocity charts. AI adds a new layer because the outputs can look polished even when the underlying work is weak. A metric can improve while the real system becomes more fragile.

The DORA team’s 2024 research is a useful reminder that AI adoption can bring benefits and tradeoffs at the same time. The report highlights individual productivity and flow benefits, but also warns about impacts on delivery stability and throughput. That is the kind of nuance leaders need. A single number rarely tells the whole story.

For AI teams, I would be cautious with any metric that rewards volume without quality:

  • more generated code without maintainability signals
  • more automated tickets without customer outcome signals
  • more agent actions without task success and review quality
  • more chatbot answers without evidence quality
  • more AI usage without workflow improvement
  • more model calls without cost and latency discipline

The problem is not that these numbers are useless. The problem is that they are incomplete. They should be treated as indicators, not conclusions.

Lead The Change, Measure The Operation

There are two different questions hiding inside many AI projects.

The first question is operational: how do we make the existing workflow faster, cheaper, safer, or more reliable? Measurement is strong here. If the goal is to reduce support response time, improve search relevance, lower manual triage effort, or cut inference cost, a team can define a baseline and track whether the system improves.

The second question is directional: what should this workflow become now that AI is available? Measurement can inform that question, but it cannot answer it alone.

A company may start by adding an AI assistant to a knowledge base. After a few months, the important question may not be “How do we increase chatbot usage?” It may be “Why do employees need to ask these questions so often?” Maybe the policies are unclear. Maybe onboarding is weak. Maybe ownership is scattered. Maybe the AI assistant is exposing a deeper information architecture problem.

A software team may start by measuring coding assistant acceptance rate. After a while, the important question may not be “How do we accept more suggestions?” It may be “Which parts of our codebase are so repetitive or confusing that developers rely on AI to move through them?” Maybe the better answer is refactoring, better APIs, better tests, or simpler product requirements.

A data team may build a natural-language analytics assistant. The operational metrics may focus on answer correctness and latency. The leadership question may be more basic: which business metrics are ambiguous, disputed, or poorly governed? If the organization cannot define revenue, churn, active users, or margin consistently, an AI interface may only make confusion easier to access.

This is where leaders have to do more than inspect dashboards. They have to interpret what the numbers are telling them about the organization. Sometimes the AI system needs optimization. Sometimes the surrounding workflow needs redesign. Sometimes the metric reveals that the real problem is not technical.

A Better Measurement System Has Multiple Layers

Good AI measurement is not one dashboard. It is a layered view of the system.

At the product layer, the team should measure whether users are actually getting useful outcomes. Are support agents resolving cases faster without lowering quality? Are analysts reaching correct conclusions? Are engineers spending less time on low-value work and more time on design, review, and problem solving? Are customers getting better service?

At the AI behavior layer, the team should evaluate answer quality, retrieval quality, tool-use accuracy, instruction following, structured output validity, refusals, hallucination risk, and edge cases. This is where test sets, human review, LLM-as-judge methods, and regression checks can help.

At the software layer, the team should watch latency, availability, error rates, retries, timeouts, rate limits, dependency failures, and rollback behavior. AI applications are still applications. They need production engineering discipline.

At the business layer, the team should track cost, adoption, impact on human workload, compliance needs, risk exposure, and opportunity cost. A system that works technically may still be the wrong investment if it solves a low-value problem or creates expensive review work elsewhere.

At the human layer, the team should study trust, overreliance, user confusion, review quality, and escalation behavior. A human approval step does not mean much if reviewers do not know what they are approving. A citation does not mean much if users assume every cited answer is verified. A confidence score does not mean much if nobody understands how it should affect action.

These layers should not be owned by one person alone. Product, engineering, data, security, operations, and business stakeholders all see different failure modes. The goal is not to make measurement complicated for its own sake. The goal is to avoid the false comfort of a narrow dashboard.

What Leaders Should Decide Before The Dashboard

Before building a full measurement program, leaders should make a few decisions explicit.

First, decide the system’s level of authority. Is the AI suggesting, drafting, ranking, deciding, or acting? Those are not the same. A drafting assistant can tolerate different errors than an agent that updates customer records or changes production code.

Second, decide what evidence is required. For some workflows, a model answer is enough. For others, the system should show source passages, tool results, calculations, policy references, or audit trails. Evidence design is part of product design.

Third, decide the boundary of automation. Which actions are blocked? Which need approval? Which can run automatically but must be logged? Which require a second reviewer? Without clear boundaries, teams tend to negotiate risk informally after the system is already in use.

Fourth, decide how improvement will be judged. Do not rely only on average scores. Look at important user segments, high-risk cases, long-tail failures, regressions, cost changes, and failure severity. A model that improves the average but gets worse on the cases that matter most may be a bad upgrade.

Fifth, decide who can stop the system. This sounds dramatic, but it is practical. If quality drops, a provider changes behavior, a prompt update fails, or a security concern appears, someone needs authority to pause, rollback, or limit usage. A metric without an action path is only decoration.

These decisions make measurement more useful because they give the numbers somewhere to go. If latency crosses a threshold, what happens? If a regression test fails, who reviews it? If human reviewers disagree with the model in a sensitive workflow, does the team retrain, rewrite prompts, adjust policy, or reduce automation?

Measurement becomes valuable when it changes behavior.

Learners Should Practice This Early

This is not only advice for executives or senior managers. It is also useful for learners, data professionals, software engineers, and early-career AI builders.

Many portfolios still focus too much on showing that an AI feature works once. A more serious project shows how the builder thinks about measurement and decisions.

If you build a RAG assistant, do not only show a chat screen. Show the evaluation set. Show examples where retrieval failed. Explain why you chose a chunking strategy. Track answer support, citation quality, and cases where the system should say it does not know.

If you build an agent, do not only show a successful run. Show traces. Show tool errors. Show step limits. Explain which actions are allowed, which are blocked, and what happens when the agent gets stuck.

If you build a coding assistant workflow, do not only show generated code. Show tests, review criteria, defect tracking, and what you changed when AI output looked correct but was not maintainable.

This is a stronger signal than another generic demo. It shows practical judgment. It shows that you understand AI as engineering work, not magic. It also prepares you for real conversations inside companies, where the hard question is rarely “Can we call the model?” The hard question is usually “Can we trust this workflow enough to use it?”

The Takeaway Is Measurement With Judgment

Metrics help teams manage what exists. Leadership helps teams decide what should exist next.

AI work needs both. Without measurement, teams drift into demos, anecdotes, and wishful thinking. They cannot see quality regressions, hidden costs, brittle prompts, weak retrieval, tool misuse, or user confusion. Without leadership, teams drift into dashboard management. They optimize the visible number while the real workflow, risk, or business problem remains unclear.

The practical answer is not to reject metrics. It is to put metrics in their proper role.

Use evaluation to test behavior. Use observability to understand production. Use cost and latency metrics to make tradeoffs visible. Use user research and human review to catch what automated scores miss. Use governance to define boundaries. Use leadership judgment to decide what the system is for, how much authority it should have, and when the organization should change direction.

In modern AI work, the strongest teams will not be the ones with the most dashboards. They will be the ones that know what their dashboards are for. They will measure carefully, interpret honestly, and still make the hard decisions that cannot be delegated to a chart.

More notes