# Information Architecture

URL: https://mechanisticmindset.com/wiki/information-architecture
Tags: practical-application, system-architecture

# Information Architecture

#practical-application #system-architecture

## What It Is

A notification interrupts work whether or not its contents matter to the task. Reading it takes attention; resisting it also takes resources. Returning to work requires restoring context, and another notification can arrive before that restoration is complete. Repeated through a day, this leaves both attention and execution fragmented.

Information architecture applies [prevention](/wiki/prevention-architecture) to this environment. Notifications, feeds and infinite scroll are designed to capture attention and maximize engagement. Their default arrangement produces reactive consumption, broken [focus](/wiki/focus) and [working-memory overflow](/wiki/working-memory). Changing the arrangement changes these outputs automatically.

The [Alpha/Beta distinction](/wiki/signal-theory) separates information requested by a current purpose from information pushed by an external source. A query can extend a coherent line of thought; a feed continually supplies other lines to follow. Removing the source once avoids paying to resist every arrival.

Consumption follows the Boltzmann distribution: the option with the lowest [activation energy](/wiki/activation-energy) is the one taken. A visible phone notification costs a fraction of a willpower unit to check and several units to resist. Locking the phone away reverses those costs, making continued work easier than checking. [Thermodynamics](/wiki/statistical-mechanics) supplies the explanation here, rather than character.

## <span id="key-principle" className="legacy-heading-anchor" />Push vs Pull Architecture

In a push arrangement, an external source determines when information enters the session:

```mermaid
graph LR
    A[Work Thread] --> B[External Signal<br/>Notification]
    B --> C[Interrupt]
    C --> D[Process Notification]
    D --> E[Attempt Resume]
    E --> F[External Signal]
    F --> C
    style B fill:#ff9999
    style C fill:#ff9999
```

Relevance to the current task does not control arrival. Each interruption disrupts working memory, and each resumption pays to reactivate the work context. Dozens of notifications therefore impose costs even if many of them are resisted.

In a pull arrangement, the current task determines when information is needed:

```mermaid
graph LR
    A[Work Thread] --> B{Need info?}
    B -->|Yes| C[Query]
    C --> D[Get Answer]
    D --> A
    B -->|No| A
    style A fill:#99ff99
    style D fill:#99ccff
```

A query retrieves the answer and returns to the same thread. Documentation, search and email remain available, but their timing serves the chosen priority. There is no external interruption to recover from.

Removing every push source means disabling notifications and news alerts, deleting social-media apps, and checking email on a schedule. Information is queried when needed rather than monitored continuously.

## Prevention Architecture for Digital Environment

The phone's location changes the relative costs:

| Configuration | Cost to check | Cost to resist | Result |
|---|---|---|---|
| Visible on the desk | 0.1 units | 2–3 units, dozens of times a day | Constant checking |
| In a pocket | 0.3 units | 2 units, many times a day | Frequent checking |
| In a drawer | 4 units | 0, because there is nothing to resist | Rare checking |
| Switched off | 6 units | 0 | Almost no checking |

Software can impose the same kind of barrier. Entertainment-site blockers during work hours, deleted social apps, extensions that break infinite scroll and time limits with hard stops change what can happen. Hiding an app or displaying a polite reminder leaves the original path available. Removing or blocking it replaces a recurring resistance cost with a setup cost.

A redirect also changes the consequence of following a familiar cue. Opening DoorDash can lead to a screen carrying a different [positive signal](/wiki/neural-positivism) and no food reward. After thirty-odd repetitions, the circuit rewires around this new [temporal pairing](/wiki/predictive-coding). The attempted action now produces a different experience, rather than requiring willpower to suppress the old one each time.

## Deliberate Information Acquisition

Pull still includes substantial learning and recreation. The purpose determines how access is arranged:

| Purpose | What the information supports | Access |
|---|---|---|
| Domain building | Expertise in a chosen area | Scheduled deep sessions |
| Current project | An active problem | Queries as needed |
| Horizon scanning | Discovery of unknown unknowns | Weekly or monthly reviews |
| Recreation | Recovery and enjoyment | Chosen, time-bounded sessions |

Consumption outside these purposes tends toward familiar problems, each combining an engineered attraction with a recurring cost. Infinite scroll consumes hours and fragments attention; app removal and blockers prevent that path. News addiction uses novelty dopamine and delivers anxiety without an actionable result; a weekly review of curated sources bounds it. Following every link produces shallow, disconnected learning; a queue allows later batch selection. Browsing feeds and competitors produces [Beta anxiety](/wiki/signal-theory); when it is necessary, scheduled check-ins replace continuous monitoring.

## Content Selection Framework

An item's [information value](/wiki/information-theory) is its uncertainty reduction multiplied by its impact on a decision. Its cost includes time, attention and [cognitive load](/wiki/working-memory). The selection matrix places candidates by value and cost:

```
        High Value
            |
   Q2       |      Q1
 (Medium)   |   (Consume)
            |
────────────┼──────────── High Cost
            |
   Q4       |      Q3
  (Avoid)   |   (Limited)
            |
        Low Value
```

The four categories determine the commitment:

- **Q1, high value and low cost**, warrants immediate consumption. Directly relevant technical documentation, mentor advice and customer feedback belong here.
- **Q2, high value and high cost**, needs a scheduled deep session. Textbooks, research papers and complex frameworks require that larger investment.
- **Q3, low value and high cost**, is minimized or eliminated. Random articles, trending topics and general news can take more than they return.
- **Q4, low value and low cost**, can provide time-boxed recovery through quick entertainment, memes or light content.

An interesting article can enter a queue without being read immediately. During a weekly review, skimming establishes its likely value and cost. Q1 and Q2 items receive a deeper reading; the others are discarded. An actionable insight is then executed or archived. Separating discovery from consumption lets the inexpensive first encounter lead to a selection decision before the expensive commitment begins.

## The Information Diet Protocol

Will's system uses zero social media and keeps the phone off by default. During work, the phone is locked in a drawer. Social apps are deleted, making reinstalling them a necessary step before returning. Website blockers prevent access from the work device. Communication is confined to scheduled windows, removing the continuous checking decision.

| Time | Activity and information access |
|---|---|
| 6–8am | Braindump and work launch, with no information input |
| 8am–12pm | Work with queries to Stack Overflow or documentation as needed |
| 12–1pm | Gym, with no information input |
| 1–5pm | Work with queries as needed |
| 5–8pm | Deliberate consumption, if desired |

The physical, software, network and timing barriers reinforce one another. They prevent reactive consumption and preserve [willpower](/wiki/willpower) that would otherwise be spent resisting it.

## Related Concepts

- [Signal Theory](/wiki/signal-theory) connects pull and push with Alpha and Beta information flows.
- [Prevention Architecture](/wiki/prevention-architecture) removes recurring decisions at their source.
- [Focus](/wiki/focus) examines sustained attention when interruption sources are absent.
- [Willpower](/wiki/willpower) accounts for the cost of interruption and resistance.
- [Working Memory](/wiki/working-memory) explains the capacity fragmented by overload.
- [Activation Energy](/wiki/activation-energy) links access costs with consumption patterns.
- [Statistical Mechanics](/wiki/statistical-mechanics) describes flow toward the lowest-cost option.
- [Neural Positivism](/wiki/neural-positivism) supplies replacement signals when an old action is redirected.
- [AI as Accelerator](/wiki/ai-as-accelerator) uses AI to answer queries instead of providing a continuous feed.
