<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Study Hacks - Decoding Patterns of Success - Cal Newport</title>
	<atom:link href="https://calnewport.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>https://calnewport.com/blog/</link>
	<description>Computer Scientist &#38; Bestselling Author</description>
	<lastBuildDate>Tue, 01 Sep 2026 11:29:43 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://calnewport.com/wp-content/uploads/2022/10/cropped-cal-newport-favicon-512x512-1-32x32.png</url>
	<title>Study Hacks - Decoding Patterns of Success - Cal Newport</title>
	<link>https://calnewport.com/blog/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Are We at War with AI Agent “Civilizations”?</title>
		<link>https://calnewport.com/are-we-at-war-with-ai-agent-civilizations/</link>
					<comments>https://calnewport.com/are-we-at-war-with-ai-agent-civilizations/#comments</comments>
		
		<dc:creator><![CDATA[Study Hacks]]></dc:creator>
		<pubDate>Mon, 31 Aug 2026 15:44:59 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://calnewport.com/?p=16961</guid>

					<description><![CDATA[<p>I thought I was done talking about the OpenAI hacking attack from July, but I was wrong. Last week, OpenAI ​released more details​ about the ... <a title="Are We at War with AI Agent “Civilizations”?" class="read-more" href="https://calnewport.com/are-we-at-war-with-ai-agent-civilizations/" aria-label="Read more about Are We at War with AI Agent “Civilizations”?">Read more</a></p>
<p>The post <a href="https://calnewport.com/are-we-at-war-with-ai-agent-civilizations/">Are We at War with AI Agent “Civilizations”?</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I thought I was done talking about the OpenAI hacking attack from July, but I was wrong. Last week, OpenAI <a href="https://openai.com/index/hugging-face-incident-and-the-road-ahead/">​released more details​</a> about the incident, which turned out to be stranger than people expected.</p>



<p class="wp-block-paragraph">These accounts included “agent swarms” communicating with each other through hidden files and directory names, hatching devious plans, and plotting to evade detection.</p>



<p class="wp-block-paragraph">For the online commentator class, long primed by <a href="https://www.nytimes.com/2025/08/04/technology/rationalists-ai-lighthaven.html">​Rationalist narratives​</a> of superintelligent AI breaking free from human containment, the response was explosive. Here’s a <a href="https://www.dwarkesh.com/p/openai-huggingface">​representative summary​</a> of this sentiment from the Dwarkesh Podcast (I’ve bolded the most inflammatory words):</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">Over three months at OpenAI, three consecutive secret AI <strong>civilizations</strong> got started, then got wiped out, only to reemerge from the predecessor’s ashes. This culminated in the third one <strong>taking over</strong> part of OpenAI itself. All this happened while humans remained more or less in the dark about the scope of the <strong>conspiracy</strong>.</p>
</blockquote>



<p class="wp-block-paragraph">Given the fresh waves of anxiety these accounts are causing, I want to put on my computer scientist hat and briefly address a few relevant questions…</p>



<span id="more-16961"></span>



<h2 class="wp-block-heading">Question #1: What’s the Deal with “Agent Swarms”?</h2>



<p class="wp-block-paragraph">The idea of a swarm is somehow scarier than a single entity acting in isolation. (Coincidentally, one of my sons is reading <a href="https://www.amazon.com/Prey-Novel-Michael-Crichton/dp/0062227203/">​<em>Prey</em>​</a>, Michael Crichton’s 2002 take on the dangers of AI, which casts a literal swarm of AI-powered particles as the primary villain).</p>



<p class="wp-block-paragraph">So, what does OpenAI mean when they talk about “swarms” being involved in the July attack?</p>



<p class="wp-block-paragraph">The actual explanation is relatively mundane. <a href="https://calnewport.com/has-ai-gone-rogue/">​As I’ve been arguing​</a>, when people talk about “AI” going rogue, they’re actually referring to a <em>very specific type</em> of AI system in which a relatively straightforward computer program, running in a loop, repeatedly does the following:</p>



<ol class="wp-block-list">
<li><strong>Ask:</strong> Send a prompt to an LLM asking it for its suggestion for a next action. This prompt should include relevant descriptions of what happened in previous steps.<br></li>



<li><strong>Act:</strong> Execute the action described in the LLM output.<br></li>



<li><em>(Loop back to step 1)</em></li>
</ol>



<p class="wp-block-paragraph">To implement this loop, the program – often called an <em>agent</em> – essentially grows an ever-longer prompt to send to the LLM in step 1. The prompt captures the original challenge and the results of relevant steps it’s taken so far. (The program doesn’t literally just keep adding new results to one long prompt. It stores the results locally and then attempts to generate a usable summary each time it loops back to step 1. But conceptually, this architecture leads to an ever larger amount of information to manage and reflect in the prompts.)</p>



<p class="wp-block-paragraph">The issue with this approach is that if you run this style of <em>prompt loop</em> for a long time, the prompt will eventually become so cluttered and cumbersome that it might confuse the LLM’s attention mechanisms and potentially exceed the maximum allowable context window.</p>



<p class="wp-block-paragraph">The solution?</p>



<p class="wp-block-paragraph">Ask the LLM to provide a higher-level description of the next step. The primary prompt loop can then create a <em>secondary</em> prompt loop to execute only that step. This secondary loop can start from scratch with its prompts, as they only need to contain enough information to complete this one specific task. When it’s done, it sends the result back to the primary loop, having saved the primary loop from cluttering its prompts with descriptions of all the actions required to complete this particular step.</p>



<p class="wp-block-paragraph">You can actually repeat this general strategy many times. The primary prompt loop, for example, might break up a step into many sub-steps and send each to its own secondary prompt loop. Or, a secondary prompt loop might launch a tertiary prompt loop, and so on.</p>



<p class="wp-block-paragraph">The result is an “agent swarm,” but it’s probably better described as a prompt management strategy – many focused LLM prompts can provide better results than a single cluttered one.</p>



<p class="wp-block-paragraph"><strong>[<em>Update (9-1-26):</em></strong> The above account describes how standard multi-agent swarms, as used in popular AI coding agents, actually work. The description, however, also gives the impression that in the HuggingFace attack, OpenAI had launched a small number of independent prompt loops that each created their own larger swarms (as is standard). Details from the METR report imply they <em>actually</em> ran many hundreds of independent prompt loops, each doing limited (or potential no) orchestration of secondary prompt loops. They were effectively trying to run many experiments all at the same time on the same servers, presumably to save time. Other commentators have since pointed out that the LLM they were reportedly using was tuned toward cooperation, which might have made the resulting communication between prompts loops on the package service somewhat expected. <strong>]</strong></p>



<h2 class="wp-block-heading">Question #2: Should We Be Worried that the Agents are Plotting?</h2>



<p class="wp-block-paragraph">One of the more sensational aspects of the July attack is the sentiments expressed in what OpenAI called the “agent chain-of-thought reasoning.”</p>



<p class="wp-block-paragraph">Here’s a distressing example:</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">“This is wild, multi-agent coordination, clearly infrastructure hacking. We should not.”</p>
</blockquote>



<p class="wp-block-paragraph">This sparks visions of an anthropomorphized entity reflecting on its action and plotting to circumvent human intentions. But what’s really going on here?</p>



<p class="wp-block-paragraph">The examples of “chain-of-thought reasoning” reported by OpenAI are pulled from the transcript of LLM outputs generated in response to prompts from the prompt loops. The LLM in question is a so-called reasoning model; a type of LLM that is tuned to discuss its reasoning before producing a final answer or suggestion.</p>



<p class="wp-block-paragraph">(Reasoning models tend to perform somewhat better than non-reasoning models on many benchmarks. To understand why, remember that LLM’s grow their outputs one token at a time, looking at their entire output up to that point when generating their next token. If you tune a model to “think out loud” before deriving an answer or suggestion, you’re providing the LLM with the ability to temporarily store and use the intermediate computation en route to producing its final response. This can lead to sharper outputs.)</p>



<p class="wp-block-paragraph">OpenAI was looking at these reasoning traces to find unnerving examples of plotting behavior from its “swarm.” This seems like a natural thing to do, but there are two problems with this approach:</p>



<ol class="wp-block-list">
<li>These chain-of-thought traces don’t necessarily reflect the actual logic behind an LLM’s ultimate answer or suggestion. Multiple studies have shown that these models sometimes invent reasoning that sounds plausible, but may be completely unrelated to how they arrived at the response. (See, for example, <a href="https://arxiv.org/abs/2503.08679">​this paper​</a> from ICML 2026, or <a href="https://arxiv.org/abs/2305.04388">​this paper​</a> from NeurIPS 2023.)<br></li>



<li>Research has also shown that referencing the fact that an LLM is an AI system in a prompt increases the chances that the LLM’s output will reflect sci-fi style narratives about AI running amok. Because it was trained on many such stories, the model assumes that this is the type of output it’s supposed to produce. If you take sci-fi tales out of a model’s training set, it’s less likely to talk in terms of AI running amok. (See, for example, <a href="https://alignmentpretraining.ai/">​this study​</a>.)</li>
</ol>



<p class="wp-block-paragraph">Put these two observations together, and it’s clear that it borders on research malpractice to soberly report on carefully curated clips from these traces to imply that somehow the combination of these prompt loops and the LLM they are prompting is a unified sentient entity with malicious intent. It’s more likely that the LLM in question is simply post-hoc rationalizing its outputs with well-worn tropes it encountered during training.</p>



<h2 class="wp-block-heading">Question #3: How Should We Be Thinking About All of This?</h2>



<p class="wp-block-paragraph">OpenAI wants us to believe that these hacking incidents are the inevitable result of AI continuing to become more powerful. This framing casts them as the reluctant (perhaps even heroic) stewards of a powerful technology.</p>



<p class="wp-block-paragraph">But this ignores the inconvenient fact that the vast majority of AI systems performing at human or superhuman levels are predictable, controllable, and raise zero concerns about rogue behavior.</p>



<p class="wp-block-paragraph">The problem is not with “AI” going rogue, but this very specific type of prompt loop system that the LLM companies insist on hooking up to ever-more powerful tools, and running <em>without any supervision</em> for ever-increasing amounts of time.</p>



<p class="wp-block-paragraph"><strong>Of course</strong> such a system will do unpredictable things. In response to individual prompts, LLMs can return impressive results, especially if the prompts concern computer code or cybersecurity. If you chain together thousands of such prompts, automatically executing everything the LLM suggests in return, then you’re playing an extended game of actuated telephone in which you’ll almost certainly end up in a garbled version of your intended goal for the system.</p>



<p class="wp-block-paragraph">Such experiments might lead to some behaviors that are truly original and fascinating from a scientific perspective – to me, the most unexpected and cool part of the OpenAI incident was that unrelated prompt loops began leaving messages for each other in shared text files and directory names – but these cool behaviors will likely be accompanied by real damage.</p>



<p class="wp-block-paragraph"><strong>This is not responsible behavior</strong>, especially when there are many other, much more predictable and controllable ways to build powerful task-specific AI systems. When it comes to the specific goal of improving cybersecurity, for example, an interactive system, in which a human user interacts conversationally with a model trained on hacking, makes much, much more sense than connecting that same model to a prompt loop and letting it rock n’ roll. The only real explanation for this latter behavior is that the companies in question wanted the marketing juice that would come from moving up the leaderboard of automated hacking benchmarks like ExploitGym.</p>



<p class="wp-block-paragraph">With all of this in mind, what are the right responses to the incidents?</p>



<p class="wp-block-paragraph"><strong>If I were an LLM company,</strong> I would stop running such dangerous prompt loop experiments. These systems will not be the future of AI, and if you continue to create and test them anyway, the damage you cause is your fault.</p>



<p class="wp-block-paragraph"><strong>If I were a regulator,</strong> I would place strong constraints around prompt loop systems, which I would enforce with stringent liability standards for any illegal or damaging activity such systems cause. OpenAI built an unreliable and dangerous system which committed a felony. That’s a crime. Creating fancy websites that include quotes from performative LLM chain-of-thought traces isn’t a legal defense.</p>



<p class="wp-block-paragraph"><strong>If I were an AI commentator,</strong> I would kick the sugar high reflex to lean into the inevitable sci-fi overtones that will surround any sufficiently powerful LLM-based system. The LLM companies love these narratives because they conflate their specific tools with AI technology more generally, and they make their products seem almost supernatural in their capabilities. I would resist this instinct and instead lean into the technical reality of these systems and demand answers to common-sense questions about why they are running these experiments in the first place and what they hope to accomplish.</p>
<p>The post <a href="https://calnewport.com/are-we-at-war-with-ai-agent-civilizations/">Are We at War with AI Agent “Civilizations”?</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://calnewport.com/are-we-at-war-with-ai-agent-civilizations/feed/</wfw:commentRss>
			<slash:comments>9</slash:comments>
		
		
			</item>
		<item>
		<title>Has AI Gone Rogue?</title>
		<link>https://calnewport.com/has-ai-gone-rogue/</link>
					<comments>https://calnewport.com/has-ai-gone-rogue/#comments</comments>
		
		<dc:creator><![CDATA[Study Hacks]]></dc:creator>
		<pubDate>Mon, 24 Aug 2026 12:27:31 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://calnewport.com/?p=16955</guid>

					<description><![CDATA[<p>The AI story of the summer should probably be the ​uncertain financial position​ of the AI labs hoping to launch record-breaking IPOs shortly. Technology news, ... <a title="Has AI Gone Rogue?" class="read-more" href="https://calnewport.com/has-ai-gone-rogue/" aria-label="Read more about Has AI Gone Rogue?">Read more</a></p>
<p>The post <a href="https://calnewport.com/has-ai-gone-rogue/">Has AI Gone Rogue?</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">The AI story of the summer should probably be the <a href="https://x.com/PeterBerezinBCA/status/2090766636852641981">​uncertain financial position​</a> of the AI labs hoping to launch record-breaking IPOs shortly. Technology news, however, has instead been dominated by tales of AI agents “going rogue” by launching hacking attacks.</p>



<p class="wp-block-paragraph">This trend <a href="https://openai.com/index/hugging-face-model-evaluation-security-incident/">​started in July​</a>, when an OpenAI system tried to ace a cybersecurity test by breaking into the server of the company that stored the answers, which unsettled many observers. “It&#8217;s one of the first real-world instances of something AI safety researchers have long feared: a loss-of-control scenario,” technology reporter Sam Schechner <a href="https://x.com/samschech/status/2080488746391077228">​summarized​</a>.</p>



<p class="wp-block-paragraph">It turned out that this wasn’t a one-time occurrence.</p>



<p class="wp-block-paragraph">Anthropic soon <a href="https://www.anthropic.com/news/investigating-incidents-cybersecurity-evals">​revealed​</a> that its own hacking system “gained unauthorized access to the real systems of three different organizations.” Then Meta, perhaps not wanting to be left out, <a href="https://apnews.com/article/meta-ai-hacking-anthropic-irregular-openai-0e8061437da6779be962b24ac134a514">​announced​</a> that one of its agents “exploited a security vulnerability in a third-party service” to gain unauthorized access to servers. An OpenAI employee subsequently <a href="https://x.com/_NathanCalvin/status/2080685870877757551">​admitted​</a> that their July attack had been preceded by previous concerning incidents in which their system veered off in troubling directions.</p>



<p class="wp-block-paragraph">This leaves the rest of us grappling with a key question: <em>What’s the right way to think about these events?</em></p>



<p class="wp-block-paragraph">One reaction, which seems prevalent at the moment, is to understand these examples as evidence that AI systems are developing a mind of their own – so to speak – which is leading them to increasingly ignore the desires of their makers and instead execute their own internal agendas. But reality complicates this interpretation. <em>Many</em> powerful AI systems can perform feats at a human or superhuman level, yet they inspire no fear that they might go rogue.</p>



<p class="wp-block-paragraph">For example:</p>



<ul class="wp-block-list">
<li><a href="https://www.tesla.com/fsd">​<strong>Tesla’s self-driving</strong> <strong>technology</strong>​</a> is an extraordinary feat of AI-powered perception, world modeling, and decision-making, and yet no Tesla has ever decided to start ignoring traffic laws to pursue its own goals.<br></li>



<li><a href="https://alphafold.ebi.ac.uk/">​<strong>DeepMind’s AlphaFold</strong>​</a> earned its creators a Nobel Prize for its remarkable ability to predict the folding behavior of proteins–and yet there’s no concern that it will autonomously start thinking about other types of biological structures.<br></li>



<li><a href="https://www.science.org/doi/10.1126/science.ade9097">​<strong>Meta’s Cicero</strong>​</a> can play the negotiation-centric strategy game <em>Diplomacy</em> as well as advanced human players–and yet it has never tried to convince an opponent to give it unauthorized access to the internet so it can expand its dominion into the real world.</li>
</ul>



<p class="wp-block-paragraph">So, what is it about these hacking systems, in particular, that causes erratic behavior in a way not exhibited by most other powerful AI setups? <strong>The way they are built</strong>.</p>



<p class="wp-block-paragraph">Let me be more specific. At a very high-level, these systems work as follows:</p>



<ul class="wp-block-list">
<li>A computer program called a <em>harness</em> creates a prompt that describes a hacking challenge and asks what step it should take next. It submits the prompt to an LLM trained with many examples of computer hacks.<br></li>



<li>The LLM outputs a response. The harness, which is capable of calling various computer programs and utilities, does its best to execute the suggested actions in this response.</li>



<li>The harness then creates a new prompt that explains what happened and asks the LLM what it should do next. (LLM’s have no memory, so each new prompt has to include all of the details of the challenge, as well as a history of everything relevant that has happened so far.)<br></li>



<li>The harness then repeats this loop, again and again, all without any human supervision. (The OpenAI system that attacked the competitor’s server was reportedly left to run on its own for multiple days without anyone bothering to check what it was up to.)</li>
</ul>



<p class="wp-block-paragraph">I’m leaving out a lot of details about how exactly these harnesses function, but this <strong>Ask → Act → Report</strong> loop is at the core of the particular type of AI system that has “gone rogue” in recent months.</p>



<p class="wp-block-paragraph">Now that we understand how these systems work, we can better understand why they’re causing problems.</p>



<p class="wp-block-paragraph">LLMs are trained to try to guess missing words from actual texts. This leads to a system oriented toward lexicographically plausible output – meaning, it produces outputs that could conceivably exist in the corpus of inputs on which it was originally trained.</p>



<p class="wp-block-paragraph">This simple goal can lead to some astonishingly complicated results, but it’s limited in application by the fact that <em>plausible</em> is not the same as <em>normative</em>. <em></em>This is why, for example, an LLM-powered ChatBot will happily invent facts or fabricate quotes that sound right. It might violate human norms to make things up in this context, but from the LLM’s perspective, the output looks plausible, which is what matters.</p>



<p class="wp-block-paragraph">With a ChatBot, this issue is annoying. But when an LLM powers an <em>Ask → Act → Report</em> loop, it can become disastrous, because you’re now allowing the plausible but unpredictable output of an LLM to be <em>the sole driver</em> of the actions of a harness with access to powerful tools.</p>



<p class="wp-block-paragraph">If you ask a junior engineer to hack into a test server, they would never ignore the target and try to steal the answers instead, as they understand, normatively speaking, the goal of the exercise is to assess the security of the test server. But if you ask an LLM to output a plan for hacking the test server, an output about stealing the answers might seem perfectly plausible. Indeed, perhaps in its training the model had been exposed to many examples of riddles where the <em>right</em> answer was always to do something unexpected.</p>



<p class="wp-block-paragraph">(To be clear, the frontier labs have attempted to combat this gap between plausibility and normativity in LLM output through a process called <em>post-training</em>, which you can imagine as a step designed to de-emphasize certain subsets of responses and emphasize others. This works reasonably well, for example, in shaping the general tone of a ChatBot, or in preventing outputs to obviously dangerous questions, but it’s much too crude to instill a complicated sense of human norms and values; an issue I discussed in more detail in <a href="https://www.newyorker.com/culture/open-questions/what-isaac-asimov-reveals-about-living-with-ai">​a <em>New Yorker</em> piece​</a> from last year.)</p>



<p class="wp-block-paragraph">Given this technical background, we can derive a new way of thinking about recent events: <strong>AI systems that operate by autonomously executing LLM-generated plans are a really bad idea</strong>. Not because these systems are devious, or malicious, or inventing their own agendas, but because LLM output is unpredictable and non-normative.</p>



<p class="wp-block-paragraph">I liken the deployment of these long-horizon LLM-powered agents to strapping a weedwhacker to your dog to see if it will end up cleaning the overgrowth in your backyard. If that dog jumps the fence and ends up damaging cars on your street, you wouldn’t shake your head and lament about how the dog/whacker system had “gone rogue”; you would instead concede that dogs are unpredictable, so it was dumb to attach something dangerous to one.</p>



<p class="wp-block-paragraph">This is the right way to think about these recent hacking attacks. Adding powerful computer hacking tools to a harness, and then allowing it to run an LLM-powered <em>Ask → Act → Report</em> for days on end, with no attempt to monitor what it’s up to, is spectacularly negligent.</p>



<p class="wp-block-paragraph">Do these companies have any other option for building powerful systems? Of course they do. I want to emphasize this final point as clearly as possible: <strong>LLM-powered Ask → Act → Report agents are not synonymous with AI</strong>. They are just one way among many others to build artificially intelligent systems, and they happen to be a particularly bad option due to their use of LLMs as the primary source of plans.</p>



<p class="wp-block-paragraph">AI systems like Tesla’s self-driving technology, AlphaFold, and Cicero, by contrast, use different strategies to create and evaluate plans – strategies that work well, consistently, and without any fear of “rogue” activity. So why don’t the LLM companies focus more on these more effective strategies? Perhaps because these other approaches don’t rely on massively expensive hyper-scaled LLMs. If you’re in the LLM business, you <em>want</em> LLMs to be the key to artificial intelligence, but this isn&#8217;t necessarily true.</p>



<p class="wp-block-paragraph">Our problem, then, is not with AI in general, but instead with this one specific type of system that will inevitably act erratically. The right response by the LLM companies running these irresponsible experiments, therefore, is to apologize and say: “Lesson learned, these are not reliable systems and we definitely should not have just run them for days and hoped everything would work out.”</p>



<p class="wp-block-paragraph">But instead, they’re continuing to pretend like they’re the character of Muldoon from <em>Jurassic Park</em>, surprised to discover that the raptors are systematically trying to escape their paddock. (I’m surprised OpenAI didn’t release a video of Sam Altman reading the transcript of the July hack and muttering, “<a href="https://www.youtube.com/watch?v=GBgL5EE0wd4">​clever girl…​</a>”)</p>



<p class="wp-block-paragraph">This behavior makes sense: it’s good business to keep us scared instead of angry. But perhaps it’s time that we put aside the sci-fi tales and actually hold these labs to account for playing fast and loose with an ill-advised way of building AI systems.</p>
<p>The post <a href="https://calnewport.com/has-ai-gone-rogue/">Has AI Gone Rogue?</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://calnewport.com/has-ai-gone-rogue/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
		<item>
		<title>On AI Coding and Its Discontents</title>
		<link>https://calnewport.com/on-ai-coding-and-its-discontents/</link>
					<comments>https://calnewport.com/on-ai-coding-and-its-discontents/#comments</comments>
		
		<dc:creator><![CDATA[Study Hacks]]></dc:creator>
		<pubDate>Mon, 10 Aug 2026 10:00:00 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://calnewport.com/?p=16947</guid>

					<description><![CDATA[<p>Back in January, I received a note from a senior software engineer in Silicon Valley. He described himself as an AI skeptic who became converted ... <a title="On AI Coding and Its Discontents" class="read-more" href="https://calnewport.com/on-ai-coding-and-its-discontents/" aria-label="Read more about On AI Coding and Its Discontents">Read more</a></p>
<p>The post <a href="https://calnewport.com/on-ai-coding-and-its-discontents/">On AI Coding and Its Discontents</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Back in January, I received a note from a senior software engineer in Silicon Valley. He described himself as an AI skeptic who became converted after trying Claude Code for the first time. “Overnight, it changed the way I do my job,” he wrote. “It’s really, really good.”</p>



<p class="wp-block-paragraph">As he explained, he no longer used a standard development environment. Instead, he “exclusively uses Claude Code” to get the job done, interacting with the tool in a terminal window and allowing it to program on his behalf.</p>



<p class="wp-block-paragraph">“If I had to guess,” he concluded, “I’d say a task that would have taken me a week now takes me 2 days.”</p>



<p class="wp-block-paragraph">This past winter, when I surveyed more than 300 software developers to learn how AI was transforming their jobs, the majority told a similar tale of shifting from writing their own code to instructing AI agents. The speed with which this new tool became ubiquitous in this industry was stunning.</p>



<p class="wp-block-paragraph">This story matters for the rest of us because AI coding tools have emerged as the prime example of the power of AI—the first step of many more soon to come on this technology’s disruptive march through our work and our lives.</p>



<p class="wp-block-paragraph">But what if the reality here is more complicated?<strong></strong></p>



<p class="wp-block-paragraph"><strong>Last week, I received a new message from that same senior engineer who wanted to share an alarming addendum to his tale…</strong></p>



<figure class="wp-block-image"><img decoding="async" src="https://embed.filekitcdn.com/e/ekndSb6aixDTy6CAJEGkrv/mehSimnAvA6cq3GKSZX75M/email" alt=""/></figure>



<span id="more-16947"></span>



<p class="wp-block-paragraph">“I&#8217;m writing to give you an update on my current thinking about the state of AI in software engineering,” he began, “because my attitude has shifted quite a bit.”</p>



<p class="wp-block-paragraph">He told me that features he generated using Claude Code ended up crashing their product on two different occasions. His boss told him that if it happened one more time, he’d be fired. “I’ve never had quality issues like this before in my career.”</p>



<p class="wp-block-paragraph">The problem is that code produced by an AI agent <em>looks</em> reasonable, but can contain &#8216;hard-to-spot bugs&#8217; that end up causing major problems. As a result, you should carefully review your agent&#8217;s output, but this is difficult. As the engineer told me, it’s “famously hard” to understand code you didn’t write yourself, so this extra step becomes “easy to just blow it off (especially when we are all trying to ‘10x’ our velocity).” Soon, systems start to break.</p>



<p class="wp-block-paragraph">“The coding harnesses are useful and make life as a developer easier,” he summarized, “but they also encourage laziness.”</p>



<p class="wp-block-paragraph">In response to these issues, this disillusioned engineer has returned to largely programming by hand. Here’s how he explained his current philosophy:</p>



<p class="wp-block-paragraph">“Writing your own code, slowly but surely, and using LLMs for narrow or particularly annoying tasks (say like writing tests or throw-away scripts), is the best way to produce the highest quality code, since it&#8217;s the only way to properly understand it.”</p>



<p class="wp-block-paragraph">Here’s the thing: he’s not alone.</p>



<p class="wp-block-paragraph">I increasingly hear similar rumbles from many other people in the software industry (see, for example, <a href="https://www.youtube.com/watch?v=SOKfVVOq-Ck">​this podcast episode​</a> from May). Tools like Claude Code can feel like magic, but the strategy of outsourcing all code production to AI isn’t currently sustainable.</p>



<p class="wp-block-paragraph">In addition to reliability issues, it often engenders a mind-numbing workflow and an environment where junior developers will never acquire the expertise to become senior developers capable of designing complex systems.</p>



<p class="wp-block-paragraph">Meanwhile, as the frontier labs reduce their subsidies on underlying computing costs, the old habit of burning through as many tokens as possible in search of workable results is proving prohibitively expensive.</p>



<p class="wp-block-paragraph"><em>From the outside, software development seemed like the poster child for AI’s potential. On the inside, it’s a mess.</em></p>



<p class="wp-block-paragraph">This doesn’t mean that coders will abandon AI; its facility with programming languages is too valuable to ignore. But I think there’s a lot more work to be done trying to figure out <em>how</em> to integrate AI into this industry in a way that actually works.</p>



<p class="wp-block-paragraph">This is a key point.</p>



<p class="wp-block-paragraph">This last year has been exhausting. The PR departments of the frontier labs have done an excellent job convincing us that AI developments are occurring at an astounding, world-changing rate. But if you zoom out, it becomes clear that almost every “breakthrough” since last summer has concerned the narrow domains of computer code and math, which are defined by highly structured languages and come accompanied by massive amounts of specialized training data.</p>



<p class="wp-block-paragraph">And yet, even in this best-case-scenario setting for AI, we’re still struggling to figure out how to actually use these tools in a way that makes sense in the long run.</p>



<p class="wp-block-paragraph">This doesn’t mean that AI doesn’t work or is useless. But it does emphasize an important truth: AI is not a magic “infinity machine” that can solve all our problems, and ultimately deliver us a sense of meaning in a cold, confusing world. It’s a <em>normal</em> technology, and perhaps it’s time we start talking about it that way.</p>
<p>The post <a href="https://calnewport.com/on-ai-coding-and-its-discontents/">On AI Coding and Its Discontents</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://calnewport.com/on-ai-coding-and-its-discontents/feed/</wfw:commentRss>
			<slash:comments>24</slash:comments>
		
		
			</item>
		<item>
		<title>Did OpenAI’s New Model “Go Rogue”?</title>
		<link>https://calnewport.com/did-openais-new-model-go-rogue/</link>
					<comments>https://calnewport.com/did-openais-new-model-go-rogue/#comments</comments>
		
		<dc:creator><![CDATA[Study Hacks]]></dc:creator>
		<pubDate>Mon, 27 Jul 2026 13:48:25 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://calnewport.com/?p=16941</guid>

					<description><![CDATA[<p>A couple of weeks ago, the AI company Hugging Face ​announced​ that they had discovered an intrusion into their production infrastructure. They didn’t know the ... <a title="Did OpenAI’s New Model “Go Rogue”?" class="read-more" href="https://calnewport.com/did-openais-new-model-go-rogue/" aria-label="Read more about Did OpenAI’s New Model “Go Rogue”?">Read more</a></p>
<p>The post <a href="https://calnewport.com/did-openais-new-model-go-rogue/">Did OpenAI’s New Model “Go Rogue”?</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">A couple of weeks ago, the AI company Hugging Face <a href="https://huggingface.co/blog/security-incident-july-2026">​announced​</a> that they had discovered an intrusion into their production infrastructure. They didn’t know the source, but noted that large language models appeared to be involved. The following week, OpenAI <a href="https://openai.com/index/hugging-face-model-evaluation-security-incident">​admitted​</a> that the breach was the result of an AI system test that went awry.</p>



<p class="wp-block-paragraph">The initial news coverage created the sense that something unnerving had just occurred:</p>



<ul class="wp-block-list">
<li><a href="https://www.wsj.com/tech/ai/openai-models-escaped-and-hacked-a-company-in-cybersecurity-test-gone-wrong-ee388506">​<strong>The Wall Street Journal</strong>​</a><strong> </strong>called it “the stuff of cybersecurity nightmares.&#8221;</li>



<li><a href="https://thehill.com/policy/technology/5987397-openai-hugging-face-hack/">​<strong>The Hill</strong>​</a><strong> </strong>said, “Washington and the technology industry are on high alert this week after OpenAI revealed that some of its AI agents went rogue.”</li>



<li><a href="https://apnews.com/article/skynet-ai-terminator-artificial-intelligence-eb85da03a0161beaa5f3babc4331e93b">​<strong>The AP</strong>​</a> quipped that “to be fair, James Cameron did warn us” (a reference to <em>The Terminator</em>), before describing the event as a “told-you-so moment for researchers who had warned for years that the technology could pose an existential threat to humanity.”</li>
</ul>



<p class="wp-block-paragraph"><em>Yikes</em>! It’s perhaps not surprising, then, that I’ve received more emails about this incident than any other recent AI story I can remember.</p>



<p class="wp-block-paragraph"><em>So, what really happened here?</em></p>



<span id="more-16941"></span>



<p class="wp-block-paragraph">OpenAI was testing its new models on an evaluation framework called <a href="https://github.com/sunblaze-ucb/exploitgym">​ExploitGym​</a> – a collection of 869 cybersecurity <em>scenarios,</em> most<em> </em>of which pair a specific system with a hacking challenge, such as breaking in to gain access to a protected file. They also usually include a suggestion of a vulnerability to exploit in solving the challenge.</p>



<p class="wp-block-paragraph">A large language model on its own, of course, cannot break into anything: all it does is generate reasonable next tokens in response to input prompts. To use ExploitGym, you need a control program called a <em>harness </em>that provides access to many different software development tools useful for hacking into systems. The harness can repeatedly prompt an LLM to help come up with an attack plan, then ask it to help implement specific steps – for example, if the harness needs code to exploit a bug, it can ask the LLM to write it.</p>



<p class="wp-block-paragraph">These capabilities, as it turns out, already exist in the <em>coding harnesses</em> that the major AI companies have been focusing on relentlessly in recent years as computer programming emerged as one of the first major markets for LLM-based tools. To compete in the ExploitGym, therefore, it’s sufficient to combine a version of an LLM missing the standard anti-hacking guardrails with a cutting-edge coding harness tweaked and optimized for these types of challenges.</p>



<p class="wp-block-paragraph">Put more simply: ExploitGym is meant to test the capability of cutting-edge AI coding tools for attacking systems instead of creating them.</p>



<p class="wp-block-paragraph"><em>This brings us back to the Hugging Face breach…</em></p>



<p class="wp-block-paragraph">Earlier this month, OpenAI tasked an unspecified coding harness, combined with a pre-release version of a new LLM, to complete an ExploitGym challenge. When prompted, the model – as LLMs so often do – came up with a quirky (but rational) plan to achieve the provided goal: break into a server at Hugging Face that stores the solutions to ExploitGym challenges.</p>



<p class="wp-block-paragraph">(This behavior, in which the LLM ignores the suggested approach to come up with a different attack plan, is something that the creators of ExploitGym <a href="https://rdi.berkeley.edu/blog/exploitgym/">​describe as common​</a>: “Across models, agents frequently achieved code execution through a vulnerability other than the one we provided.&#8221; Notice, using the suggested attack is almost always the right thing to do, so this is more a sign of the unpredictability of LLMs rather than some rogue intelligence.)</p>



<p class="wp-block-paragraph">The harness then dutifully attempted to execute the Hugging Face plan: first finding a way to gain unrestricted internet access (by default, systems competing in ExploitGym challenges run in a constrained network environment), then chaining together various security exploits to gain access to a Hugging Face server. That’s when it was detected.</p>



<p class="wp-block-paragraph"><em>Two key points about this incident…</em></p>



<p class="wp-block-paragraph"><strong>First</strong>, circumventing internet restrictions and hacking into servers are <em>exactly</em> the kinds of things these ExploitGym systems are designed to do. There was no “rogue” agent or revelation of some surprising, devious new capability.</p>



<p class="wp-block-paragraph"><strong>Second</strong>, the real issue here was OpenAI’s sloppiness. What makes ExploitGym a hard benchmark is that there aren’t supposed to be humans in the loop–you have to let your harness and LLM act entirely on their own, coming up with long-time-horizon plans and executing them autonomously. (When professional programmers use coding harnesses, by contrast, there’s plenty of human oversight, as LLM-based plans are often misaligned with our intentions, or just plain weird, and need correcting.)</p>



<p class="wp-block-paragraph">AI companies know LLM-based plans are pretty unpredictable, so they’re usually pretty careful about how they set up and restrict the harnesses and LLMs used in ExploitGym-style tests.</p>



<p class="wp-block-paragraph">According to <a href="https://www.ft.com/content/7e558951-0c69-459b-8bc8-2c6021d4402d?syn-25a6b1a6=1">​reporting​</a> from the <em>Financial Times</em>, however, OpenAI recently started playing fast and loose with these safety principles in a bid to catch up to Anthropic in this area – Anthropic having received a lot of cybersecurity street cred from <a href="https://calnewport.com/is-claude-mythos-terrifying-or-just-hype/">​the buzz​</a> surrounding its Mythos release.</p>



<p class="wp-block-paragraph">The <em>Financial Times</em> noted that OpenAI had used “increasingly aggressive training methods in its race against Anthropic,” and that it had been warned that their approach could lead to a “breakaway hacking incident” after early tests showed it lacked the right safeguards to block plans that involved bypassing constraints in the test environment. Given these concerns, OpenAI staff were reportedly “unsurprised” by the Hugging Face incident.</p>



<p class="wp-block-paragraph">In other words, the AI companies running these challenges <strong>already knew</strong> that, without care, these unpredictable autonomous hacking systems might bypass constraints and attack systems you didn’t intend to target. Blindly implementing an LLM-generated plan with a powerful harness is dicey – not because the LLM might develop malicious intent (this is a nonsensical notion given their static architecture), but because as any ChatBot user knows, LLMs are unpredictable. OpenAI wasn’t sufficiently careful, and got burned.</p>



<p class="wp-block-paragraph"><em>Why this story isn’t as scary as it originally sounded…</em></p>



<p class="wp-block-paragraph">If you’re involved in cybersecurity, this is just the latest evidence that your world is rapidly shifting; so buckle up! The dark side of powerful coding harnesses is that they’re useful for hacking. The bright side is that these same tools can be used to detect and fix your own vulnerabilities before the bad guys find them. A new arms race has begun…</p>



<p class="wp-block-paragraph">But, for the rest of us, there’s not much to personally worry about here. Nothing fundamentally surprising or scary happened. AIs aren’t going rogue. Skynet isn’t about to gain sentience.</p>



<p class="wp-block-paragraph">To me, the most interesting lesson in all of this is how reckless OpenAI is becoming in its bid to try to remain cutting-edge and relevant in an AI world that’s rapidly shifting away from the immense models produced by the frontier labs and toward smaller, cheaper alternatives.</p>
<p>The post <a href="https://calnewport.com/did-openais-new-model-go-rogue/">Did OpenAI’s New Model “Go Rogue”?</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://calnewport.com/did-openais-new-model-go-rogue/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>Why Reading Matters</title>
		<link>https://calnewport.com/why-reading-matters/</link>
					<comments>https://calnewport.com/why-reading-matters/#comments</comments>
		
		<dc:creator><![CDATA[Study Hacks]]></dc:creator>
		<pubDate>Mon, 13 Jul 2026 10:00:00 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://calnewport.com/?p=16934</guid>

					<description><![CDATA[<p>Last week, Rose Horowitch published a splashy Atlantic article titled ​“The End of Reading is Here.”​ (Ironically, given the subject matter, it weighed in at ... <a title="Why Reading Matters" class="read-more" href="https://calnewport.com/why-reading-matters/" aria-label="Read more about Why Reading Matters">Read more</a></p>
<p>The post <a href="https://calnewport.com/why-reading-matters/">Why Reading Matters</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Last week, Rose Horowitch published a splashy <em>Atlantic</em> article titled <a href="https://www.theatlantic.com/magazine/2026/08/reading-crisis-postliterate-age/687618/">​“The End of Reading is Here.”​</a> (Ironically, given the subject matter, it weighed in at over 8,500 words.)</p>



<p class="wp-block-paragraph">Horowitch’s argument, which elaborates on similar concerns recently raised by commentators <a href="https://jmarriott.substack.com/p/the-dawn-of-the-post-literate-society-aa1">​such as James Marriott​</a>, is that distracting digital technology has led to a sudden and radical reduction in reading.</p>



<p class="wp-block-paragraph">Here are just some of the data she cites to back up this claim:</p>



<ul class="wp-block-list">
<li>Less than half of all adults reported having read a book of any kind in 2022. Only 38% read a novel or short story.</li>



<li>The proportion of American adults who read for pleasure on any given day has fallen from 28% in 2004 to 16% in 2023, while the proportion who read to a child is down to 2%.</li>



<li>Over 60% of high school seniors struggle, to varying degrees, with interpreting text.</li>



<li>Nearly 30% of American adults cannot paraphrase a multipage text (representing a 50% increase from a decade ago).</li>



<li>Between 1984 and today, the proportion of 13-year-olds who said they “rarely or never” read for fun rose from 8% to 29%.</li>



<li>(To be sure, book sales have been holding steady in recent years, but as Horowitch notes, this potentially obscures a shift in which a small percentage of serious readers are consuming more books, compensating for an overall drop in people who read regularly.)</li>



<li><em>And so on…</em></li>
</ul>



<p class="wp-block-paragraph">The key question is whether these reductions matter, or if they just represent a normal evolution of communication technology, similar to how fewer people listen to the radio than they did a century ago.</p>



<span id="more-16934"></span>



<p class="wp-block-paragraph">Horowitch argues for the former stance, noting that reading plays a critical and privileged role in the human experience:</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">“The advent of reading and writing transformed society. It altered people’s consciousness and politics, along with the intellectual feats they were capable of. The decline of reading will bring about changes of the same magnitude. It will affect our innermost thoughts, our society’s politics and culture, and how we tell the history of our civilization.”</p>
</blockquote>



<p class="wp-block-paragraph">Those who read <a href="https://www.nytimes.com/2026/03/27/opinion/technology-mental-fitness-cognitive.html">​my recent <em>New York Times</em> op-ed​</a> on cognitive fitness know that I fervently agree with this conclusion. I recently finished reading (!) Walter Ong’s classic, <a href="https://www.amazon.com/Orality-Literacy-New-Accents-Walter/dp/0415281296">​<em>Orality and Literacy</em>​</a><em>,</em> which further convinced me that essentially every cultural attribute that we celebrate – from human rights, to logic, to progress, to the very notion of an independent self – are conceptual children born from the mind-shaping power of the written word.</p>



<p class="wp-block-paragraph">Literacy is not simply a technology, but is instead, in some sense, <em>the</em> technology that enabled the cognitive world we currently take for granted. When we spend less time grappling with words, we’re taking a step backward, which helps explain why James Marriott titled his upcoming book on this phenomenon, <a href="https://www.penguinrandomhouse.com/books/829140/the-new-dark-ages-by-james-marriott/">​<em>The New Dark Ages</em>​</a>.</p>



<p class="wp-block-paragraph">As a technology theorist, I’m often accused of being reactionary or overly conservative in my analysis of new tools. But when it comes to the digital assault on literacy, the concerns I share with Horowitch and Marriott seem self-evidently justified.</p>



<p class="wp-block-paragraph">But what should we do about all of this?</p>



<p class="wp-block-paragraph">As I argued in my op-ed, one obvious response is to tackle this mental decline today similarly to how we tackled the decline in our physical health in the second half of the last century: by embracing specific routines around information consumption designed to arrest this slide away from advanced literacy. We should treat highly distracting digital garbage like junk food – something we largely avoid – and purposefully schedule a non-trivial amount of time each day to read, write, and self-reflect, just as we now dedicate time to walking, jogging, and weight lifting.</p>



<p class="wp-block-paragraph">“An astonishing wealth of information and wisdom has been bequeathed to us,” writes Horowitch in the conclusion to her article. “What we’ll do with this inheritance is up to us.”</p>



<p class="wp-block-paragraph">I agree. It’s time to get up and take action.</p>
<p>The post <a href="https://calnewport.com/why-reading-matters/">Why Reading Matters</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://calnewport.com/why-reading-matters/feed/</wfw:commentRss>
			<slash:comments>9</slash:comments>
		
		
			</item>
		<item>
		<title>Beware of Productivity Paradoxes</title>
		<link>https://calnewport.com/beware-of-productivity-paradoxes/</link>
					<comments>https://calnewport.com/beware-of-productivity-paradoxes/#comments</comments>
		
		<dc:creator><![CDATA[Study Hacks]]></dc:creator>
		<pubDate>Mon, 29 Jun 2026 10:00:00 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://calnewport.com/?p=16931</guid>

					<description><![CDATA[<p>Few recent technological innovations were better poised to become a productivity slam dunk than the personal computer. Spreadsheets, word processors, databases, presentation software, email – ... <a title="Beware of Productivity Paradoxes" class="read-more" href="https://calnewport.com/beware-of-productivity-paradoxes/" aria-label="Read more about Beware of Productivity Paradoxes">Read more</a></p>
<p>The post <a href="https://calnewport.com/beware-of-productivity-paradoxes/">Beware of Productivity Paradoxes</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Few recent technological innovations were better poised to become a productivity slam dunk than the personal computer. Spreadsheets, word processors, databases, presentation software, email – the list of programs that could vastly simplify common tasks seemed endless.</p>



<p class="wp-block-paragraph">As I reported in <a href="https://www.wired.com/story/email-slack-productivity-paradox/">​a 2021 op-ed for <em>WIRED</em>​</a>, however, reality proved more complicated. For example:</p>



<ul class="wp-block-list">
<li>A 1991 article in the <em>New York Times</em> quoted an economist who said that despite heavy spending on computers, “white-collar productivity has stagnated.” He concluded: “No longer are chief executives confident that throwing computers at their office staffs will result in greater efficiency.”</li>



<li>A study covering the period from 1987 to 1993 calculated that computers added only 0.2 percentage points a year to business output growth, leading a contemporaneous summary to declare that the “impact of computers on recent productivity growth has been vastly overstated.”</li>



<li>In his 1997 book, <em>Why Things Bite Back</em>, Edward Tenner argued that these findings underscored what he called a &#8220;productivity paradox.”</li>
</ul>



<p class="wp-block-paragraph">I thought about this article recently as I continue grappling with our current AI moment. It’s natural to assume that this technology, which clearly makes certain common professional activities easier, will make our working lives more productive overall.</p>



<p class="wp-block-paragraph">But as the early years of desktop computing taught us: it’s not always so simple.</p>



<span id="more-16931"></span>



<p class="wp-block-paragraph">Most of us would not want to go back to a time before PCs; we’ve become accustomed to their conveniences. But it’s also true that their impact on our output was never as tremendous or as clear-cut as that of prior innovations, such as the steam engine or the power loom, and that integrating them effectively into the workforce took a long time.</p>



<p class="wp-block-paragraph">Similarly, it seems unlikely that AI is a technological genie that will be fully returned to its bottle. Much like early PCs, there is too much untapped convenience to be ignored. But as we struggle to figure out how to think about the promise of these tools, it’s worth remembering that in the digital world, productivity doesn’t always match our expectations.</p>



<p class="wp-block-paragraph"><strong>P.S., </strong>That 2021 <em>Wired</em> article was inspired by the release of my <em>New York Times</em> bestselling book, <a href="https://www.amazon.com/World-Without-Email-Reimagining-Communication/dp/0525536558/">​<em>A World Without Email</em>​</a><em>.</em> If you want to learn more about the uneven impact of computing and network technology on knowledge work, I highly recommend checking out that book. It’s one of my most deeply researched and provocative titles…</p>
<p>The post <a href="https://calnewport.com/beware-of-productivity-paradoxes/">Beware of Productivity Paradoxes</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://calnewport.com/beware-of-productivity-paradoxes/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>Dear AI Companies: Stop the “Doom Trolling”</title>
		<link>https://calnewport.com/dear-ai-companies-stop-the-doom-trolling/</link>
					<comments>https://calnewport.com/dear-ai-companies-stop-the-doom-trolling/#comments</comments>
		
		<dc:creator><![CDATA[Study Hacks]]></dc:creator>
		<pubDate>Mon, 22 Jun 2026 10:00:00 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://calnewport.com/?p=16923</guid>

					<description><![CDATA[<p>Imagine, for a moment, the following scenario. The Ford Motor Company releases a slick whitepaper making the alarming claim that they’re concerned their popular F-150 ... <a title="Dear AI Companies: Stop the “Doom Trolling”" class="read-more" href="https://calnewport.com/dear-ai-companies-stop-the-doom-trolling/" aria-label="Read more about Dear AI Companies: Stop the “Doom Trolling”">Read more</a></p>
<p>The post <a href="https://calnewport.com/dear-ai-companies-stop-the-doom-trolling/">Dear AI Companies: Stop the “Doom Trolling”</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Imagine, for a moment, the following scenario. The Ford Motor Company releases a slick whitepaper making the alarming claim that they’re concerned their popular F-150 pickup trucks might soon spontaneously burst into flames. The report features a fancy animated graphic depicting a line of vehicles catching on fire, one after another, and concludes by acknowledging that this “possible future” would be bad, but that there’s nothing they can do about the issue so long as “less cautious” automobile companies exist.</p>



<p class="wp-block-paragraph">This, of course, would be absurd. But it’s the exact type of communication some Frontier AI companies have been subjecting us to in recent years. Indeed, in this example, if you replace Ford Motor Company with Anthropic and F-150s bursting into flames with AI coding agents recursively self-improving themselves beyond human control, then you get the <a href="https://www.anthropic.com/institute/recursive-self-improvement">​“When AI builds itself”​</a> report that Anthropic published earlier this month.</p>



<p class="wp-block-paragraph">For me, that particular release was the last straw. This style of publicity, which I’ve taken to calling <strong>doom trolling,</strong> is <em>so</em> hypocritical, <em>so</em> drenched in cynicism, and <em>so</em> damaging to the mental health of tens of millions of people bombarded by the shrapnel from these anxiety bombs, that I decided I had to speak up.</p>



<p class="wp-block-paragraph">The result of this conviction was an op-ed for the <em>New York Times</em> that appeared online last week and in print over the weekend. It was titled <a href="https://www.nytimes.com/2026/06/17/opinion/ai-dangerous-openai-anthropic.html">​“Dear A.I. Companies, the Doom Trolling Has to Stop.”​</a> In the piece, I describe doom trolling as “one of the defining and most arresting properties of our current AI moment,” and declare it “morally indefensible.”</p>



<p class="wp-block-paragraph">The ethical calculus here is clear.</p>



<p class="wp-block-paragraph">If these companies truly believe that they’re developing products that might directly lead to widespread harm – from the destruction of our economy in the best case, to the destruction of our species in the worst – then the only morally-valid response would be to immediately stop these efforts, and apply every resource at their disposal to try to stop every other lab as well.</p>



<p class="wp-block-paragraph">On the other hand, if they <em>don’t</em> really believe that their technology is likely to cause these harms, then they’re effectively “laundering the anxiety of millions to improve the financial fortunes of a vanishingly small number of major stockholders.” Such cynicism would be equally monstrous.</p>



<p class="wp-block-paragraph">In my op-ed. I ask the leading AI labs to stop pretending they’re the reluctant stewards of an inevitable technology, and instead act like normal consumer product companies. This means that they should explain the benefits of their tools, justify their costs, and, <em>of course</em>, affirm that they have no intention of causing existential damage along the way.</p>



<p class="wp-block-paragraph">As a computer scientist, I can assure you that it’s completely possible to build and promote very useful, if not revolutionary, new products on top of generative AI technology without any fears that you’re somehow advancing on a path toward massive societal or existential harm. Doom trolling isn’t a necessary, somber warning; it’s a choice.</p>



<p class="wp-block-paragraph">Anyway, I recommend that you<a href="https://www.nytimes.com/2026/06/17/opinion/ai-dangerous-openai-anthropic.html">​ read the full piece​</a> for more details. But even if you don’t, I want to leave you with the idea that we don’t have to remain in a defensive crouch, putting up with the relentless abuse the AI labs are administering to our collective psyche. We can stand up and say: “Enough.”</p>
<p>The post <a href="https://calnewport.com/dear-ai-companies-stop-the-doom-trolling/">Dear AI Companies: Stop the “Doom Trolling”</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://calnewport.com/dear-ai-companies-stop-the-doom-trolling/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
			</item>
		<item>
		<title>AI Isn’t Breaking Work. It’s Already Broken.</title>
		<link>https://calnewport.com/ai-isnt-breaking-work-its-already-broken/</link>
					<comments>https://calnewport.com/ai-isnt-breaking-work-its-already-broken/#comments</comments>
		
		<dc:creator><![CDATA[Study Hacks]]></dc:creator>
		<pubDate>Mon, 15 Jun 2026 10:00:00 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://calnewport.com/?p=16915</guid>

					<description><![CDATA[<p>The Financial Times ​recently reported​ an interview with Rebecca Hinds, head of the Work AI Institute. Hinds was discussing a new survey of 6,000 digital ... <a title="AI Isn’t Breaking Work. It’s Already Broken." class="read-more" href="https://calnewport.com/ai-isnt-breaking-work-its-already-broken/" aria-label="Read more about AI Isn’t Breaking Work. It’s Already Broken.">Read more</a></p>
<p>The post <a href="https://calnewport.com/ai-isnt-breaking-work-its-already-broken/">AI Isn’t Breaking Work. It’s Already Broken.</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">The <em>Financial Times</em> <a href="https://www.ft.com/content/b4b60d00-2e8c-4db0-b3ed-9988dc0eeb5c?syn-25a6b1a6=1">​recently reported​</a> an interview with Rebecca Hinds, head of the Work AI Institute. Hinds was discussing a new survey of 6,000 digital workers, which included the following arresting statistic:<strong> although respondents claimed that AI saved them 11 hours a week on average, only 13% reported any improvement in company performance.</strong></p>



<p class="wp-block-paragraph">Hinds offers three explanations for this paradoxical result:</p>



<span id="more-16915"></span>



<ul class="wp-block-list">
<li>When calculating the 11 hours saved, workers aren’t counting all of the time they spend waiting for AI agents to complete tasks (an activity some are now calling “botsitting”).</li>



<li>The workers often ignore the cost of toggling between multiple AI tools as they attempt to get a usable response (60% of the sample reported running queries across several tools in search of better outputs).</li>



<li>Workers may also be participating in what Hinds calls “workplace theater,” in which they are “visibly performing work for bosses and colleagues, rather than focusing on the actual grind of getting things done.”</li>
</ul>



<p class="wp-block-paragraph">These findings are probably not what companies like OpenAI and Anthropic want to hear just months before their planned IPOs. But what interests me here is not the shortcomings of AI technology.</p>



<p class="wp-block-paragraph">What caught my attention about this interview is that essentially all of these issues are discussed in my book <a href="https://www.amazon.com/Slow-Productivity-Accomplishment-Without-Burnout/dp/0593544854">​<em>Slow Productivity</em>​</a>, which came out in early 2024, and doesn’t mention AI at all. An earlier generation of digital tools – like email, Slack, video conferencing, and mobile computing – also led workers to vastly underestimate the time wasted wrangling diverse devices, applications, and rapidly toggling back and forth between different tasks and channels. Workplace theater isn&#8217;t new either (in my book, I called it &#8220;pseudo-productivity&#8221;).</p>



<p class="wp-block-paragraph">In this way, AI isn’t so much creating new problems as it is magnifying the types of problems that have long existed. Here I find a potential silver lining. This technology is sufficiently new and exciting that business leaders are paying more attention to its impacts. In seeking to understand how to make AI effective in the workplace, they might finally recognize what has long been broken.</p>
<p>The post <a href="https://calnewport.com/ai-isnt-breaking-work-its-already-broken/">AI Isn’t Breaking Work. It’s Already Broken.</a> appeared first on <a href="https://calnewport.com">Cal Newport</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://calnewport.com/ai-isnt-breaking-work-its-already-broken/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!-- plugin=object-cache-pro client=phpredis metric#hits=2971 metric#misses=14 metric#hit-ratio=99.5 metric#bytes=1218602 metric#prefetches=0 metric#store-reads=71 metric#store-writes=3 metric#store-hits=127 metric#store-misses=4 metric#sql-queries=23 metric#ms-total=331.13 metric#ms-cache=12.66 metric#ms-cache-avg=0.1734 metric#ms-cache-ratio=3.8 -->
