What problem does it solve? Running mechanistic interpretability experiments (logit lens, activation patching, probing) on LLMs requires repetitive setup: loading hooked models, caching expensive forward passes, and structuring intervention scripts. This Skill standardizes that setup so attention-focused research projects can run causal internal analysis without rebuilding infrastructure each time. ## Core Features & Use Cases - Intervention Protocol Templates: Provides ready-to-adapt one-file scripts for logit lens, attention pattern visualization, activation patching, path patching, probing classifiers, and SAE feature lookup. - Activation Caching: Implements SHA256-keyed caching of forward pass activations to avoid recomputing runs longer than 30 minutes, with cache hit/miss logging. - Structured Results: Enforces a JSON result format with seeds, confidence intervals, shuffled controls, and mandatory alternative explanations. - Use Case: In an auto-research project on attention mechanisms, generate a probe.py wrapper and an analysis script to test whether head L5H3 implements previous-token copying via activation patching across 64+ examples and 3 seeds. ## Quick Start Set up the attention probing environment for my auto-research project and create an activation patching script to test my hypothesis about head L5H3.