Why Good Systems Start by Learning the Rules of Attention
Hatched by Nan Wang
Aug 05, 2026
10 min read
1 views
86%
What do a data science agent and a game player have in common?
At first glance, almost nothing. One is a machine that parses messy directories, plans analytic steps, and checks its own work. The other is a human player whose attention is pulled by time pressure, salient cues, and habits like keyword scanning. But the deeper question connecting them is surprisingly simple: how does an intelligent system decide what matters first?
That question sounds technical when applied to software and psychological when applied to people, yet it is the same problem in both cases. Whether you are building an agent, designing a game, or training a human to think under pressure, performance depends less on raw intelligence than on attention management under uncertainty. The system must notice the right signals, ignore the noise, and revise its plan before it drifts too far.
This is why the most interesting parallel between automated planning and game cognition is not that both involve steps. It is that both are fundamentally attention architectures. They decide what enters the workspace, what gets deferred, what gets checked, and when the current model of the world should be abandoned.
Intelligence is not only the ability to solve problems. It is the ability to allocate attention so that the right problem becomes visible in time.
The hidden bottleneck: attention before intelligence
People often talk about smart behavior as if it begins with reasoning. In practice, reasoning begins with selection. If you cannot surface the right context, you cannot plan well. If you cannot distinguish a meaningful cue from background noise, you cannot act well. This is why a data analysis agent that first scans all files and produces a textual summary is so revealing: it treats context gathering as a first class operation, not a clerical one.
That move mirrors a basic truth of human cognition. Players do not perceive a game world all at once. They sample it. They notice a flashing object, a health bar, a timer, or a keyword in a dialogue box. Then they narrow their attention toward the goal. The mind is always filtering, and the filter is not neutral. It is shaped by salience, timing, memory, and expectation.
Consider a beginner in a strategy game. The map may contain twenty actionable items, but the player sees only the one that looks urgent. Under time pressure, that urgency becomes decisive. The same pattern appears in analytics work. A novice examining a folder full of mixed files may jump too quickly into the first spreadsheet while missing the README, the image legend, or the text log that explains the schema. A strong system, human or machine, resists that premature commitment by first constructing a context map.
That is the first lesson: planning quality depends on preplanning perception.
Why good agents and good players both need a map before a move
The most underrated step in any intelligent process is not execution. It is orientation. Before a useful move can happen, the system needs to answer three questions:
- What is here?
- What matters right now?
- What might be missing from my view?
A data science agent that automatically summarizes a directory is doing something more profound than file inspection. It is creating a cognitive map. The map reduces the chance of blind action. It tells the system whether the directory contains clean tables, unstructured notes, code artifacts, or a mixture of all three. That matters because a plan is only as good as the assumptions it rests on, and assumptions are usually where failures hide.
Game psychology offers the same insight in a different costume. Players rely on stimulus driven attention when something is conspicuous, but they also use goal directed attention when searching for what they need. Good design orchestrates both. A bright enemy indicator may pull the eye, but the player still needs a target rich mental model of the objective. In other words, attention must be both captured and steered.
This is why a floating user interface does not necessarily break immersion. The interface is not the world, but it can still serve the world if it helps the player act. Likewise, a machine does not need raw sensory purity. It needs usable representation. What matters is not whether the information is embedded in the environment or displayed on top of it. What matters is whether the system can turn the display into action.
Here is a useful mental model: intelligence is a loop between compression and expansion.
- First, the system compresses the world into a manageable summary.
- Then it expands that summary into a concrete plan.
- Then it compresses the results of action back into feedback.
- Then it revises the plan.
This loop appears in both domains. A player scans the situation, forms a plan, acts quickly, sees the consequences, and updates. A data agent surveys the files, proposes a sequence, executes a step, checks whether the step was sufficient, and adapts. The mechanism changes, but the logic is the same.
The best systems do not begin with certainty. They begin with a better map than their uncertainty.
The real power is not planning, but planned revision
Most people think the hard part is making a plan. But the deeper difficulty is knowing when the plan is wrong. That is where many intelligent systems fail. They either overcommit to the first interpretation or become so cautious that they never move.
The verification stage in a modern agent is important precisely because it breaks the fantasy of perfect foresight. It asks after each step: is the plan still sufficient? That is not a minor engineering detail. It is the difference between static planning and adaptive intelligence. Static planning assumes the world will obey the initial model. Adaptive intelligence assumes the model will be incomplete.
Human cognition works the same way, though often less explicitly. A skilled player does not merely follow a script. The player watches for feedback, revises tactics, and notices whether the current strategy is still aligned with the goal. Time pressure makes this harder, but it also makes it more visible. Under pressure, the mind falls back on salience, habits, and shortcuts. That is why keyword scanning becomes so important. When attention is scarce, humans do not read every character. They extract the smallest set of cues that preserve action.
This is not laziness. It is a survival strategy.
And it suggests a broader framework for design: every intelligent system should include a deliberate mechanism for revision under constrained attention.
In a game, this might mean signaling the highest priority information through color, motion, or position. In an analytics agent, it might mean forcing a structured check after each transformation. In a team workflow, it might mean stopping after discovery to ask, “What would make this plan fail?” Revision is not a tax on performance. It is the performance.
A useful analogy is navigation. A driver does not need a complete map of every street in the city to reach a destination. They need enough context to choose a route, and then they need periodic updates when conditions change. Without updates, the map becomes fiction. Without revision, a plan becomes a confident mistake.
The deepest commonality between a smart agent and a skilled player is not speed. It is controlled reorientation.
Time pressure, mirror systems, and why action shapes perception
Game psychology adds a crucial layer that technical systems often miss: time changes perception. When the clock is ticking, attention narrows. The player becomes more reactive, more selective, and often more literal in what is noticed. That pressure can be harmful, but it can also sharpen performance when the environment is designed well.
This matters because time pressure does not simply reduce thought. It changes the kind of thought that is possible. The mind shifts toward salient objects, expected patterns, and previously reinforced behavior. That is why mirror neurons are such an evocative clue. Observing action can recruit the same circuitry as performing action. In practical terms, humans are not detached observers first and actors second. We are often preparing action by simulating it.
That simulation principle also helps explain why rich context matters so much in machine systems. If a data agent sees only a narrow slice of the environment, it will simulate the wrong action. If it sees enough context, it can internally rehearse a more accurate path before committing. The agent is not simply retrieving facts. It is building a model of how the facts behave under action.
There is an important design implication here. Many systems overvalue completeness and undervalue actionable completeness. Users do not need all information. They need the information that changes what they do next. A game HUD can be visually separate from the world and still highly effective because it is not trying to replicate reality. It is trying to preserve the player’s ability to act.
That suggests a sharper way to think about interfaces, dashboards, and even AI workflows: good representation is not maximally detailed representation. It is representation optimized for next action.
This is where the connection between human attention and machine planning becomes unexpectedly deep. Both are shaped by the same rule: the world is too large to inspect fully, so intelligence emerges from selective exposure plus rapid revision. If the first exposure is poor, the action is poor. If revision is absent, the error compounds.
In that sense, a system does not need perfect awareness. It needs useful incompleteness.
A practical model: the attention loop
We can now turn the shared logic into a simple framework that applies to both people and systems.
1. Sense the landscape
Before doing anything, gather enough context to avoid false starts. In a directory, that means surveying the file types, structure, and clues hidden in unstructured documents. In a game, it means scanning for visible threats, objectives, timers, and affordances.
2. Extract the decisive cue
Do not ask what is present. Ask what changes the next move. A keyword in a document, a health warning in a UI, or an anomalous file name can matter more than a thousand irrelevant details.
3. Act with a provisional plan
The plan should be strong enough to move, but weak enough to change. If a plan cannot be revised, it is not a plan. It is a bet.
4. Verify against reality
Ask whether the step was sufficient. Did the transformation preserve structure? Did the intervention solve the immediate problem? Did the player’s chosen path actually reduce risk? Verification is where intelligence gets paid for or exposed.
5. Reorient quickly
Use the new evidence to refine the map. This is the moment when learning happens. Not after perfect success, but after useful correction.
This loop explains why sequential planning works better than one shot planning in messy environments. The environment is not a static puzzle. It is an unfolding conversation. Each step reveals information the previous step could not know.
And that is the larger insight hiding inside both sources: the highest form of intelligence is not prediction alone, but prediction that expects to be corrected.
The system that wins is not the one that sees everything at once. It is the one that notices just enough, acts fast enough, and revises honestly enough.
Key Takeaways
- Start with context, not action. Whether you are analyzing files or making a game decision, build a quick map of what is present before choosing a path.
- Treat attention as a scarce resource. Under pressure, both humans and systems rely on cues, salience, and shortcuts. Design for that reality instead of pretending it does not exist.
- Make verification a first class step. A plan that cannot be checked after each move is fragile. Revision is not an add on, it is part of intelligence.
- Optimize for next action, not maximum detail. A good interface or summary shows what changes behavior now, not everything that could ever be known.
- Assume incompleteness. The goal is not perfect foresight. It is enough context to move wisely and enough feedback to correct quickly.
The deeper lesson: intelligence is managed uncertainty
We often imagine intelligence as a spotlight that illuminates the world more and more clearly. But a more realistic image is a lighthouse in fog. It does not erase uncertainty. It reveals just enough of the coast to guide the next safe turn.
That is what good games teach players, and what good agents teach machines. Not omniscience, but disciplined attention. Not final plans, but revisable ones. Not total context, but context that is rich enough to support action. The art is not in knowing everything. The art is in knowing what to notice first, when to move, and when to admit the map needs updating.
So the next time you see a system that begins by summarizing its environment, or a player who instinctively scans for the most useful cue, do not think of them as simple optimizers. Think of them as solving the same problem from two different sides: how to turn an overwhelming world into a sequence of intelligent acts.
And that reframes the whole question. The mark of a smart system is not that it avoids uncertainty. It is that it knows how to work inside it.
Sources
Hatch New Ideas with Glasp AI 🐣
Glasp AI allows you to hatch new ideas based on your curated content. Let's curate and create with Glasp AI :)
Start Hatching 🐣