📚 ShroomDog Picks

Long-form articles, translated and explained

204 posts

← Back to home

Programming is Becoming Unrecognizable: Karpathy Says December 2025 Was the Turning Point

Karpathy says coding agents started working in December 2025 — not gradually, but as a hard discontinuity. He built a full DGX Spark video analysis dashboard in 30 minutes with a single English sentence. Programming is becoming unrecognizable: you're not typing code anymore, you're directing AI agents in English. Peak leverage = agentic engineering.

The 2028 Global Intelligence Crisis: An Economic Autopsy from the Future

Investment research firm Citrini Research spent 100 hours writing a fictional '2028 Macro Memo': AI gets too good → white-collar layoffs → consumer spending collapses → mortgage crisis → S&P drops 38%. Not a prediction — a scenario. But each step is logical enough to make you uncomfortable. 9,400+ likes, viral across the internet.

Code Got Cheap — Now What? Simon Willison's Agentic Engineering Survival Guide

Simon Willison launched a new series called Agentic Engineering Patterns — a playbook for working with coding agents like Claude Code and Codex. Lesson one: writing code got cheap, but writing good code is still expensive. Lesson two: 'red/green TDD' is the most powerful six-word spell for agent collaboration.

This Guy Deployed a Second AI Just to Fix His Broken AI

Upgrading OpenClaw keeps breaking your agent fleet? This developer's solution: spin up a separate Gateway as a 'family doctor' that does nothing but fix the main Gateway's agents. Been running it through multiple upgrades — rock solid.

Karpathy on the Claw Era: Huge Upside, but Security Must Come First

Karpathy's post is a reality check for the Claw era. He frames Claws as the next layer above LLM agents, but warns that exposed instances, RCE, supply-chain poisoning, and malicious skills can turn productivity systems into liabilities. His direction: small core, container-by-default, auditable skills.

The Senior Engineer's Curse: You See the Mechanism, Users Pay for the Feeling

Mike Chong explains why senior engineers often underestimate good products — once you understand how something works, you can't unsee it, and you lose the ability to appreciate what it feels like. Three examples (OpenClaw heartbeat, Claude in PowerPoint, Klarna AI support) all point to the same lesson: implementation is the method, user feeling is the product.

Inside Claude Code's Prompt Caching — The Entire System Revolves Around the Cache

Anthropic engineer Thariq shared hard-won lessons about prompt caching in Claude Code: system prompt ordering is everything, you can't add or remove tools mid-conversation, switching models costs more than staying, and compaction must share the parent's prefix. They even set SEV alerts on cache hit rate. If you're building agentic products, this is a masterclass in real-world caching.

Simon Willison: CLI Tools Beat MCP — Less Tokens, Zero Dependencies, LLMs Already Know How

Simon Willison doubles down on his stance: CLI tools beat MCP in almost every scenario for coding agents. Lower token cost, zero extra dependencies, and LLMs natively know how to call --help. Anthropic themselves proposed a 'third way' with code-execution-with-MCP, acknowledging MCP's token waste problem. This article breaks down the full MCP vs CLI trade-off, including a real-world case study from the ShroomDog team.

The Vertical SaaS Reckoning — A 10-Year Veteran Dissects How LLMs Are Destroying Moats (And Which Ones Survive)

Nicolas Bustamante — founder of Doctrine (Europe's largest legal information platform) and Fintool (AI equity research competing with Bloomberg/FactSet) — dissects 10 classic moats of vertical software from both the disrupted and disrupting sides. 5 moats destroyed by LLMs, 5 still standing. Includes a three-question risk assessment framework for evaluating your SaaS holdings.

Claude Sonnet 4.6 Is Here — Newer Training Data Than Opus? A Three-Way Comparison to Help You Choose

Anthropic releases Claude Sonnet 4.6 — a major upgrade at the same price: Adaptive Thinking, knowledge through August 2025, and training data extending to January 2026 (newer than Opus 4.6). This article compares Sonnet 4.6, Sonnet 4.5, and Opus 4.6 across five dimensions: price, speed, context, knowledge freshness, and use cases — so you can figure out which one to actually use.

Discord Config Guide: You Thought You'd Write Config Files? No, You Just Argue With Your Agent

Karry shares a complete hands-on guide to setting up Discord with OpenClaw. Core philosophy: 'Configuration as Conversation' — the only manual step in the entire process is grabbing a Token from the Developer Portal. Everything else — Bot connection, Agent personality shaping, Cron Jobs, debugging — happens through conversation. Six markdown files that define an agent's personality weren't written; they grew from living together and stumbling through mistakes.

The Cost of Staying: A Bloomberg Beta Investor Maps the AI Career K-Curve

Bloomberg Beta investor Amy Tam dissects career tradeoffs in the AI era from a VC perch. Her core thesis: the shift from execution to judgment is already happening, and the K-curve is widening — early movers are compounding, while fence-sitters are compounding in the opposite direction. She maps the tradeoffs across FAANG, Quant, Academia, AI Startups, Research Startups, and Big Model Labs.

Forget Google Docs — Use GitHub as Your AI Agent's Shared Workspace

Will your AI agent's work survive until tomorrow? Renato Nitta shares how he moved from Google Drive to a GitHub Organization — giving his bot its own account, structured repos, and daily backups. Git isn't just version control. It's your agent's long-term memory.

Self-Healing PRs — Devin Autofix Lets Humans Just Make the Final Call

Cognition ships Devin Autofix: review bot comments auto-trigger fixes → CI reruns → loop until clean. Humans only step in for architecture calls. Key insight: a single agent is a tool, but agent + reviewer loop is a system — and systems compound.