← All notes
AILeadership

Stop AI Team Hero Culture Before It Breaks Reliability

A failure-mode guide for AI leaders who want fewer emergencies, less dependency on key people, and more reliable systems.

At 4:40 p.m., an internal AI assistant starts returning plausible answers from an outdated policy. One engineer knows how the retrieval index was assembled. She finds the stale source, rebuilds the index, checks a handful of questions, and keeps the incident from reaching customers.

Everyone is relieved. The engineer receives public thanks. The team moves on.

That response feels healthy because capable work deserves recognition. Yet the incident contains a warning: one person held the map, the recovery depended on memory, and the organization learned almost nothing. If the same engineer must rescue the next index, prompt, model, or tool failure, expertise has turned into a single point of failure.

This is hero culture in technical work. It does not mean the people are arrogant, or that leaders consciously want emergencies. It means rescue is more visible and more rewarded than prevention. The person who restores a broken agent at midnight becomes memorable. The person who introduced versioned indexes, actionable alerts, a rollback command, and a rehearsal may remain almost invisible because the emergency never happened.

AI systems make this pattern especially risky. Their failures are not always loud. A service can stay online while answer quality drifts. An agent can complete tasks while taking an unsafe path. A coding assistant can accelerate output while increasing review debt. When detection and recovery live inside one person’s head, a team may look fast right up to the moment that person is unavailable.

The goal is not to eliminate exceptional effort. Real surprises will still demand it. The goal is to stop designing ordinary operations around extraordinary people.

Failure mode 1: rescue work is mistaken for high performance

Imagine two engineers during a quarter. One repeatedly jumps into incidents, manually corrects bad outputs, and answers every urgent message. The other reduces noisy alerts, writes a rollback runbook, expands the evaluation set, and trains two colleagues to operate the service. The first contribution is easier to see. The second is more likely to scale.

If promotion, praise, and leadership attention consistently favor the rescuer, people learn the local definition of value. They stay close to fragile components, accept interruptions, and postpone the quiet work that would reduce demand for their expertise. Managers then interpret constant activity as commitment instead of asking why the activity remains necessary.

Google’s Site Reliability Engineering guidance offers a useful counterweight. Google describes repetitive, reactive operational work as toil and caps aggregate operational work for SRE teams at 50 percent so that substantial time remains for engineering that improves the service. Its guidance on operational overload also warns that excessive ticket work can crowd out improvement, increasing burnout while weakening scalability and reliability.

The exact percentage is not a universal rule. The management principle is: measure the work that keeps recurring, then protect capacity to remove its causes.

Recognition should therefore cover both response and prevention. Thank the person who stabilized the service. Also recognize the colleague who makes a repeat incident less likely, shortens recovery for everyone, or removes the need for manual intervention. Promotion evidence can include lower alert noise, reduced repeat incidents, improved test coverage, shorter recovery time, clearer ownership, and successful knowledge transfer.

This changes the status system. Reliability work stops looking like housekeeping and becomes visible engineering.

Failure mode 2: the expert becomes part of the architecture

A system diagram may show models, APIs, vector stores, queues, tools, and databases while omitting the component that actually keeps everything working: “ask Sara” or “wait until Reza is online.”

That hidden dependency commonly appears when one person:

  • holds the only production credential or vendor contact
  • knows which dashboard can distinguish model failure from retrieval failure
  • can repair the data pipeline because its assumptions were never documented
  • remembers the safe deployment order for prompts, schemas, and tool definitions
  • manually reviews a sensitive output queue without a trained backup
  • understands why a strange configuration must not be changed

Expertise is not the problem. Every serious team needs deep specialists. The failure is leaving expertise as the only control.

Documentation alone is not enough either. A long page that nobody can find during an incident is merely stored text. Operational knowledge has to be executable: a short runbook, named permissions, working commands, decision thresholds, current contacts, and a second person who has practiced the path.

For an AI application, a useful recovery runbook might show how to pause agent actions without disabling read-only access, switch to a safer model, restore a previous prompt or index, inspect recent traces, notify affected owners, and validate recovery against a small critical test set. Each step should name the authority required and the evidence that confirms it worked.

This connects to the hidden work behind reliable AI projects: the production system includes ownership, evaluation, integration, and operations, not only the model call visible in a demo.

Failure mode 3: every urgent request bypasses the operating model

Hero culture is not created only by incidents. It can grow from ordinary executive and customer requests.

A leader wants a new data source connected by Friday. A client asks the agent to perform one additional action. A product manager needs a last-minute prompt change for a demonstration. Each request looks small. The experienced engineer makes it happen manually because explaining the constraints would take longer.

Over time, exceptions become the real process. Access reviews are bypassed, temporary configurations remain, evaluation is shortened, and nobody knows which version is authoritative. The team becomes excellent at accommodation but poor at repeatability.

Leaders should not answer this with heavy approval chains. They need a small set of non-negotiable operating boundaries. For example:

  • changes to a model, prompt, tool schema, or retrieval index run the relevant regression tests
  • production actions use named accounts and logged permissions
  • irreversible or high-impact agent actions require explicit approval
  • experimental exceptions have an owner and expiry date
  • an urgent change records what was skipped and when the debt will be resolved

These boundaries make speed more honest. The team can still accept an exception, but it cannot pretend the exception is free.

The rescue ledger: turn anecdotes into operational evidence

Leaders often know that a team feels overloaded but cannot see the pattern clearly. A rescue ledger makes recurring intervention visible without turning it into a blame register.

For four to six weeks, record every unplanned intervention that materially interrupts planned work. Keep the fields small:

FieldQuestion to record
TriggerWhat signal or request started the intervention?
User impactWhat could a user, customer, or colleague experience?
RescuerWho was required, and why could others not act?
RecoveryWas the response manual, scripted, or automatic?
DetectionDid monitoring find it, or did a person report it?
Repeat statusHas a materially similar event happened before?
Prevention candidateWhat control could reduce recurrence or recovery time?
Owner and dateWho will test that improvement, and by when?

The ledger is not a leaderboard for who worked hardest. Its unit of analysis is the system, not the individual’s virtue. Review it monthly and sort entries into four classes:

  1. Eliminate: repetitive work that a product, data, or engineering change can remove.
  2. Automate: a necessary and stable procedure that software can perform safely.
  3. Distribute: legitimate expert work that needs training, access, or rotation.
  4. Accept and rehearse: rare, consequential work that cannot sensibly be removed but can be prepared for.

Then choose a small number of improvements. Trying to automate every annoyance creates another backlog. Frequency alone should not decide priority; combine frequency, consequence, recovery effort, and concentration of knowledge.

Useful measures include repeat incidents, pages per on-call shift, manual interventions per workflow, time to detect, time to restore, evaluation failures caught before release, and the share of interventions requiring one named person. These do not prove reliability by themselves. They reveal whether dependency and interruption are moving in the right direction.

Failure mode 4: automation preserves a bad process

“Automate the rescue” sounds sensible, but automation can scale confusion.

Suppose an agent repeatedly fails to complete a task because a downstream tool returns ambiguous errors. Adding retries may reduce visible failures while increasing latency, cost, and duplicate actions. Automatically rebuilding a retrieval index may restore freshness while silently changing which documents users can access. Generating incident summaries can save time while omitting the uncertainty investigators need to discuss.

Before automating an intervention, ask:

  • Is the desired outcome clear?
  • Is the manual decision stable enough to encode?
  • Can the action be reversed?
  • What permissions does automation gain?
  • How will duplicate or partial execution be handled?
  • Which signal tells us the automation made things worse?
  • Who owns it after the original expert leaves?

Sometimes the right fix is deletion, simplification, or a narrower service promise. Sometimes a checklist is safer than code. Sometimes the workflow should stop and ask a person rather than improvise.

The point is not maximum automation. It is minimum avoidable fragility.

Failure mode 5: the post-incident review celebrates recovery

A weak incident review tells the dramatic story: the issue appeared, several people worked intensely, and a clever fix restored service. A stronger review studies the conditions before and after the rescue.

Why was the stale policy eligible for retrieval? Why did monitoring miss answer-quality degradation? Why could only one person rebuild the index? Which decision was reasonable given the information available at the time? What made the safe action hard? Which improvement will be tested, rather than merely recommended?

This is where blame quietly causes damage. If reviews search for the careless individual, people learn to hide weak signals and polish the timeline. If reviews examine system conditions while preserving accountability for decisions, people can report uncertainty earlier.

NIST’s Generative AI Profile makes incident preparation concrete: organizations should define ownership for generative AI incident-response functions, rehearse plans regularly, communicate them to relevant actors, and improve them through retrospective learning. That sequence matters. A document is not preparation until people can use it, and a retrospective is not learning until something changes.

For AI incidents, include changes to prompts, models, datasets, indexes, permissions, and tool schemas in the timeline. Preserve traces where privacy and security rules allow. Separate the immediate trigger from contributing conditions. A model response may trigger an incident, while weak evaluation, stale content ownership, broad tool authority, or missing escalation thresholds made the impact possible.

For a deeper treatment of thresholds and rehearsals, see AI reliability needs protocols, not blind trust.

Failure mode 6: prevention has no protected capacity

Teams rarely solve structural fragility in spare time because crisis-driven teams have no spare time. A manager can approve every postmortem action and still prevent completion by filling the next sprint with features.

Capacity must become explicit. It may be a fixed reliability allocation, a rotating improvement owner, or a rule that repeat high-severity incidents pause related feature work. The mechanism matters less than the tradeoff being visible.

Leaders also need to distinguish planned operational work from interruption. On-call coverage, model evaluations, data-quality checks, access reviews, and dependency upgrades are not failures of productivity. They are part of operating the service. Hidden, unbounded, repetitive work is the warning.

This distinction helps with staffing. Adding another person to a fundamentally manual workflow may temporarily reduce pain while increasing the number of people exposed to it. Investing in observability, self-service recovery, test environments, and safer defaults may produce less visible output this quarter but improve capacity thereafter.

Making that work legible is part of leadership. Making AI work visible before trust breaks explains why traces, ownership, risk, and operating evidence matter to both technical teams and business stakeholders.

A practical test for leaders

An AI, data, or software leader can diagnose hero dependency with seven questions:

  1. Which production problem can only one person resolve today?
  2. Which interruption has occurred at least twice without a funded prevention action?
  3. Do alerts lead to a defined action, or merely create anxiety?
  4. Can a trained backup use the runbook and required permissions without private help?
  5. Does the team review AI quality degradation as seriously as service downtime?
  6. Are prevention and knowledge transfer considered in performance reviews?
  7. What planned work will stop so the highest-value reliability improvement can happen?

Uncomfortable answers are useful. They show where to work before an absence, vendor change, security issue, or growth in usage turns a manageable weakness into a crisis.

Do not respond by removing autonomy from the strongest people. Give them a better mandate: turn private expertise into team capability. Pair them with colleagues, fund the tooling, ask them to design rehearsals, and reward them when fewer situations require their direct intervention.

Keep exceptional effort exceptional

There will always be incidents that exceed the runbook. A new failure mode appears, a provider behaves unexpectedly, or several ordinary safeguards fail together. In those moments, calm expertise and extra effort matter.

But exceptional response should buy learning, not become the subscription price for operating the system.

A reliable team can explain what it operates, detect meaningful degradation, distribute recovery knowledge, practice difficult decisions, and change conditions after incidents. It does not need every person to know everything. It does need to avoid confusing one person’s availability with resilience.

Celebrate the rescue when it is deserved. Then ask what the organization will do before the next alert. The most respectful use of an expert’s effort is not to make that person repeat it forever. It is to convert what they learned into a system the whole team can trust.

More notes