Imagine you're a detective trying to figure out if someone at a party is joking about poisoning the punch or actually plotting it. Reading the words alone won't cut it — you need to know who they hang out with, what they posted last week, whether their friends are laughing or nodding seriously. That's the core mechanism here: an LLM agent that doesn't just read a tweet, but selectively queries its social neighborhood before deciding what the speaker actually meant. The committed claim is this: conspiracy detection is not a text classification problem — it's a socially embedded interpretation task where adaptive, per-case reasoning over social context outperforms both text-only classifiers and non-agentic models given the same context upfront. The authors frame this as a shift from pattern-matching surface lexical features to inferring illocutionary force — whether a tweet endorses, mocks, or merely references a conspiratorial claim. The dataset is genuinely impressive in scope: 80–90% of all public Hebrew tweets over a roughly four-year period (late 2018 to early 2023), spanning multiple Israeli election cycles and the entire COVID vaccination discourse. This isn't a curated convenience sample. The evaluation set, however, is deliberately adversarial and manually annotated — designed to include ambiguous cases where surface text alone misleads. The agent is equipped with social query tools (follower networks, posting history, community membership) that it invokes selectively, case by case, rather than dumping all context into the prompt. The ladder comparison is where this gets interesting. The paper compares the agentic framework against three settings: text-only LLM classification, a non-agentic LLM given the full social context as static input, and the agentic framework with tool access. The agent consistently outperforms both alternatives. Crucially, the non-agentic model with identical context still underperforms the agent — suggesting that adaptive, selective retrieval matters more than context volume. Specific accuracy numbers aren't in the abstract, but the authors claim statistically significant improvements. Architecturally, this is a tool-augmented LLM agent in the ReAct/function-calling family. The agent decides at each reasoning step which social query tool to invoke — it's not a fixed pipeline. The tools surface social graph features (who follows whom, co-retweeting patterns, account history) that the agent folds into its chain-of-thought reasoning. The compute overhead is non-trivial: the paper explicitly analyzes token economy tradeoffs, acknowledging that agentic workflows burn more tokens per classification decision than static approaches. On integrity, the manually annotated adversarial test set is a strength — adversarial annotation specifically targets cases where text-only methods fail, which is a fair but tough benchmark. The weakness: this is a single-language, single-platform study. Hebrew Twitter is a small, tightly networked ecosystem. Whether the social-context advantage transfers to English Twitter, Telegram, or Reddit — platforms with different network structures — is an open question the authors don't test. The error analysis and efficiency reporting are welcome transparency moves. The successor experiment practically writes itself: run this on English or Arabic Twitter data at comparable scale. The authors almost certainly didn't because acquiring 80–90% coverage of English tweets over four years is a vastly larger engineering and cost problem — Hebrew Twitter's relatively small size is what made this feasible. The honest read is (a): they leveraged a unique data advantage, and extending it requires either a funded collaboration with a platform or a massive compute budget.