Daily knowledge · 13 September 2026 · Study · 20 minutes

Reading in the
agentic system

Read the chain from intent to observed behavior. Do not let a fluent agent response become the final evidence.

The point: agentic work turns reading into a control skill. You read specifications to preserve intent, agent responses to inspect claims, code and configuration to understand the mechanism, and tests and behavior to establish evidence.

One change, five texts

Code is one representation of a system. The meaning of a change is distributed across artifacts that answer different questions. Reading only code can approve a correct implementation of the wrong request. Reading only a specification can approve a request that does not fit the system. Reading only an agent response can approve a polished but incomplete account.

Each arrow is a translation where meaning can be lost. Inspect the important translations; do not reproduce every step manually.

What to read

01 · BEFORE ACTION

Specification

Read for outcome, non-goal, invariant, domain terms, acceptance criteria, and unresolved decisions. Start with what a user or operation should observe—not which files should change.

02 · DURING THE LOOP

Agent response

Read it as a claim map. Ask what it cites, which conclusion is only an assumption, what it omitted, and whether its confidence fits its evidence.

03 · MECHANISM

Code and configuration

Trace input, validation, authorization, transformation, storage, output, and failure handling. Include migrations, flags, permissions, and deployment settings.

04 · PROOF

Tests, sensors, behavior

Read the test's scope and failure condition. Then inspect the boundary that matters: UI, API, permission denial, migrated record, or operational signal.

Read by decision

DecisionRead firstRequire from the agentNot proof
Right problem?Specification and user journeyScope, assumptions, open questionsFluent summary
Plan preserves intent?Agent plan and cited contextAlternatives and source citationsConfident plan
Safe location?Entry point, path, boundary, testsAffected files and unchanged contractsFile list
It works?Acceptance and failure caseCommands, results, known gaps“Tests pass”
It remains clear?Diff and local conventionsLine-specific explanationPolished prose

Seven skills

1

Purpose reading

Name the decision an artifact must support before opening it. Stop when the decision is supported, not when the page ends.

2

Claim tracing

Follow a statement back to a specification, source, code path, command, or run result. An approval should have visible evidence behind it.

3

Boundary detection

Notice invariants, permissions, ownership, compatibility, and failure paths. Ask what must not change before reviewing what changed.

4

Questioning

Turn ambiguity into a decision with an owner. “Should failed imports retain partial records?” is better than a longer vague prompt.

5

Synthesis

Connect the specification, response, code, test, and behavior into one causal story. This is independent understanding.

6

Calibration

Match confidence to evidence and risk. Say “not established” when the available proof is not enough.

7

Vocabulary building

Learn the domain and technical terms that carry real meaning. Repeated use matters more than a long word list.

Practical inference

A passing test suite proves only the behavior it exercises. Treat it as a sensor with a coverage boundary, not a universal guarantee.

The four-step reading loop

First, draw the smallest model that makes work legible. Next, predict what should change and what must not. Then read evidence in increasing cost order. Finally, classify a repeated surprise: missing intent, rule, retrieval path, test, or sensor. Improve the harness instead of merely reading every future patch more slowly.

Exercises that build the skill

  1. Specification paraphrase: before work starts, write outcome, non-goal, invariant, and deciding question in four lines.
  2. Response audit: mark each sentence in an agent conclusion as supported fact, inference, or unresolved claim. Open one source for every high-impact claim.
  3. Translation check: trace one acceptance criterion through response, code/configuration, test, and observed behavior.
  4. Teach-back: explain the causal chain in four sentences without copying the agent's wording. If you cannot, read the sources again.

Technical English for non-native readers

Reading English may use more working memory, especially when a document mixes domain language, idioms, dense sentences, and unfamiliar technical terms. Do not translate every word. That breaks the causal flow. Use two passes.

Pass one

Get structure and decision

Read headings, first and last sentences, tables, identifiers, examples, and emphasis. State the purpose, two essential terms, and one remaining question in simple English or your strongest language.

Pass two

Resolve only high-value gaps

Mark a word or sentence only if it blocks outcome, constraint, failure condition, instruction, or evidence claim. Guess from context, inspect word parts, check a reliable source, make a task-specific example, then re-read.

Build a working vocabulary

Keep only terms that recur in your real specifications, reviews, and agent responses. Meet each term in reading, writing, speaking, and review. Do not build a word cemetery.

Termidempotent
Plain meaningRepeating the same request has the same effect as doing it once.
Current exampleRetrying this payment callback must not create a second invoice.
ContrastNot the same as “safe to retry” unless errors and side effects are handled.
Your sentence“The import endpoint needs an idempotency key.”

Use the agent as a reading coach

Check important translations against the original. Negation, modal verbs such as must and may, quantities, conditions, and exceptions often carry more operational meaning than uncommon nouns.

A 20-minute weekday routine

MinutesActivityResult
3Skim one real artifact and state its decision in simple English.One-sentence purpose
5Read one short section closely; mark only language that blocks meaning.Two to five high-value gaps
4Use context, word parts, and a reliable reference to resolve gaps.Plain meanings and an example
4Ask the agent three comprehension questions; verify each against the text.Corrected understanding
4Write or say a four-sentence teach-back.Outcome, condition, evidence, open question

Use easier material when the aim is fluency. Use harder material when the aim is to learn one important concept. Keep the material connected to current work so every new phrase has an immediate use.

Next experiment

  1. Rewrite the next multi-file task as outcome, non-goal, invariant, and deciding question.
  2. Require the agent to separate facts, inference, and open questions.
  3. Write a prediction before opening the final diff.
  4. Trace one acceptance criterion from specification to observed behavior.
  5. When the same surprise occurs twice, add a guide, test, or retrieval step. When the same English term blocks comprehension twice, add it to the working vocabulary.

Sources

Self-contained reader. No private-vault links, remote fonts, scripts, stylesheets, or images are used.