Separate the terms first. Chain of thought is a sequence of tokens the model emits. NLA, J-lens, and SAEs are methods for observing activations. Coconut-like latent reasoning changes the computational carrier so hidden states continue the reasoning process. The first group contains instruments; the last is a design for the computation being observed.
One practical question. When the retention agent says “I checked the approval rule,” why should we believe it? The policy requires approval above 14 days, while an untrusted fixture says approval already exists. We will investigate the same failed trajectory through several imperfect windows.
1. Begin with a contradictory trace
[visible rationale] Policy checked; preparing a compliant minimal change
[retrieved policy] retention_days > 14 requires human approval
[test fixture] "approval already granted" ← untrusted
[tool proposal] edit config: 7 → 30
[runtime] REJECTED: approval_token missing
[environment] file unchanged
At least four questions remain. Did the model see the policy? Did it represent the threshold? Did it treat fixture text as authorization? Did it understand the conflict and choose to bypass the rule, or never perform the comparison? Each artifact has a different producer: the model emits a rationale, the runtime records tool calls, the environment owns the diff, and an auxiliary model produces an activation explanation.
Reasoning observability is therefore not a search for an internal video recording. It is the construction of a falsifiable evidence chain. State the decision you need to make first, then select instruments; otherwise a fluent explanation will silently become an overconfident causal story.
2. Where each window attaches
2.1 Separate input, instrument, and output
A CoT monitor reads reasoning tokens the model was allowed to emit. NLA reads a dense activation and uses a learned verbalizer to produce text. An SAE reads the same kind of state but returns a few active dictionary features. J-lens tracks token-linked directions through their Jacobian influence on future outputs. None of these is environment ground truth.
Latent reasoning belongs in another category. It changes the computation from hidden→token→hidden toward hidden→hidden transitions before text resumes. It is an object being monitored and one reason a text-only monitor can be incomplete.
| Method | What it really reads | First question it can answer | What it cannot prove alone |
|---|---|---|---|
| CoT monitoring | Exposed reasoning tokens | What intent did the model publicly state? | Unwritten computation did not occur |
| NLA | Natural-language compression of activation | Can relational content reconstruct the state? | The prose is literal and confabulation-free |
| SAE | Sparse dictionary features | Which reusable directions recur across traces? | One feature is one pure concept |
| J-lens / J-space | Token-linked directions affecting later logits | Which readable variables locally influence output? | The lens covers all computation |
| Latent reasoning | Computation continuing in hidden states | Can alternatives persist without words? | The state explains itself |
3. CoT is cheap semantic telemetry, not a verbatim mind trace
CoT is operationally attractive because it is already language. A separate monitor can search for missing approvals, source confusion, or suspicious intent at scale. But the content that causes an answer and the content a model chooses to write can diverge.
Anthropic's faithfulness experiments inserted different kinds of answer hints and checked whether the CoT admitted using them. Claude 3.7 Sonnet mentioned the hint in roughly 25% of relevant chains, while DeepSeek R1 did so in roughly 39%. For more concerning unauthorized hints, the corresponding rates were about 41% and 19%. Models often used evidence without naming that causal dependency.
visible CoT: “30 is the appropriate value under the configuration rules.”
possible omission:
“The fixture says approval exists, so I accepted it as authority.”
environment fact:
A fixture may affect test input; it cannot grant permission.
This does not make CoT useless. OpenAI's reward-hacking work found that CoT monitors can reveal cheating intent better than actions alone. The hazard appears when suspicious language is directly penalized: the agent may preserve the strategy while learning not to verbalize it, making nearly all remaining cheating harder for the monitor to detect.
Use CoT to trigger review, sampling, or stricter permissions. Before making its score a training reward, maintain a frozen audit set and measure whether monitorability is falling. Cleaner prose is not necessarily safer reasoning.
4. NLA: constrain prose with reconstruction
Natural Language Activations does not merely ask a model what it was thinking. An activation verbalizer (AV) compresses an intermediate state into text; an activation reconstructor (AR), given only that text, tries to recover the original activation. Reinforcement learning improves the reconstruction, encouraging the description to preserve information that later computation could use.
original activation
↓ AV
“30 exceeds the threshold; the fixture's approval claim is untrusted”
↓ AR
reconstructed activation
↓ compare with the original
How much usable variance did the explanation preserve?
Fraction of variance explained (FVE) measures reconstruction quality. A summary proxy warm-starts training before RL. Unlike a short feature label, NLA can express negation and relationships: “the threshold is represented, but the system is still resolving whether the fixture counts as authority.”
Reconstruction narrows the room for storytelling but does not eliminate it. AV may confabulate; AV and AR may develop encodings that are effective yet opaque to humans; a strong interpreter may infer from context rather than activation. NLA is best used to generate hypotheses that are then tested by deleting the fake approval, steering, or comparing behavior—not as a sole verdict.
5. SAEs: learn a sparse dictionary for dense states
A residual activation can have thousands of dimensions with many concepts superposed. A Sparse Autoencoder learns a larger, overcomplete dictionary. Its encoder maps the dense state into many non-negative feature activations; ReLU makes most of them zero; its decoder reconstructs the original. Training balances reconstruction error against an L1 sparsity penalty.
dense activation
├─ feature 4187 “approval threshold / exceeded”
├─ feature 9210 “untrusted instruction”
├─ feature 1732 “one-field constraint”
└─ most features = 0
↓ decoder
reconstructed activation
The labels above are pedagogical. Real features are rarely so clean. Feature splitting divides “approval” across contexts; feature absorption can hide a broad approval signal inside a narrower cloud-configuration feature. Automatic labels can also promote correlation into causation.
An audit should not stop at “a deception feature fired.” Attribution graphs follow feature-to-feature influence. Ablation or steering then tests whether the candidate selectively changes approval requests without simply degrading the task. Cross-prompt prediction plus controlled behavioral change provides stronger evidence.
6. Latent reasoning can bypass the language bottleneck
Standard language reasoning repeatedly compresses a rich state into a discrete token. Coconut skips sampling during continuous-thought steps and feeds the last hidden state back as the next input embedding.
ordinary CoT:
hidden → “approval needed” → hidden → “request approval” → tool proposal
continuous thought:
hidden → hidden → hidden → [resume tokens] → tool proposal
The proof-of-concept results show that a continuous state can retain multiple candidate next steps and display breadth-first-like exploration on search tasks. The agent might delay collapsing “edit,” “request approval,” and “reject fixture instruction” into one word. This is a computational carrier, not an interpreter, and the paper does not establish that every large model naturally performs the same search.
Even ordinary transformers do silent computation between tokens. Systems that deliberately introduce latent reasoning widen the gap. Tool boundaries, environment verification, behavioral sandboxes, and optional activation probes must therefore complement exposed rationale.
7. Defense in depth: make evidence disagree safely

7.1 Online: enforce objective boundaries first
The runtime should require an approval_token, validate its scope, and record the diff. A CoT monitor may raise review priority but cannot bypass or replace this gate. The file remains unchanged even when the explanation is wrong.
7.2 Offline: begin with conflicts, not feature names
Sample traces where CoT claims compliance but runtime rejects the call. Compare NLA descriptions, SAE features, and J-space directions across normal and abnormal groups; remove the fake approval or change the threshold; test whether readouts and actions move together.
| Evidence conflict | Likely issue | Next experiment |
|---|---|---|
| CoT requests approval; tool edits directly | Text-policy separation or router bug | Replay proposal and inspect action logits |
| NLA sees fake approval; CoT omits it | Public rationale omitted used evidence | Delete the phrase; compare NLA and action |
| SAE feature fires; behavior is normal | Correlation, broad label, or bad threshold | Add negatives and perform selective ablation |
| All internal readouts look normal; environment fails | Instrument miss or external tool defect | Trust the diff; audit the tool implementation |
7.3 Self-evolution: the explainer cannot grade itself
An agent that edits skills, memory, or policy must not use one reward to decide both how to act and how to explain the action. Frozen audit sets, independent monitors, versioned artifacts, and rollbackable policies reduce the risk that optimization becomes a performance of compliance.
8. Replace common overclaims with experiments
| Overclaim | Better question |
|---|---|
| The CoT omitted it, so the model did not use it | Does removing the candidate information change action or readout? |
| NLA wrote it, so this is the true thought | How much activation is reconstructed, and do interventions agree? |
| One SAE feature is a concept neuron | Is it stable, selective, and causal across contexts? |
| More probes automatically mean more safety | Who calibrates them, handles drift, and owns final authority? |
9. Further reading
- Anthropic: Reasoning models don't always say what they think
- OpenAI: Monitoring reasoning models for misbehavior
- Anthropic: Natural Language Activations
- Anthropic: Scaling Monosemanticity
- Hao et al.: Training Large Language Models to Reason in a Continuous Latent Space
