<?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>ProjectCrunch &#8211; Management, Technology, and Beyond</title>
	<atom:link href="http://projectcrunch.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://projectcrunch.com</link>
	<description>Management, Technology, and Beyond</description>
	<lastBuildDate>Mon, 18 May 2026 06:08:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://projectcrunch.com/wp-content/uploads/2021/08/projectcrunch.png</url>
	<title>ProjectCrunch &#8211; Management, Technology, and Beyond</title>
	<link>https://projectcrunch.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Hyphens, Dashes, and the Script that Fixes It    </title>
		<link>https://projectcrunch.com/hyphens-dashes-and-the-script-that-fixes-it/</link>
		
		<dc:creator><![CDATA[Roman Mildner]]></dc:creator>
		<pubDate>Sun, 17 May 2026 15:21:05 +0000</pubDate>
				<category><![CDATA[Crunch Time]]></category>
		<guid isPermaLink="false">https://projectcrunch.com/?p=3933</guid>

					<description><![CDATA[English has been my second language of choice for decades. Like any language, English has its share of charms and challenges. Today, I want to briefly discuss English typography—specifically the use of hyphens and dashes—and <a class="mh-excerpt-more" href="https://projectcrunch.com/hyphens-dashes-and-the-script-that-fixes-it/" title="Hyphens, Dashes, and the Script that Fixes It    ">Read...</a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">English has been my second language of choice for decades. Like any language, English has its share of charms and challenges. Today, I want to briefly discuss English typography—specifically the use of hyphens and dashes—and how to handle them on a regular non-US keyboard.</p>



<p class="wp-block-paragraph">I use the German keyboard layout. No matter what shortcuts one tries, it won&#8217;t offer all the dashes and hyphens that are common in the English language. Fortunately, there is an easy fix for that that I want to share with you.</p>



<h2 class="wp-block-heading">Why Hyphens and Dashes Exist</h2>



<p class="wp-block-paragraph">English has three horizontal marks of increasing length, each used for different purposes.</p>



<p class="wp-block-paragraph">&#8220;-&#8220;<strong><br></strong>hyphen (the shortest)</p>



<p class="wp-block-paragraph">&#8220;–&#8221;<br>en dash (medium length)</p>



<p class="wp-block-paragraph">&#8220;—&#8221;<strong><br></strong>em dash (the longest)</p>



<p class="wp-block-paragraph">Here is a cheat sheet that explains how to use them.</p>



<p class="wp-block-paragraph"><strong>The hyphen</strong> (-) joins words and breaks long words across lines.</p>



<ul class="wp-block-list">
<li><em>State-of-the-art process</em>.</li>



<li><em>Well-trained engineer</em>.</li>
</ul>



<p class="wp-block-paragraph">Every keyboard has a hyphen key, so I will skip past it.</p>



<p class="wp-block-paragraph"><strong>The e<u>n</u> dash</strong> &#8220;–&#8221;is the medium one. It connects ranges and pairs.</p>



<ul class="wp-block-list">
<li><em>Pages 12–18</em>. <em>The Berlin–Munich line</em>.</li>



<li><em>The 2024–2026 program</em>.</li>
</ul>



<p class="wp-block-paragraph">Typographers call it the N-dash because its width matches a capital N in the font being used.</p>



<p class="wp-block-paragraph"><strong>The e<u>m</u> dash</strong> &#8220;—&#8221; is the long one. It interrupts a sentence the way a parenthesis or a colon does, but with more emphasis.</p>



<ul class="wp-block-list">
<li><em>He left the office—the door was still swinging—and called his lawyer</em>.</li>



<li><em>The cause was obvious—failed integration testing</em>.</li>
</ul>



<p class="wp-block-paragraph">The convention I usually follow in my writing (projectcrunch.com, books) is unspaced em dashes—the dash sits directly against the words on either side, with no surrounding whitespace. Some style guides put spaces around them; I prefer the version without spaces because the dash reads as part of the sentence rather than a separator, but it&#8217;s just my personal preference.</p>



<h2 class="wp-block-heading">The problem: my keyboard does not have all of the dashes I need</h2>



<p class="wp-block-paragraph">Even on a US English keyboard, the en dash and em dash are not on any key. You can type them with Alt codes, with autocorrect rules, by holding the hyphen key on a Mac, or by digging through the Insert Special Character menu in Word.</p>



<p class="wp-block-paragraph">On a German keyboard, the situation is worse. The German layout does not even offer the Alt-code shortcut for these on most setups, and the autocorrect-substitution behavior Word does in English (&#8220;convert two hyphens to an em dash&#8221;) does not produce the expected result.</p>



<p class="wp-block-paragraph">The tool I have been running on my machines for years to fix this is AutoHotkey (<a href="https://www.autohotkey.com/">https://www.autohotkey.com/</a>, in short: AHK) on Windows (by the way, on Linux, there is a similar tool called AutoKey).</p>



<h2 class="wp-block-heading">What it does for me</h2>



<p class="wp-block-paragraph">AHK is an automation tool that can, among other things, type any text content in the current editor when a predefined hotkey combination is pressed.</p>



<p class="wp-block-paragraph">For my purposes, I use the hotkey pattern: Shift + Ctrl + Alt + one key. That combination is rarely claimed by any application, which means I can take it for myself without breaking anything.</p>



<p class="wp-block-paragraph">That tool lets me comfortably customize my keyboard. My most frequently used functions include two hyphen shortcuts, five different date stamps, and a handful that focus or launch the applications I live in—Outlook, Word, OneNote, Edge, KeePass, and dict.cc.</p>



<p class="wp-block-paragraph">Particularly practical are the hyphen shortcuts:</p>



<ul class="wp-block-list">
<li>Shift + Ctrl + &#8211;<br>… inserts an en dash &#8212;<br></li>



<li>Shift + Ctrl + Alt + &#8211;<br>… inserts an em dash </li>
</ul>



<p class="wp-block-paragraph">After a few weeks, my fingers automatically select this combination without having to think about it. As with all my articles, it was typed using these two shortcuts.</p>



<p class="wp-block-paragraph">The second useful feature of AHK shortcuts is date stamps. When I am writing meeting notes, naming a file, dating a draft, or timestamping any data, I don&#8217;t want to type it by hand. I press a hotkey:</p>



<ul class="wp-block-list">
<li>Shift + Ctrl + Alt + . for an English-format date such as 16-May-2026</li>



<li>Shift + Ctrl + Alt + L for a German-format date such as 16.05.2026</li>



<li>Shift + Ctrl + Alt + , for an English-format date plus time such as 16-May-2026, 14:32</li>



<li>Shift + Ctrl + Alt + ü for a date followed by my Windows username and a colon, ready for me to type a comment</li>



<li>Shift + Ctrl + Alt + # for an ISO-style date such as 2026-05-16—the one I use for folder names, file prefixes, and anything that needs to sort chronologically</li>
</ul>



<p class="wp-block-paragraph">The last one is particularly helpful because it generates an ISO-formatted date (like 2026-05-17) that can then be used when creating files with that prefix, enabling clean, unified timestamps that can be easily sorted.</p>



<p class="wp-block-paragraph">The rest of the script is application-launching stuff. Outlook, Word, OneNote, Edge, and KeePass each have a three-modifier shortcut that focuses the window if it is already running, or starts the program if it is not. Two more shortcuts open a new Outlook task and a new Outlook mail directly, skipping the main Outlook UI.</p>



<h2 class="wp-block-heading">Setting it up on Windows</h2>



<p class="wp-block-paragraph">AHK is a free, open-source tool.</p>



<ol class="wp-block-list">
<li><strong>Download AutoHotkey</strong> from <a href="https://www.autohotkey.com" target="_blank" rel="noreferrer noopener">https://www.autohotkey.com</a> and run the installer. Choose v1.1 when the installer asks—the script below uses v1 syntax and will not run on v2.</li>



<li><strong>Save the script</strong> somewhere stable.<br>I keep mine in my user folder as AutoHotkey.ahk. Any standard text editor will do, and the .ahk extension makes the file directly launchable; double-clicking it runs the script and adds an icon to the system tray.</li>



<li><strong>Set it to auto-start at login.</strong><br>Press Win + R, type shell:startup, hit Enter. Open a folder; drop a shortcut to your .ahk file into it. From the next sign-in, the script loads on its own, and the hotkeys are live.</li>
</ol>



<h2 class="wp-block-heading">My script</h2>



<p class="wp-block-paragraph">Here is my version of the script. You can use it as a starting point and extend it as you go. Remember to reload the script before your changes take place. Note that some paths (e.g., Outlook) may differ on your machine. </p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<div class="wp-block-file"><a id="wp-block-file--media-9156645f-3fa7-4008-a731-3cdaa41a02a4" href="https://projectcrunch.com/wp-content/uploads/2026/05/AutoHotkey.zip">AutoHotkey</a><a href="https://projectcrunch.com/wp-content/uploads/2026/05/AutoHotkey.zip" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-9156645f-3fa7-4008-a731-3cdaa41a02a4">Download</a></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph">Download and unzip the file. Right-click the AutoHotkey tray icon and pick &#8220;Edit This Script&#8221; — your default script file opens in Notepad. Paste in the contents of <code>AutoHotkey.ahk</code> (or just save the unzipped file directly in place of your default script), Then right-click the tray icon again and pick <em>Reload This Script</em>. The hotkeys are live from that moment on.</p>



<figure class="wp-block-image size-full"><a href="https://projectcrunch.com/wp-content/uploads/2026/05/image-1.png"><img fetchpriority="high" decoding="async" width="285" height="510" src="https://projectcrunch.com/wp-content/uploads/2026/05/image-1.png" alt="" class="wp-image-3948" srcset="https://projectcrunch.com/wp-content/uploads/2026/05/image-1.png 285w, https://projectcrunch.com/wp-content/uploads/2026/05/image-1-168x300.png 168w" sizes="(max-width: 285px) 100vw, 285px" /></a></figure>



<p class="wp-block-paragraph"></p>



<h2 class="wp-block-heading">Be faster, more efficient with AHK</h2>



<p class="wp-block-paragraph">Small pieces of waste compound.</p>



<p class="wp-block-paragraph">If you have to look up today&#8217;s date every time you name a new file, the files end up with no date or inconsistent date formats. Little waste compounds into days and months of wasted time—and distracts you from the actual workflow.</p>



<p class="wp-block-paragraph">If you write a lot on a keyboard that lacks the characters you need, install AutoHotkey, paste this script, and start with the two-hyphen shortcuts. Add the date stamps the next time you find yourself typing a date by hand twice in one day. Before long, you won&#8217;t want to miss this little efficiency hack.</p>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>CORE SPICE Vertical Integration Part 2: Building a DMZ</title>
		<link>https://projectcrunch.com/core-spice-vertical-integration-part-2-building-a-dmz/</link>
		
		<dc:creator><![CDATA[Roman Mildner]]></dc:creator>
		<pubDate>Thu, 14 May 2026 22:10:25 +0000</pubDate>
				<category><![CDATA[Management]]></category>
		<category><![CDATA[CORE SPICE]]></category>
		<category><![CDATA[Strategy]]></category>
		<guid isPermaLink="false">https://projectcrunch.com/?p=3911</guid>

					<description><![CDATA[The DMZ stands or falls on the choice of an appropriate joint project leadership structure. Specifically, who picks the people and enforces the norms—across employer boundaries, with mandate from all parents in the program charter. <a class="mh-excerpt-more" href="https://projectcrunch.com/core-spice-vertical-integration-part-2-building-a-dmz/" title="CORE SPICE Vertical Integration Part 2: Building a DMZ">Read...</a>]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-audio"><audio controls src="https://projectcrunch.com/wp-content/uploads/2026/05/CORE_SPICE_Vertical_Integration_Part_2-2.mp3"></audio></figure>



<p class="wp-block-paragraph">In the first part of this series, I emphasized that the China-speed gap is caused by the OEM-supplier integration &#8220;tax,&#8221; and that the answer is to bridge this gap within a defined DMZ (figuratively &#8220;demilitarized zone&#8221;) for the duration of a single program rather than acquiring the supplier or using constructs such as joint ventures. After discussing the reasons for creating a DMZ, we are turning to the practical aspect: the success factors that make vertically integrated programs work.</p>



<p class="wp-block-paragraph">I had hoped to create just one article, but I realized it won&#8217;t fit; it would be just too long. What follows in this article is, therefore, the first half of this second article of the series: the vertical integration architecture—the structural choices. Part 3 will be the operations: what happens after the contracts are signed.</p>



<h2 class="wp-block-heading">Precedents</h2>



<p class="wp-block-paragraph">Cross-company integration examples are hard to spot because they are rarely publicly communicated. A few available examples, both positive and negative, are outlined below.</p>



<p class="wp-block-paragraph"><strong>Boeing 787 Dreamliner.</strong> Boeing outsourced sixty to seventy percent of the 787&#8217;s design and manufacturing work to more than fifty international suppliers. The program ran three years late and billions of dollars over budget, with integration defects occurring for many years after the aircraft entered service. The many lessons learned from this crisis can be summarized in one key recommendation: &#8220;tightly integrated governance for critical components.&#8221;</p>



<p class="wp-block-paragraph">A well-designed DMZ would have solved the Boeing 787 problem.</p>



<p class="wp-block-paragraph"><strong>Tesla and Panasonic at Gigafactory Nevada.</strong> In this joint project, Tesla provided the technical facilities and utilities, while Panasonic provided the cell manufacturing equipment. This was a commercial &#8220;marriage made in heaven,&#8221; and the two companies jointly designed the 2170 battery cell, which has been shipped and integrated into millions of Tesla EVs. The overall investment was around $5 billion. Engineers from both companies worked successfully on the same site and program under integrated project leadership. By 2024, the integrated team had cumulatively produced over 10 million drive units.</p>



<p class="wp-block-paragraph"><strong>Volkswagen and Rivian.</strong> The 2024 joint venture is a fifty-fifty structure with co-CEOs from each parent, joint engineering teams in California and Germany. The &#8220;software-defined vehicle&#8221; narrative inspired the initiative. The purpose is to develop the next-generation EV platform. Volkswagen also took an equity stake in Rivian during the process. It is an integrated endeavor comprising financial and operational/development components.</p>



<p class="wp-block-paragraph">In this case, unlike Tesla and Panasonic, equity is part of the picture here as well. However, our DMZ concept does not assume any shared equity arrangement; it is just one possible option among many.</p>



<h2 class="wp-block-heading">Who runs the DMZ</h2>



<p class="wp-block-paragraph">The DMZ stands or falls on the choice of an appropriate joint project leadership structure. Specifically, who picks the people and enforces the norms—across employer boundaries, with mandate from all parents in the program charter.</p>



<p class="wp-block-paragraph">Such a role does not exist in the conventional OEM-supplier arrangement. The OEM&#8217;s program manager is too partisan; whatever they decide is read by suppliers as OEM partisanship. A partisan project manager (i.e., from either an OEM or a supplier) is unlikely to fill this gap. The other suppliers in the program will not accept their decisions as legitimate. The role must sit somewhere that all parents in the program charter recognize as neutral, and it must carry their mandate to act with cross-company authority.</p>



<p class="wp-block-paragraph">I have written about a related pattern inside a single OEM—the <a href="https://projectcrunch.com/t-rex-company/" data-type="post" data-id="440" target="_blank" rel="noreferrer noopener">T-Rex Company</a>—which argues that the only way to get a high-tech program to move at speed is to give it project authority that is matrix-agnostic. The DMZ is the inter-company version of the same idea: a project leadership authority that cuts through all companies&#8217; boundaries. Such authority is the only way to ensure trusted coordination among all involved organizations in a vertically integrated project. I will discuss this role in the last part of this article series.</p>



<p class="wp-block-paragraph">A further decisive aspect is to focus on merit-based selection rather than delegate that question to the involved commercial organizations. The principle that separates a working DMZ from a Boeing-787 setup is <em>named engineers</em>. Team members must enter the DMZ by name. That is a critical aspect when commercial organizations collaborate on delivery. For instance, a typical outsourcing organization will &#8220;sell&#8221; a star developer but then deliver 10 more mediocre developers or entry-level programmers alongside, bloating the headcount and diluting responsibilities, often resulting in teams with overly mixed skill sets wasting each other&#8217;s time on coordination and internal peer-to-peer on-the-job training.</p>



<p class="wp-block-paragraph">Instead, in our model, the central project leadership (rather than involved commercial entities) must have a decisive say in who joins the project, and those experts must be named explicitly (and not as placeholders or headcounts).</p>



<p class="wp-block-paragraph">I want to re-emphasize this point because nothing is more important than the quality and motivation of each engineer in a critical DMZ project. Any senior engineer who has worked with large outsourcing programs will recognize the failure mode this is designed to prevent: one excellent engineer plus twenty-five warm bodies arriving under a single statement of work is a billing arrangement prone to waste, friction, and frustration.</p>



<p class="wp-block-paragraph">Veto authority over replacements must be enforced.</p>



<p class="wp-block-paragraph">If a named engineer leaves the program—for any reason (resignation, illness, family)—the program lead picks a named replacement from the available pool, with the option to choose no replacement. The involved supplier must not have the liberty to fill the gaps unilaterally.</p>



<p class="wp-block-paragraph">The same role carries responsibility for the program&#8217;s norms—how disagreements are resolved, what gets escalated, and how decisions are made when they cross company lines.</p>



<p class="wp-block-paragraph">Before we discuss the definition of such a project role in the subsequent article, let&#8217;s take a look at other aspects of a vertically integrated project. I will use the metaphor of a &#8220;<em>wall</em>&#8221; to enumerate the essential success criteria for a vertically integrated program:</p>



<ul class="wp-block-list">
<li>Intellectual property</li>



<li>Commercial model</li>



<li>Careers</li>



<li>Security &amp; workspace</li>
</ul>



<p class="wp-block-paragraph">In this part, we will discuss the first two <em>walls</em>.</p>



<h2 class="wp-block-heading">Wall 1: intellectual property</h2>



<p class="wp-block-paragraph">Intellectual property is a critical aspect of an integrated project in which various legal entities and individuals work on cutting-edge technologies. IP attaches to named contributors and is resolved once, in a pre-program framework agreement. Trying to settle it mid-program is an unacceptable legal and commercial risk.</p>



<p class="wp-block-paragraph">The framework agreement is prepared by specialized lawyers and signed before any engineer enters the DMZ. It determines, among other aspects: what background IP each party brings in, what carve-outs protect that background IP, who owns what is generated during the program, and what the licensing arrangement looks like after the program ends. The named engineers in the DMZ get usage rights to both parties&#8217; background IP for the duration. That is what enables them to do integrated technical work—to read each other&#8217;s specifications, to debug across the commercial boundaries, to commit code that touches both sides&#8217; libraries.</p>



<p class="wp-block-paragraph">Many cross-company integration programs fail due to this challenge. The parties find IP negotiation slow and uncomfortable, so they postpone it. They start the program with the framework half-drafted and the assumption that it will be finished as the work progresses, but that&#8217;s a careless fantasy. The fight comes due when the team needs to ship a release, and the program freezes while lawyers do the work they should have done before anyone wrote a line of code.</p>



<h2 class="wp-block-heading">Wall 2: commercial model</h2>



<p class="wp-block-paragraph">The default commercial model in the automotive industry—time-and-materials, billed by the hour—pays the supplier to keep working. That&#8217;s one source of inefficiency due to the fundamental misalignment with commercial incentives. Think about it for a minute: if developers&#8217; key metric is to generate a lot of billable hours, then they will be eager to do just that. But if the incentive is to deliver value in the form of deliverables that align with safety and quality goals, they will be focused on delivering that kind of value.</p>



<p class="wp-block-paragraph">Thus, the DMZ must ensure that project members are inclined to deliver value rather than just billing hours.</p>



<p class="wp-block-paragraph">The replacement is an outcome-aligned commercial pool: suppliers&#8217; compensation is tied to program milestones rather than to hours billed, and the rate for a named engineer&#8217;s contribution is set with reference to that engineer&#8217;s expected impact on the program, not to a market hourly rate. That may be easier said than done, but it can at least be a basic expectation to deliver according to plan instead of &#8220;just being there.&#8221;</p>



<p class="wp-block-paragraph">As part of this effectiveness-centered approach, the premium rate is conditional on the named engineer being on the program. An attempt to substitute a &#8220;warm body&#8221; (or a weaker candidate) automatically cancels the rate, thereby enforcing the named-engineers principle both commercially and structurally.</p>



<p class="wp-block-paragraph">Two more components must be in the contract.</p>



<ul class="wp-block-list">
<li>Re-baselining triggers—conditions under which the commercial arrangement re-opens, such as scope expansion beyond a threshold or milestone slip beyond a threshold. Such a situation must be codified in the contract to avoid bottlenecks and commercial deadlocks.</li>



<li>A small risk-sharing pool—a kitty fund both &#8220;parents&#8221; contribute to, drawn down by the program lead&#8217;s authority, for the unbudgeted surprises that any complex program produces. Without it, every surprise becomes a renegotiation, and renegotiations pose a substantial risk to the program.</li>
</ul>



<p class="wp-block-paragraph">The reason cross-company programs most often fail at this wall is that the OEM contracts for deliverables, and the supplier contracts for hours, and the gap between those two framings produces an unsigned argument that runs throughout the program&#8217;s life. This aspect must be clarified and codified in writing at the beginning of the entire program.</p>



<h2 class="wp-block-heading">Why a supplier says yes</h2>



<p class="wp-block-paragraph">The elephant in the room is now the question: &#8220;Why would I send my best engineers into a customer&#8217;s program for months or even years under named individual commitments, with all the retention risk that creates?&#8221;</p>



<p class="wp-block-paragraph">The answer is that the alternatives are worse. The commercial model prices a named star engineer&#8217;s contribution to a program outcome, not a market hourly rate. Even at a lower price, up to 10x as many engineers are sometimes required to deliver what a &#8220;star engineer&#8221; can. The supplier captures margin on the people they should already have been pricing as premium. If not, the project&#8217;s performance suffers, and a supplier is forced to hire more mediocre people. The locked-in multi-year program revenue eliminates much of the supplier&#8217;s normal sales-cycle overhead—fewer RFPs, fewer demos, fewer rounds of competing for slots that low-cost-country competitors will eventually win on price anyway. Without this, the cost per dollar of revenue suffers, not to mention the supplier&#8217;s reputation, which now has nothing to demonstrate except the ability to sell more &#8220;best cost&#8221; placeholders. It is a lose-lose proposition that is fundamentally unacceptable in a high-stakes vertically integrated project.</p>



<p class="wp-block-paragraph">An additional incentive for sending star developers to participate in such projects is that the named engineer returns from the program having worked on the next-generation, often cutting-edge and novel technology product, integrated with the OEM&#8217;s stack, with relationships and skills the supplier can monetize in every future bid. Suppliers selected for DMZ participation can market the selection—&#8221;named-pick for the OEM&#8217;s next-generation platform&#8221; is of extraordinary value to the supplier for years. Suppliers inside a DMZ see what the OEM is building next; suppliers outside it find out when the RFP arrives.</p>



<p class="wp-block-paragraph">The structural advantage is what makes the case so attractive. Commodity time-and-materials competition is being won, on margin, by low-cost-country outsourcers whose model is the one-star-plus-twenty-five-warm-bodies arrangement the DMZ cannot and must not accept. Low-cost-country outsourcers cannot easily enter it, because they do not have the named engineering stars.</p>



<p class="wp-block-paragraph">Also, OEM internalization cannot easily replicate this because the acquisition-related cultural integration cost is too high. Instead, suppliers who participate in the DMZ become the OEM&#8217;s preferred long-term partner. Suppliers who decline lose ground in both directions simultaneously.</p>



<p class="wp-block-paragraph">Also, the poaching risk must be clearly addressed and mitigated in such arrangements. A non-poaching agreement with all involved parties must be clearly and contractually signed.</p>



<h2 class="wp-block-heading">Summary and outlook</h2>



<p class="wp-block-paragraph">We have discussed the first two &#8220;walls&#8221; that must be overcome for an effective DMZ project:</p>



<ul class="wp-block-list">
<li>IP: The role of intellectual property</li>



<li>Commercial model: How suppliers are compensated, with re-baselining triggers and a risk-sharing pool that aligns incentives with program outcomes</li>
</ul>



<p class="wp-block-paragraph">Two walls remain. Part 3 will be about what an engineer personally gains from spending many months on someone else&#8217;s program—and about where they sit while doing it, on which laptop, with what credentials.</p>
]]></content:encoded>
					
		
		<enclosure url="https://projectcrunch.com/wp-content/uploads/2026/05/CORE_SPICE_Vertical_Integration_Part_2-2.mp3" length="36941977" type="audio/mpeg" />

			</item>
		<item>
		<title>Your Project Needs Its Purpose Back.</title>
		<link>https://projectcrunch.com/your-project-needs-its-purpose-back/</link>
		
		<dc:creator><![CDATA[Roman Mildner]]></dc:creator>
		<pubDate>Mon, 11 May 2026 04:50:00 +0000</pubDate>
				<category><![CDATA[Management]]></category>
		<category><![CDATA[Insights]]></category>
		<category><![CDATA[Strategy]]></category>
		<guid isPermaLink="false">https://projectcrunch.com/?p=3881</guid>

					<description><![CDATA[In every distressed safety-critical program I have walked into over the decades, there is a moment of genuine insight. I sit down with the senior engineers and project leads—the people who actually know how the system works—and within twenty minutes, they tell me exactly what is wrong with the project and exactly what would fix it. <a class="mh-excerpt-more" href="https://projectcrunch.com/your-project-needs-its-purpose-back/" title="Your Project Needs Its Purpose Back.">Read...</a>]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-audio"><audio controls src="https://projectcrunch.com/wp-content/uploads/2026/05/Bring-the-Purpose-Back.mp3"></audio></figure>



<p class="wp-block-paragraph">In every distressed safety-critical program I have walked into over the decades, there is a moment of genuine insight. I sit down with the senior engineers and project leads—the people who actually know how the system works—and within twenty minutes, they tell me exactly what is wrong with the project and exactly what would fix it.</p>



<p class="wp-block-paragraph">They are usually right.</p>



<p class="wp-block-paragraph">Then I ask: why isn&#8217;t this happening? Why are we not just executing what everyone in the room knows needs to be done?</p>



<p class="wp-block-paragraph">And the answer is: nobody is letting us. The policy won&#8217;t let us. The customer is unhappy and unreasonable. Management is panicked and focuses on corporate standards. Process people are demanding compliance. Everyone is drowning in meetings and committees. Decisions take weeks—sometimes forever. Trust between the team and key suppliers has collapsed. The team has been running overtime for months, and nobody is sure anymore what they are running toward.</p>



<p class="wp-block-paragraph">The truth is that senior engineers know what to do, but they simply have no permission to do it. And after enough months of that, they begin to lose faith.</p>



<p class="wp-block-paragraph">This is the moment when consultants get called in. And this is also where many consultants get the diagnosis wrong.</p>



<h2 class="wp-block-heading">The Misdiagnosis</h2>



<p class="wp-block-paragraph">The default assumption—among process consultants, interim project managers, process compliance specialists—is that distressed projects are engineering or process failures. In such cases, &#8220;gaps&#8221; are being closed, one by one. The defect curve was incorrect, so we meticulously installed a better ticket-tracking system. The release scope keeps slipping, so we define a 10-page scope governance work instruction. The traceability is flawed, so we mandate that the matrix be filled in. Process gaps in, process gaps out.</p>



<p class="wp-block-paragraph">Those measures sound rational and correct, but they are just &#8220;process patches.&#8221; Almost every distressed safety-critical project I have seen is a <em>purpose failure first</em>, and an engineering failure second. The symptoms are real, but they are symptoms, not the disease.</p>



<p class="wp-block-paragraph">When a team has lost its sense of purpose—why it is worth doing well, why it is worth doing at all—the metrics, while often useful, are not <em>the</em> solution. That is not because those measures are wrong, but because processes do not motivate anyone except for the compliance guardians. As a result, defects get logged casually, specifications drift, reviews become rituals, and the traceability measures become nebulous. The team becomes even more frustrated. The senior engineers, who could see all of this clearly, either check out or shift into self-protection mode. They stop bringing their best to a project that—as everyone feels—no longer deserves it.</p>



<p class="wp-block-paragraph">You can install all the processes you like into that situation, and nothing will improve. Process without purpose is just a checkbox ritual, and senior engineers see through it faster than anyone.</p>



<h2 class="wp-block-heading">Russell Ackoff Saw This Coming</h2>



<p class="wp-block-paragraph">The systems-thinking pioneer Russell Ackoff distinguished between purposeful and purposive systems. A purposive system is goal-oriented in a mechanical sense—it simply moves toward a target in terms of schedule and milestones. A purposeful system, on the other hand, has a goal that its members understand, share, and choose. In such projects, team members can explain why the goal matters and why it should be pursued.</p>



<p class="wp-block-paragraph">A distressed project almost always starts as a purposeful system. At its inception, someone, somewhere, articulated a real reason this product needed to exist—a car that would actually be safer, a medical device that would actually save lives, a rail signaling system that would actually let trains run on time. That is why engineers joined the project. The team felt they were part of something that mattered not just to management but to the organization and even to society as a whole. The senior engineers signed up because they wanted to build the thing, not just collect the paycheck.</p>



<p class="wp-block-paragraph">But over time, the purpose slowly and quietly erodes. Customer politics, self-serving siloes, scope creep, leadership churn, restructuring initiatives, sustained pressure—these are the factors that wear down the connection between the daily work and the original reason why this project exists. The system becomes purposive without being purposeful. People hit milestones without knowing what those milestones really mean. They produce deliverables that nobody is sure anyone reads.</p>



<p class="wp-block-paragraph">When that happens, process or method improvements won&#8217;t help because the product has lost its intrinsic meaning.</p>



<h2 class="wp-block-heading">Not Every Project Deserves to Be Saved</h2>



<p class="wp-block-paragraph">Although it might sound a bit dramatic, I want to emphasize one important point. No one can save some projects, because they were never worth saving in the first place.</p>



<p class="wp-block-paragraph">Let me use a real example to make this point clear.</p>



<p class="wp-block-paragraph">I once consulted briefly on Fiscus, the German federal-state effort to build unified tax-office software. The entire endeavor was truly a project Odyssey. Thirteen years, nine hundred million euros, sixteen Länder with conflicting interests—that was the frame. There was no coherent ownership and no shared purpose at any level of the organization. Bavaria and the eastern Länder eventually quit and built their own systems. The central project died. By the time I arrived, the question of &#8220;how to recover this&#8221; was the wrong question. The right question was: should this project have existed at all, in this form, with this structure, with these politics? The honest answer was no.</p>



<p class="wp-block-paragraph">Projects like Fiscus are <em>purpose-dead from the start</em>. They were never built with a real purpose in mind. They were built around a political compromise, or a budget line item, or a vague aspiration that nobody could believe in.</p>



<p class="wp-block-paragraph">This anecdote matters because genuine purpose defines whether a project can be turned around and saved. A recovery is only possible if the project was once actually really worth doing. That holds when there is a genuine product underneath, a real problem to solve, a real customer who needs it, and a team that originally signed up to build it for all the right reasons. In that case, the purpose is still in there somewhere, dormant, recoverable. Bring it back, and the team comes back with it.</p>



<p class="wp-block-paragraph">However, if the project was rotten at the root—wrong structure, wrong politics, wrong premise—no turnaround magician can save it, and trying only postpones the inevitable end.</p>



<p class="wp-block-paragraph">In other words, a project worth saving is the project that <em>was</em> originally <em>worth</em> doing. Get the purpose right, and the project can heal.</p>



<h2 class="wp-block-heading">Bring the Purpose Back</h2>



<p class="wp-block-paragraph">When the project is genuinely worth saving, the first job is not to install better metrics or tighter governance. It is to reconnect the team with a credible reason for delivering this project.</p>



<p class="wp-block-paragraph">That sounds &#8220;soft&#8221;—but it is not. It is a concrete, genuine insight.</p>



<p class="wp-block-paragraph">It often takes the form of a direct conversation with the senior engineers, in which I ask them to name, in plain language, what this project, properly executed, would actually mean to the world. I mean, not the marketing version or the numb steering committee version, but <em>their</em> version. What does it mean, for them, that this product ships well? What does it mean if it ships badly? What would they want to be able to say about it three years from now?</p>



<p class="wp-block-paragraph">The answer is usually straightforward and plain.<em> I want this car&#8217;s lane-keeping to actually save someone&#8217;s life on a wet road at night. I want this medical device to be the one clinicians trust. I want the next generation of engineers at this company to learn from a project that worked rather than one that failed. I want to look at this product, ten years from now, and be proud of what we did.</em></p>



<p class="wp-block-paragraph">When senior engineers articulate purpose to themselves, in front of someone who takes it seriously, something shifts. They remember why they signed up. They remember that they are still allowed to care. The defensive posture dissolves, and the unholy spell is broken.</p>



<p class="wp-block-paragraph">In such decisive moments, I am not trying to play the role of a motivational speaker or simply try to make them <em>feel</em> better. I am trying to <em>think</em> with them more clearly about what this project is actually about. What follows is often an insight that they are not alone in this. That is already healing. What follows, when done right, is the miracle of a project turnaround.</p>



<h2 class="wp-block-heading">What Senior Engineers Need</h2>



<p class="wp-block-paragraph">The conventional view of distressed projects assumes the team is the problem and outside expertise is the solution. But that&#8217;s very rarely the case. The senior engineers are not the problem. They are the most capable, committed, and knowledgeable people in the organization. They are also the most beaten down.</p>



<p class="wp-block-paragraph">These are people who spent years at university studying complex technical and scientific matters. Then they spend years getting genuinely good at their jobs. They went into this work because they wanted to build things—real, complex, challenging products—things that mattered. Many of them are still, underneath the exhaustion, the same people they were when they started.</p>



<p class="wp-block-paragraph">What they need is not more abstract instruction or more methodical or &#8220;standards&#8221; preaching. They need three things they have been missing for months (or sometimes even years):</p>



<p class="wp-block-paragraph"><em>Permission to do their actual job. </em>Most senior engineers in distressed projects have been pulled into endless coordination, escalation, and political work. They often cannot remember the last time they had a clear week to think technically. The first thing a recovery does is give them that week back.</p>



<p class="wp-block-paragraph"><em>Cover from the organizational chaos. </em>Senior engineers cannot do their best work while also fielding panicked questions from a steering committee. The recovery installs someone—a Project Lead with real authority, or a coach in the room, or both—who absorbs the noise and lets them work.</p>



<p class="wp-block-paragraph"><em>Belief that recovery is possible. </em>By the time a project is in real trouble, the senior engineers have usually privately concluded that it cannot be saved anyway. They have mentally &#8220;checked out.&#8221; You can literally see that in their eyes. Sometimes they are right, and the project is &#8220;Fiscus.&#8221; But more often, they are wrong, and what they are missing is someone in the room who has seen worse and pulled it through, and who is honest about what is and isn&#8217;t possible. Pretending things are fine destroys credibility. There are usually clean, simple measures to restructure the project. They need to be spelled out with confidence. Done that way, it works.</p>



<h2 class="wp-block-heading">A Note on Senior Engineers</h2>



<p class="wp-block-paragraph">Senior engineers—such as chief engineers, principal engineers, technical fellows, the people who have spent many years getting genuinely good at building complex products—are the most underutilized asset in modern safety-critical development. They are also, in my experience, the most starved for honest advice that resonates with their way of thinking.</p>



<p class="wp-block-paragraph">The corporate world has spent decades promoting its best technical minds into managers—and then wondering why projects keep failing. It has filled its leadership ranks with people who are good at compliance but have forgotten how to actually build things. It has surrounded its remaining senior engineers with process apparatus that was supposed to scale their judgment but instead replaces it with checklists.</p>



<p class="wp-block-paragraph">The senior engineers know all of this. They feel it daily. They are not naive about their own situation. What they need is not motivation. What they need is recognition—from someone with technical credibility—that they are right about what is wrong, and that this person is willing to fight alongside them to fix it.</p>



<p class="wp-block-paragraph">That is, I think, the actual job. Everything else—the frameworks, the dashboards, the process design, the coaching—must be the core service to senior engineers, restored to their craft, building things they can be proud of, on projects that remember what they are for.</p>



<p class="wp-block-paragraph">That is what I mean by bringing purpose back. And that, in the end, is what every distressed project that <em>is</em> worth saving actually needs.</p>



<p class="wp-block-paragraph"></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"><em>The framework I use for this kind of work—including the recovery dashboard discussed in earlier articles—is available </em><a href="https://projectcrunch.com/core-spice-coaching-concept/" target="_blank" rel="noreferrer noopener"><em>here</em></a><em>.</em></p>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
		
		<enclosure url="https://projectcrunch.com/wp-content/uploads/2026/05/Bring-the-Purpose-Back.mp3" length="13912481" type="audio/mpeg" />

			</item>
		<item>
		<title>The Quiet Retreat from Excellence? The New, Hidden Bitcoin</title>
		<link>https://projectcrunch.com/the-quiet-retreat-from-excellence-the-new-hidden-bitcoin/</link>
		
		<dc:creator><![CDATA[Roman Mildner]]></dc:creator>
		<pubDate>Sun, 03 May 2026 05:05:00 +0000</pubDate>
				<category><![CDATA[Crunch Time]]></category>
		<guid isPermaLink="false">https://projectcrunch.com/?p=3893</guid>

					<description><![CDATA[A guy I knew years ago was the best guitarist in his small town. Local gigs, people actually came to see him. He was charismatic and really good at his self-taught double-hand tapping. Then he <a class="mh-excerpt-more" href="https://projectcrunch.com/the-quiet-retreat-from-excellence-the-new-hidden-bitcoin/" title="The Quiet Retreat from Excellence? The New, Hidden Bitcoin">Read...</a>]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-audio"><audio controls src="https://projectcrunch.com/wp-content/uploads/2026/05/Quiet_Retreat_from_Excellence.mp3"></audio></figure>



<p class="wp-block-paragraph">A guy I knew years ago was the best guitarist in his small town. Local gigs, people actually came to see him. He was charismatic and really good at his self-taught double-hand tapping.</p>



<p class="wp-block-paragraph">Then he watched one episode of a talent show—some 12-year-old kid playing things he couldn’t even replicate on his guitar. That was a game-changer for him. He realized he would never be as good, and he gave up. The gap suddenly looked infinite.</p>



<p class="wp-block-paragraph">Globalization suddenly discouraged people from excelling at their craft. Everyone wants to be “the best”—but if you can never, ever be the best: Why bother?</p>



<p class="wp-block-paragraph">AI is doing the same thing, but at 100x speed. </p>



<p class="wp-block-paragraph">You used to be able to sit down, write something decent, design something decent, code something decent—and feel you were getting somewhere with it. You could feel like a hero in your own little talent show. People noticed. It felt like yours. Now the machine spits out something better in 12 seconds, and half the audience already assumes anything good is probably AI anyway. So why bother getting good?</p>



<p class="wp-block-paragraph">The quiet retreat has already started.</p>



<p class="wp-block-paragraph">I see this phenomenon everywhere. Writers stopped spending weeks writing and refining their articles. Yes, skilled readers can still notice the difference, but that gap is shrinking fast. Once your “voice” (writing style) can be fully replicated, you are done.</p>



<p class="wp-block-paragraph">Kids spent months designing an awesome animation in Blender, starting with a simple cube that eventually morphed into an entire space battle movie. Now, tools like Midjourney do that in no time.</p>



<p class="wp-block-paragraph">People are giving up. Not because they’re lazy, but because the conventional reward system is broken. Globalization was an injury, but the AI wave has added insult to that injury.</p>



<p class="wp-block-paragraph">Here is the thing, though: most of what AI is replacing was already the low-purpose stuff. For example, the “content-is-the-king” idea has led to a flood of meaningless web articles in the past. Boring stock photos were used because we needed pictures for a blog post, not because they were meant to say something meaningful. It had to be there because the blog post template demanded it. Repetitive work was only there because it was cheap (“best-cost”).</p>



<p class="wp-block-paragraph">In other words, AI is just finishing the job globalization started.</p>



<h4 class="wp-block-heading"><strong>A Survival Guide for the AI Era</strong></h4>



<p class="wp-block-paragraph">I feel that three things will become the superpowers for anyone moving forward in the new AI era.</p>



<ol class="wp-block-list">
<li><strong>People who are already famous. </strong>The James Deans of their fields. They’re safe for now, but they’re also aging out—or dead. A key part from Dean’s wrecked Porsche sold for nearly $400,000. Stuff from known personalities that cannot be replicated becomes valuable.</li>



<li><strong>The truly unique stuff.</strong> Example: Swiss watches. A walk through the town of Zürich reveals shops where watches can lighten your wallet by a million dollars. Swiss watchmakers spend 1,000–2,000+ hours hand-finishing a single watch, using techniques passed down over generations.</li>



<li><strong>People who genuinely want to help</strong>, care about you, actually do help, and know how to do it in a genuine, honest, and authentic way. Not the fake “thought leadership” version. I mean that kind of help that really matters and offers value, including motivational aspects, thoughtful meaning, and genuineness. You can get generic answers from any LLMs. But an in-depth, sharp analysis, understanding the context in every specific case, and being willing and wanting to help with your personal and professional situation—that’s scarce. Everyone is thinking of themselves first; Someone who truly wants to help you is rare.</li>
</ol>



<p class="wp-block-paragraph">AI will increasingly keep getting better at the “best cost” version of everything—anything that AI generates becomes a cheap commodity, but it can never replace <em>purpose</em>.</p>



<p class="wp-block-paragraph"><em>Purpose</em> is the only currency that remains in high demand. It won’t devalue the second it’s “AI-made.”</p>



<h4 class="wp-block-heading"><strong>At the end of the day</strong></h4>



<p class="wp-block-paragraph">The winners of the AI revolution won’t necessarily be the most talented. They’re the ones who still “give a damn.” We are about to find out how many of us are left in that category.</p>



<p class="wp-block-paragraph">This is the real “abundance trap.” The peril is not that AI takes our jobs, but that it quietly takes our reason to try.</p>



<p class="wp-block-paragraph">We must stop competing with the machine on its terms and start building things the machine can’t fake. Purpose is not a nice-to-have anymore—it’s the new Bitcoin.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"><strong>References</strong></p>



<ul class="wp-block-list">
<li><a href="https://projectcrunch.com/the-ai-abundance-trap-trillion-dollar-valuations-ai-job-scare-and-how-we-can-still-grow-the-pie/" data-type="post" data-id="3704" target="_blank" rel="noreferrer noopener">The AI Abundance Trap: Trillion-Dollar Valuations, AI Job Scare—And How We Can Still Grow the Pie</a></li>
</ul>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
		
		<enclosure url="https://projectcrunch.com/wp-content/uploads/2026/05/Quiet_Retreat_from_Excellence.mp3" length="5810688" type="audio/mpeg" />

			</item>
		<item>
		<title>CORE SPICE Vertical Integration: How Legacy OEMs Can Match China Speed Without Owning Their Suppliers (Part 1)</title>
		<link>https://projectcrunch.com/core-spice-vertical-integration-how-legacy-oems-can-match-china-speed-without-owning-their-suppliers-part-1/</link>
		
		<dc:creator><![CDATA[Roman Mildner]]></dc:creator>
		<pubDate>Wed, 29 Apr 2026 13:51:54 +0000</pubDate>
				<category><![CDATA[Management]]></category>
		<category><![CDATA[CORE SPICE]]></category>
		<guid isPermaLink="false">https://projectcrunch.com/?p=3845</guid>

					<description><![CDATA[When BYD ships a new platform faster than its legacy competitors can complete a single ECU change request, the legacy OEMs struggle to explain why. The excuses are manifold, including cheaper labor, government subsidies, and lower safety standards. <a class="mh-excerpt-more" href="https://projectcrunch.com/core-spice-vertical-integration-how-legacy-oems-can-match-china-speed-without-owning-their-suppliers-part-1/" title="CORE SPICE Vertical Integration: How Legacy OEMs Can Match China Speed Without Owning Their Suppliers (Part 1)">Read...</a>]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-audio"><audio controls src="https://projectcrunch.com/wp-content/uploads/2026/04/Vertical-Integration.mp3"></audio></figure>



<h4 class="wp-block-heading">When BYD ships a new platform faster than its legacy competitors can complete a single ECU change request, the legacy OEMs struggle to explain why. The excuses are manifold, including cheaper labor, government subsidies, and lower safety standards.</h4>



<p class="wp-block-paragraph">The &#8220;China speed&#8221; advantage is not about just working harder. It is about working within a single, productive organizational environment. BYD produces around 75% of its vehicle components in-house. Tesla has pulled integration tasks back from its Tier-1s and runs them centrally. The engineers working on the battery, the motor controller, the e-drive software, and the vehicle architecture report into a single chain of command. There is no friction between OEM and supplier because there actually is no supplier.</p>



<p class="wp-block-paragraph">Legacy OEMs cannot replicate this. They will not buy out Bosch, Continental, ZF, Magna, or Aptiv—and even if they wanted to, antitrust regulators and market caps would stop them. The vertical-integration option is structurally limited.</p>



<p class="wp-block-paragraph">In this article, I introduce a concept to address this problem. I call it <strong>CORE SPICE Vertical Integration</strong>: an operating model that delivers the capital-efficiency and speed benefits of vertical integration without the ownership—by constructing a neutral development zone where individual experts, drawn from OEM and supplier organizations, work as one team on one program under a shared productive environment.</p>



<p class="wp-block-paragraph">In the Embedded World Conference 2024, I presented this cooperation principle with Thomas Ziller and Franco Baiocchi under the name &#8220;Fusion&#8221;. We cemented it in our book &#8220;CAR IT Reloaded&#8221; in 2024/2025 (German/English editions). The principle was &nbsp;now re-branded as &#8220;CORE SPICE Vertical Integration.&#8221;</p>



<p class="wp-block-paragraph">The argument consists of two parts. This part 1 article explains why the conventional OEM-supplier construct is the real bottleneck and what happens when you stop trying to manage this natural friction and instead suspend it within a defined DMZ (demilitarized zone). Part 2 will discuss challenging questions of IP boundaries, commercial models, career risk for embedded engineers, project infrastructure, and security considerations.</p>



<h2 class="wp-block-heading">The interface problem</h2>



<p class="wp-block-paragraph">Anyone who has lived through a distressed MtO (Make-to-Order, the conventional ECU car part development) project knows the challenges of cooperation with multiple suppliers and the OEM. It is a well-documented problem within the industry (e.g., see CAR IT Reloaded, chapter 1). The friction lies neither within the supplier nor within the OEM organization; rather, it is at the interface between them.</p>



<p class="wp-block-paragraph">At those interfaces, OEM and supplier teams independently model the same vehicle subsystem, compete for resources, and live in constant commercial tension because neither can fully trust the other&#8217;s outcomes. It manifests as change requests, escalations, back-and-forth negotiations, etc., rather than constructive conversations, because the people who could resolve a clarification in five minutes do not sit in the same room and instead route it through contractual amendments. The fallout includes late defects, escalations, and failures at end-of-line integration, because integration testing occurs at the end of a contractual cycle rather than continuously across the system boundary. Incompatible development processes and tools that cannot interact with each other, except via e-mails and spreadsheets sent back and forth between the development parties, lead to a nightmare of inconsistency.</p>



<p class="wp-block-paragraph">None of this friction exists at companies like BYD or Tesla. It cannot, because there are no boundaries that could create such friction.</p>



<p class="wp-block-paragraph">Such friction is the regular situation at all OEM-supplier interfaces. Managing dozens of MtO projects within a single vehicle platform development easily explains why 4 or 5 years are needed to manage the entire car platform and deliver an SOP.</p>



<p class="wp-block-paragraph">A legacy OEM does not lose to a Chinese OEM by being slower per engineer. It loses because it pays a coordination tax on every interface, while its Chinese competitor gets it &#8220;for free.&#8221;</p>



<h2 class="wp-block-heading">Why the obvious answers do not work</h2>



<p class="wp-block-paragraph">The industry has been trying to close this gap for decades. The attempts fall into recognizable patterns.</p>



<p class="wp-block-paragraph">The first pattern is mandating co-location through contracts. Some OEM-supplier contracts now require resident engineers, on-site presence at integration milestones, or co-located workshops at critical phases. These produce moments of collaboration but do not change the underlying program structure. Each side still reports to its own management, runs its own internal processes (sometimes contradictory), and tracks its own set of metrics.</p>



<p class="wp-block-paragraph">The second is &#8220;preferred partner&#8221; or strategic-supplier programs. That includes long-term framework agreements, shared roadmaps, and sometimes joint innovation budgets. These measures help improve the OEM-supplier relationship, but they do not accelerate the design and implementation process. The procurement organizations on both sides maintain a separate commercial framework, regardless of their strategic intentions.</p>



<p class="wp-block-paragraph">The third is the Toyota resident-engineer model—<em>gesuto enjinia</em> (see <a href="https://artsmalley.com/articles/toyota-product-development-history" data-type="link" data-id="https://artsmalley.com/articles/toyota-product-development-histor" target="_blank" rel="noreferrer noopener">here</a>)—which embeds supplier engineers in Toyota&#8217;s development offices for one- to three-year stays. It is the closest historical precedent for what I am proposing, and it has worked at Toyota for decades. It has not transferred to legacy automotive OEMs, and the reason is contractual. The Toyota model assumes a keiretsu-grade trust relationship with cross-shareholdings and decades of shared history. A German OEM and a Tier-1 with whom it competes for next-year RFQs cannot replicate that model.</p>



<p class="wp-block-paragraph">The fourth is joint ventures and equity investments in critical suppliers. These solve specific bottlenecks—chip supply, battery cells, etc.—but they do not address the day-to-day engineering friction across the dozens of other interfaces in a program.</p>



<p class="wp-block-paragraph">Those four patterns have the same fallout: each preserves the redundant program structure, where the OEM and supplier each run their own program in parallel and pretend the result is a single program. Such a conventional setup can never result in the much-envied &#8220;China speed.&#8221;</p>



<h2 class="wp-block-heading">What CORE SPICE Vertical Integration changes</h2>



<p class="wp-block-paragraph">The shift is fundamental and conceptual. Instead of trying to manage the friction between two programs, you suspend it completely, structure the development venture within a well-defined systems development &#8220;zone,&#8221; and run it as a single program.</p>



<p class="wp-block-paragraph">A useful metaphor is a commercial DMZ—a demilitarized zone in the original sense, where the normal rules of organizational territory are suspended in service of a larger purpose. In this DMZ, individual experts from the OEM and the relevant supplier or suppliers work as a team on a single program. Not &#8220;in close coordination&#8221; or &#8220;with regular alignment,&#8221; but as <strong>one team</strong>. That results in a single feature list, a shared backlog, a consistent development process, the same cadence, and a consistent body of test evidence. In such an environment, clearly defining the program&#8217;s purpose is paramount. One TCC (Team Capability Coach) is holding the team together. They retain their respective employers. However, within the zone, the dual-program coordination has no unproductive overhead that consumes most of their time today.</p>



<p class="wp-block-paragraph">This is what I mean by CORE SPICE Vertical Integration. The supplier ecosystem remains intact; the commercial relationships continue to exist outside the zone. The &#8220;zone&#8221; integration removes the friction, scoped to the program where speed matters most.</p>



<p class="wp-block-paragraph">It is not the same as resident engineers, because resident engineers participate in someone else&#8217;s program; they do not become an integrated part of the project. It is also not the same as co-location, because co-location is only a workspace decision, but the processes remain separate. It is also not the same as a joint venture, because there is no new legal entity.</p>



<p class="wp-block-paragraph">Instead, a &#8220;Vertical Integration&#8221; program is a substitute for the integration most Chinese companies achieve through ownership. Legacy OEMs cannot just buy their Tier-1s, but they can build a zone where, for the duration of the program, the question of who owns whom becomes effectively irrelevant.</p>



<h2 class="wp-block-heading">Why does this only work with a vertically integrated program</h2>



<p class="wp-block-paragraph">Simply putting people from three companies in one room does not yet make them a team. Anyone who has run a cross-company integration workshop knows what happens: tooling differences, divergent process languages, conflicting chains of command—that&#8217;s a natural outcome that results in two parallel worlds with extra meetings.</p>



<p class="wp-block-paragraph">CORE SPICE Vertical Integration only works because CORE SPICE provides the operating system underneath it. There is one QA Triage team lead (not two). The Validation and Verification Testing Lead (VVT Lead) oversees product quality across the entire program. Feature-based tracking provides everyone with a common language for progress. The TCC role holds the team across a boundary. Integrated, central roles are indispensable. Without these, virtual integration collapses back into coordination overhead.</p>



<p class="wp-block-paragraph">The CORE SPICE values—shared accountability, transparency on status, ownership of outcomes rather than deliverables—are what make the zone possible.</p>



<p class="wp-block-paragraph">This is also why the model cannot be adopted and executed by an OEM and a supplier on their own. It needs a third actor, organizationally neutral to both sides, to run the operating system and hold the team-coaching role across companies. The CORE SPICE model helps remove friction and continues insisting on eliminating redundant requirements and ensuring a consistent sense of urgency.</p>



<h2 class="wp-block-heading">What comes next</h2>



<p class="wp-block-paragraph">CORE SPICE Vertical Integration is a program/project consistent approach. It is not a product or a consultant framework. It is a strategy to achieve the much-envied &#8220;China speed.&#8221;</p>



<p class="wp-block-paragraph">Several hard questions need to be worked out before any program can run on this model.</p>



<ul class="wp-block-list">
<li>Which categories of work belong inside the DMZ, and which stay behind the supplier&#8217;s IP firewall?</li>



<li>What commercial frame replaces fixed-price MtO contracting, which is structurally incompatible with this model?</li>



<li>How do embedded experts protect their careers inside their home organizations during eighteen-to-twenty-four-month assignments outside the normal reporting line?</li>



<li>How does the zone handle export control and OEM-internal classification rules when access is granted at the artifact level rather than the company level?</li>
</ul>



<p class="wp-block-paragraph">I will address each of these in Part 2, including the commercial-model question.</p>



<p class="wp-block-paragraph">The point is simple: legacy automotive OEMs cannot outwork Chinese vertical integration. They can, however, construct a synthetic version of it. The &#8220;Vertical Integration&#8221; program&#8217;s scope is to &#8220;reduce to the max&#8221; to the point where speed matters most, while preserving the safety and security of OEM platforms, the supplier ecosystem that took decades to build, and closing the speed gap exactly where it hurts most: at the commercial boundary, inside the program, between the companies.</p>



<p class="wp-block-paragraph">That is what CORE SPICE Vertical Integration is.</p>



<p class="wp-block-paragraph">Part 2 will go into how to make it work.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"><strong>References:</strong></p>



<ul class="wp-block-list">
<li><a href="https://link.springer.com/book/10.1007/978-3-658-47691-5" data-type="link" data-id="https://link.springer.com/book/10.1007/978-3-658-47691-5" target="_blank" rel="noreferrer noopener">Car IT Reloaded</a>, The &#8220;fusion&#8221; principle</li>



<li><a href="https://www.youtube.com/watch?v=CHGPejLA1bI" target="_blank" rel="noreferrer noopener">https://www.youtube.com/watch?v=CHGPejLA1bI</a>: The proxy-presentation on Embedded World</li>
</ul>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
		
		<enclosure url="https://projectcrunch.com/wp-content/uploads/2026/04/Vertical-Integration.mp3" length="13330667" type="audio/mpeg" />

			</item>
		<item>
		<title>Unified Project Tracking System: The Foundation for Effective Progress Tracking</title>
		<link>https://projectcrunch.com/unified-project-tracking-system-the-foundation-for-effective-progress-tracking/</link>
		
		<dc:creator><![CDATA[Roman Mildner]]></dc:creator>
		<pubDate>Mon, 20 Apr 2026 21:00:40 +0000</pubDate>
				<category><![CDATA[Management]]></category>
		<category><![CDATA[CORE SPICE]]></category>
		<guid isPermaLink="false">https://projectcrunch.com/?p=3818</guid>

					<description><![CDATA[The Foundation for Transparent Tracking in MtO Projects W. Edwards Deming once stated: &#8220;In God we trust. All others must bring data.&#8221; In most distressed projects I have worked with, the problem is not that <a class="mh-excerpt-more" href="https://projectcrunch.com/unified-project-tracking-system-the-foundation-for-effective-progress-tracking/" title="Unified Project Tracking System: The Foundation for Effective Progress Tracking">Read...</a>]]></description>
										<content:encoded><![CDATA[
<h4 class="wp-block-heading"><em>The Foundation for Transparent Tracking in MtO Projects</em></h4>



<p class="wp-block-paragraph"><a href="https://grokipedia.com/page/w_edwards" data-type="link" data-id="https://grokipedia.com/page/w_edwards" target="_blank" rel="noreferrer noopener">W. Edwards Deming</a> once stated: <em>&#8220;In God we trust. All others must bring data.&#8221;</em> In most distressed projects I have worked with, the problem is not that the team lacks data. The problem is that the data they do have cannot be relied upon. Tickets exist, reports are produced, charts are displayed—but the underlying system is often inconsistent, and the numbers, at best, describe a rough mood rather than a reality. However, without trustworthy insights, risk minimization (CORE SPICE Principle #7 and arguably the single most important principle when a project is under stress) will fail.</p>



<p class="wp-block-paragraph">The underlying data, once it is tied together across the data sources, can deliver quality on the project progress and risks. Unique identifiers, clean taxonomy, clear ownership, consistent closure—those aspects are boring accounting work. But when they are missing, the dashboards above them report numbers that nobody can actually trust.</p>



<p class="wp-block-paragraph">The good news is that the fix is not particularly sophisticated. It is mostly discipline, applied early and kept consistent. This article walks through what that discipline looks like.</p>



<h2 class="wp-block-heading">Familiar Symptoms</h2>



<p class="wp-block-paragraph">Most projects under pressure I have encountered share a small catalog of symptoms.</p>



<ul class="wp-block-list">
<li>The same (or at least semantically equivalent) defect is logged several times by four engineers, each with a slightly different label, and nobody notices until the reopen rate starts climbing.</li>



<li>A feature is declared done, but nobody can point to the specification it was built against.</li>



<li>A change request gets processed through the defect workflow because that was easier at the time, and three weeks later, the scope has grown without anyone deciding so.</li>



<li>A system &#8220;release&#8221; means one thing to engineering, another to testing, and a third to the customer&#8217;s purchasing team.</li>



<li>A supplier tracks its contribution in its own spreadsheet, and the integrator&#8217;s project tool has no idea what state the supplier&#8217;s deliverables are in.</li>



<li>The testing team tests based on personal experience because there are no documented specifications traced back to the design or requirements. The &#8220;completeness&#8221; presumption is a mere intention, not a quantifiable, measurable assessment.</li>
</ul>



<p class="wp-block-paragraph">These are some of the symptoms of project distress. More daily syncs, more risk registers, or more &#8220;write-only&#8221; documents cannot compensate for them. A project can have all of those and still be unable to answer, at any given moment, what exactly a feature is in this project, what counts as a defect, what is in the upcoming release, and who is accountable for each open issue right now.</p>



<h2 class="wp-block-heading">Four Issue Types</h2>



<p class="wp-block-paragraph">Every trackable thing in an MtO project is an <em>&#8220;issue&#8221;</em> (or use an equivalent term that encompasses all of the below object types). It is practical to limit the taxonomy to four issue types:</p>



<p class="wp-block-paragraph"><strong>Features </strong>are customer-visible functionality or essential quality aspects. They originate from specifications (requirements, design). Each feature has exactly one owner: the Feature Owner (see also the CORE SPICE Accelerator #3: <em>end-to-end responsibility</em>,  <em>see <a href="https://projectcrunch.com/core-spice-coaching-concept/" data-type="post" data-id="3370">here</a></em>). A Feature Owner is accountable for the definition and delivery of a feature from inception through verification.</p>



<p class="wp-block-paragraph"><strong>Defects </strong>(or bugs): Deviations from an approved specification. This is not a philosophical definition; it is a practical one. Without a specification, there is no objective basis for calling something a defect. That is a frequent contractual and organizational problem.</p>



<p class="wp-block-paragraph"><strong>Change Requests: </strong>agreed deviations from the approved (&#8220;baselined&#8221;) scope or specification. They are neither features nor defects, and treating them as either creates predictable trouble. When change requests are handled as defects, the scope expands silently while the quality metrics appear to worsen. When they are treated as features, the burndown inflates, making the project look slower than it really is. Change Request, as a distinct, separate type, avoids both distortions.</p>



<p class="wp-block-paragraph"><strong>Work Items: </strong>General tasks. They are everything the team needs to do in order to implement one of the three above. They must always be linked to a feature, a defect, or a change request. An orphan work item with no parent is almost always a sign of either duplication or something that no longer needs to be done.</p>



<p class="wp-block-paragraph">Often, those &#8220;tickets&#8221; have different prefixes, so that the nature of a unique object is immediately recognizable. Everything trackable fits into one of them.</p>



<p class="wp-block-paragraph">The same system needs to serve all contributors, including suppliers. A supplier that maintains its defects in a separate tool with its own classification scheme creates a parallel universe. In such cases, the defect curve often spans only half the project. I prefer to be explicit about this in the Supplier Agreement: suppliers use the project&#8217;s issue management tool, with the project&#8217;s taxonomy and ID scheme.</p>



<h2 class="wp-block-heading">Unique Identifiers</h2>



<p class="wp-block-paragraph">Every <em>issue</em> carries a unique identifier with a meaningful prefix, such as FEAT-0142 for features, DEF-1203 for defects, CR-0087 for change requests, or WRK-4561 for work items. The prefix makes the type obvious at a glance, and the number is unique across the project&#8217;s full lifecycle. This is one of those basic hygiene items that is easy to underestimate until it is missing, at which point cross-referencing becomes guesswork, and any automated traceability reporting becomes unreliable.</p>



<p class="wp-block-paragraph">The same principle extends to specifications, test cases, and other artifacts. When a defect references REQ-0033 and TEST-INT-0891, the related trace is unambiguous.</p>



<h2 class="wp-block-heading">The Small V: A Definition of Done for Every Issue</h2>



<p class="wp-block-paragraph">Every <em>issue</em>—feature, defect, change request, or work item—needs an explicit &#8220;Definition of Done.&#8221; One pattern that works well across all four types is what I think of as a <em>small V</em>, embedded in the issue itself. </p>



<figure class="wp-block-image size-large"><a href="https://projectcrunch.com/wp-content/uploads/2026/04/Little_V.png"><img decoding="async" width="1024" height="519" src="https://projectcrunch.com/wp-content/uploads/2026/04/Little_V-1024x519.png" alt="" class="wp-image-3821" srcset="https://projectcrunch.com/wp-content/uploads/2026/04/Little_V-1024x519.png 1024w, https://projectcrunch.com/wp-content/uploads/2026/04/Little_V-300x152.png 300w, https://projectcrunch.com/wp-content/uploads/2026/04/Little_V-768x389.png 768w, https://projectcrunch.com/wp-content/uploads/2026/04/Little_V-1536x778.png 1536w, https://projectcrunch.com/wp-content/uploads/2026/04/Little_V.png 1654w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">Fig. 1: Simplified &#8220;<em>Small </em>V&#8221;</figcaption></figure>



<p class="wp-block-paragraph">On the left side of the V, the issue is defined: What must be delivered, fixed, changed, or done. On the right side, each item on the left has a corresponding verification.</p>



<p class="wp-block-paragraph"><em><sub>(Remark: this is a simplified model that does not distinguish between system and software levels. However, I recommend NOT expanding it into system levels (e.g., system requirements, system design, etc.) for practical reasons.)</sub></em></p>



<p class="wp-block-paragraph">For a feature, the small V traces from the linked specification down through implementation and back up through integration, system test, and customer acceptance. For a defect, it runs from the specification the defect violates, through the fix, to the verification that the fix holds in the target release. Change Requests follow the same pattern as the features. Work items are negotiable, but the expectation and its verification should be explicitly defined.</p>



<p class="wp-block-paragraph">That is how the team operationalizes <em>No Task Left Behind</em> (CORE SPICE Accelerator #1). The detailed mechanics—lifecycles, states, review rules—belong in either the <strong>Project Approach</strong> or the <strong>Configuration Management Approach</strong>, whichever the team prefers as the home for issue governance.</p>



<h2 class="wp-block-heading">Release Scope</h2>



<p class="wp-block-paragraph">Every release has a clearly defined scope: which features are included, which defects are resolved, and which change requests are incorporated. In the configuration management literature, this is called a <em>baseline</em>, which is accurate but sometimes sounds a bit ceremonial to engineers. In practice, I find <em>&#8220;release scope&#8221;</em> a good day-to-day term, while &#8220;baseline&#8221; remains appropriate in the Configuration Management Approach itself.</p>



<p class="wp-block-paragraph">Whatever it is called, its absence is costly. Without it, &#8220;defect DEF-1203 is fixed&#8221; does not actually mean anything unless one can specify which release it is fixed in. The same applies to features. Release scope is what the customer is comparing against at delivery.</p>



<p class="wp-block-paragraph">The discipline is not complicated: each release has a named, frozen scope. Every known defect carries an estimate and a target release, or it is unplanned work dressed up as planned work. Changes to the scope after freeze are themselves change requests and flow through the normal change request workflow. The Project Lead, supported by the Configuration Manager and the TCC, maintains scope consistency.</p>



<h2 class="wp-block-heading">Effort Estimation</h2>



<p class="wp-block-paragraph">Effort estimation has a reputation for being annoying. It is, but it is also one of the most useful disciplines a project team can adopt—not because the numbers are precise, but because the act of estimating forces the team to think thoroughly about each new/modified issue <em>before</em> it enters a release scope. In a way, &#8220;the plan is nothing—the planning is everything.&#8221; The real value of the planning activity is gaining a thorough understanding of the complexity and risks of each new issue.</p>



<p class="wp-block-paragraph">A simple three-bucket scale works well for most MtO projects I have seen:</p>



<ul class="wp-block-list">
<li><strong>S</strong>: about 4 hours (a working morning)</li>



<li><strong>M</strong>: about 2 days</li>



<li><strong>L</strong>: larger than M</li>
</ul>



<p class="wp-block-paragraph"><strong>&#8220;S&#8221;</strong> issue is something that one engineer can complete in a focused half-day.</p>



<p class="wp-block-paragraph"><strong>&#8220;M&#8221;</strong> is a two-day commitment, often with a small handoff.</p>



<p class="wp-block-paragraph"><strong>&#8220;L&#8221;</strong> is everything beyond that.</p>



<p class="wp-block-paragraph">More detailed estimates are usually not meaningful because of the uncertainty inherent in each set of issues.</p>



<p class="wp-block-paragraph">Also, &#8220;L&#8221; comes with a specific rule. Whenever an &#8220;L&#8221; issue appears, the team&#8217;s first response should be to break it down into smaller &#8220;S&#8221; or &#8220;M&#8221; issues, each with its own Definition of Done, owner, and traceability. Most &#8220;L&#8221; issues, on closer inspection, decompose naturally. But not all of them do. Some tasks—a complex system integration, a regulatory submission, a particular safety-critical algorithm—are genuinely <em>atomic</em>. Forcing artificial decomposition produces a fake structure that hides the real risk rather than reveals it.</p>



<p class="wp-block-paragraph">When an &#8220;L&#8221; issue cannot be meaningfully broken down, the team should treat its size as the actual problem to manage. Such treatment achieves two things: a) it helps prioritize at or near the top of the release backlog, and b) it is assigned to one of the most highly skilled available owners. Usually, junior engineers cannot effectively handle that level of uncertainty inside a fixed-budget MtO contract; senior engineers can. This is <em>Risk Minimization</em> (CORE SPICE Principle #7) made operational at the issue level.</p>



<h4 class="wp-block-heading">A Note on Units</h4>



<p class="wp-block-paragraph">Estimates in CORE SPICE projects are expressed in real, calendar-aligned units—hours and days, not &#8220;story points&#8221; or other abstractions. Story points have their defenders, and there is a legitimate argument that they decouple estimation from individual capacity, so a junior and a senior engineer can agree on a relative size without arguing about who is faster. That argument is acceptable in open-ended R&amp;D projects, but it does not survive contact with MtO reality. The customer&#8217;s contract is usually in working days or weeks. The Project Lead needs to know whether the release will land on time, in days, not in abstract points. In reality, story points must almost always be translated back to days anyway, which makes them an extra layer of abstraction with no added value to the team&#8217;s effectiveness.</p>



<p class="wp-block-paragraph">Estimation applies to every issue type, not just features. Defects, change requests, and work items all carry estimates and target releases—or they are unplanned work masquerading as planned.</p>



<h2 class="wp-block-heading">Traceability: The Minimum That Matters</h2>



<p class="wp-block-paragraph">Traceability is one of those topics that tends to get overblown in strongly regulated projects, where the tendency is to trace everything to everything and discover six months later that nobody is actually reading the traceability matrix. A smaller, deliberate set of traces is more useful and much easier to maintain:</p>



<ul class="wp-block-list">
<li>From specification (requirement, design) to feature.</li>



<li>From specification (requirement, design) to test case.</li>



<li>From test case to one or more test runs.</li>



<li>From each test run to its result data.</li>



<li>From any defect back to the test run, the test case, and the specification it violates (and, consequently, the associated feature).</li>
</ul>



<p class="wp-block-paragraph">These traces are sufficient to make the small V auditable for every issue, and to make the defect curve meaningful at release boundaries. The details of what is traced, how, and by whom belong in the <strong>Traceability Approach</strong>.</p>



<h2 class="wp-block-heading">Living Documents and Baselined Documents (a.k.a. &#8220;Artifacts&#8221;)</h2>



<p class="wp-block-paragraph">Not every project artifact is &#8220;frozen.&#8221; Specifications—requirements, design, interface definitions—are <em>baselined</em>. They are fixed at a version, associated with a specific release, and changed only through a deliberate revision. In contrast, the CORE SPICE Approach documents—the Issue Management Approach, the Configuration Management Approach, the Project Approach, and others—are, by design, <em>living documents</em>. They evolve as the team learns what works and what does not. All artifacts must have clearly named owners and visible status, but the mechanics differ: a living document is versioned without being frozen; a baselined document is frozen by design.</p>



<p class="wp-block-paragraph">Artifacts in distressed projects usually have at least one of the following flaws: Either the Approaches are frozen into bureaucratic immutability and become useless (&#8220;write-only&#8221;), or the specifications are never frozen at all, leaving them unreferenceable. Both failures are avoidable once the distinction is explicit and articulated in one of the corresponding Approaches.</p>



<h2 class="wp-block-heading">Two Views, One System</h2>



<p class="wp-block-paragraph">A recurring question from customers is whether to display features and defects on a single combined burndown chart or on two separate ones. This is essentially a presentation choice, and I recommend treating it as such.</p>



<p class="wp-block-paragraph">Keeping features and defects on separate charts makes sense. Feature closure is a steady, human-paced activity; defect closure arrives in waves, peaking around integration and release. Mixing them on a single chart obscures the dynamics of both. Externally, if the customer&#8217;s key stakeholder prefers a combined view, it is straightforward to derive one from the same underlying data. The two views are not in conflict. One serves operational needs, the other communication, and both are automated from the same issue management system.</p>



<h2 class="wp-block-heading">A Simple KPI Set</h2>



<p class="wp-block-paragraph">Once the foundation is in place, a small set of KPIs is enough to give the Project Lead and the key stakeholders a clear read on progress, risk, and where to intervene:</p>



<ul class="wp-block-list">
<li>Feature closure rate and projected release completion can be visualized in the feature burndown.</li>



<li>Critical defect backlog and its trend can be visualized as a defect curve.</li>



<li>Open change requests and their scope impact can be visualized similarly to the features.</li>



<li>Reopen rate. This metric is typically used for defects.</li>



<li>Release scope readiness shows the next release has a frozen, deliverable scope. That can be integrated into the overall release plan (from inception to SOP).</li>
</ul>



<p class="wp-block-paragraph">Those metrics should be automatically generated daily. This is what the Project Lead reads to see progress and risk. It is also what the customer sees, and what builds or erodes trust over time. Further KPIs are optional. When a project starts tracking dozens of KPIs, it is usually because the underlying data cannot quite be trusted. So be careful when adding KPIs.</p>



<h2 class="wp-block-heading">Radical Transparency</h2>



<p class="wp-block-paragraph">A unified issue system, properly used, produces something that distressed projects almost never have: an honest, shared view of reality. Every issue is visible. Every status is current. Every estimate is in real units. Every release scope is named. Every defect can be traced back to its specification. The Project Lead, the team, the suppliers, and the customer are looking at the same data, in the same system, at the same time. There is no parallel universe. There is no &#8220;internal&#8221; version of the truth and an &#8220;external&#8221; version for the steering committee. There must be a single source of truth for everyone.</p>



<p class="wp-block-paragraph">This may appear uncomfortable at first, especially for teams accustomed to managing the customer&#8217;s perception by curating what they see. But it is also liberating. The team stops spending energy on impression management and starts spending it on the actual work. The customer stops asking suspicious questions because nothing is being hidden from them. The relationship shifts from adversarial to collaborative—not because everyone became more reasonable, but because the data made obfuscation impossible.</p>



<p class="wp-block-paragraph">Radical transparency is also, in my experience, the single strongest predictor of whether a distressed project will recover. Teams that hide their problems cannot fix them.</p>



<h2 class="wp-block-heading">Automation and the Project Tool Engineer</h2>



<p class="wp-block-paragraph">KPIs should not be maintained by hand. It should be automated, and the role responsible for that automation is the Project Tool Engineer. This project role should be introduced early (in line with CORE SPICE Accelerator #5 &#8220;<em>Automate Everything</em>&#8221; and Principle #12 (<em>Automated Traceability</em>)). This role designs and maintains the automations that generate the burndown, defect curve, KPI set, traceability reports, and release scope view.</p>



<p class="wp-block-paragraph">When the role is missing or underresourced, engineers end up spending valuable time on manual reporting—or even worse, not at all. In such cases, teams work in expensive, wasteful silos, which is an anti-pattern that is expensive, error-prone, and demoralizing. In 2026, there is, in most cases, no good reason for manual reporting. The Project Tool Engineer role enables the rest of the foundation to pay for itself.</p>



<h2 class="wp-block-heading">Discipline, Not Bureaucracy</h2>



<p class="wp-block-paragraph">A well-structured project management system may appear bureaucratic: more prefixes, more closure criteria, more fields to fill in, more structure around what engineers would prefer to simply get stuff done. Senior engineers have seen enough process-heavy initiatives fail to recognize the pattern, and their skepticism is a healthy reaction to their past experience.</p>



<p class="wp-block-paragraph">The difference is that the strategy described in this article is both uncompromising and super simple. The &#8220;plumbing&#8221; described above is <strong>not compliance theater; it is the mechanism that <em>replaces </em>compliance theater. </strong>With honest data in place, the team stops being judged by numbers nobody trusts and starts showing—to management, to the customer, to each other—what is actually true. That is the opposite of bureaucracy. It is <em>Merit Over Bureaucracy</em> (CORE SPICE Principle #11) made operational.</p>



<p class="wp-block-paragraph">Skepticism can, in my view, only be resolved by demonstrating the practical value of such an integrated project management system. In my experience, adoption rarely comes from the initial explanation. You cannot &#8220;convince&#8221; professionals by merely postulating a quality framework. It comes from the first honest burndown or defect curve that the team recognizes as the truth they already knew anecdotally. Once that moment arrives, the system becomes a Formula 1 car rather than a mule carriage.</p>



<h2 class="wp-block-heading">Conclusion</h2>



<p class="wp-block-paragraph">Deming&#8217;s observation applies universally: no data, no insights; no insights, no real risk minimization.</p>



<p class="wp-block-paragraph">The three articles of this series describe a complete recovery dashboard:</p>



<ul class="wp-block-list">
<li><strong><a href="https://projectcrunch.com/feature-based-project-tracking-how-to-regain-control-in-distressed-mto-projects/" data-type="post" data-id="3721" target="_blank" rel="noreferrer noopener">The feature burndown</a></strong> tells the team whether delivery is on track.</li>



<li><strong><a href="https://projectcrunch.com/the-defect-curve-a-key-factor-in-turning-around-distressed-mto-projects/" data-type="post" data-id="3754" target="_blank" rel="noreferrer noopener">The defect curve</a></strong> indicates whether quality is on track.</li>



<li><strong>The unified issue system</strong> ensures that the data feeding both charts is honest.</li>
</ul>



<p class="wp-block-paragraph">With the simple taxonomy—four issue types, unique identifiers, one system including suppliers, a Definition of Done for every issue, a clearly defined release scope, living and baselined documents properly separated, and a handful of KPIs automated—the project team can see what is actually happening in their project.</p>



<p class="wp-block-paragraph">That is the precondition for minimizing risk, for the radical Transparency that distinguishes recovering projects from sinking ones, for a trusting customer relationship, and ultimately for a successful SOP.</p>



<h2 class="wp-block-heading">Where to Start</h2>



<p class="wp-block-paragraph">For a team starting a new project, the first Approach to draft is the <strong>Issue Management Approach</strong>. Note that the <strong>Project Approach </strong>is also created at the same time. Still, the Project Approach remains a working, living document for a long time—actually, until all other <em>Approaches </em>have been fully established. Nevertheless, the <strong>Issue Management Approach</strong> is the foundation on which everything else depends, and the one that repays the investment the fastest—often within a single release cycle. The <strong>Configuration Management Approach</strong> and the <strong>Traceability Approach</strong> follow naturally once the taxonomy and identifiers are agreed upon.</p>



<p class="wp-block-paragraph">For a team already &#8220;in flight,&#8221; the honest answer is less tidy, but the same three Approaches remain the right starting point. Retrofitting costs more than a greenfield setup, but continuing without a foundation costs even more.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">References</h2>



<ul class="wp-block-list">
<li><strong>Feature-Based Project Tracking</strong> — <a href="https://projectcrunch.com/feature-based-project-tracking-how-to-regain-control-in-distressed-mto-projects/" target="_blank" rel="noreferrer noopener">projectcrunch.com/feature-based-project-tracking-how-to-regain-control-in-distressed-mto-projects/</a></li>



<li><strong>The Defect Curve</strong> — <a href="https://projectcrunch.com/the-defect-curve-a-key-factor-in-turning-around-distressed-mto-projects/" target="_blank" rel="noreferrer noopener">projectcrunch.com/the-defect-curve-a-key-factor-in-turning-around-distressed-mto-projects/</a></li>



<li><strong>CORE SPICE Coaching Concept</strong> — <a href="https://projectcrunch.com/core-spice-coaching-concept/" target="_blank" rel="noreferrer noopener">projectcrunch.com/core-spice-coaching-concept/</a></li>
</ul>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>The Defect Curve: a Key Factor in Turning Around Distressed MtO Projects</title>
		<link>https://projectcrunch.com/the-defect-curve-a-key-factor-in-turning-around-distressed-mto-projects/</link>
		
		<dc:creator><![CDATA[Roman Mildner]]></dc:creator>
		<pubDate>Sun, 12 Apr 2026 13:18:56 +0000</pubDate>
				<category><![CDATA[Management]]></category>
		<category><![CDATA[CORE SPICE]]></category>
		<guid isPermaLink="false">https://projectcrunch.com/?p=3754</guid>

					<description><![CDATA[In a distressed MtO project, the feature burndown shows whether the team is closing scope gaps. But there is a second dimension that the burndown does not capture: product quality. Features can be declared "done" while carrying unresolved defects that compound across releases and eventually lead to ugly customer escalations—or worse: field failures. That can result in shipping broken products—not because the team hasn't worked hard on developing new features, but because product quality hasn't been managed early on. <a class="mh-excerpt-more" href="https://projectcrunch.com/the-defect-curve-a-key-factor-in-turning-around-distressed-mto-projects/" title="The Defect Curve: a Key Factor in Turning Around Distressed MtO Projects">Read...</a>]]></description>
										<content:encoded><![CDATA[
<h4 class="wp-block-heading">In a distressed MtO project, the feature burndown shows whether the team is closing scope gaps (<a href="https://projectcrunch.com/feature-based-project-tracking-how-to-regain-control-in-distressed-mto-projects/" data-type="post" data-id="3721" target="_blank" rel="noreferrer noopener">link</a>). But there is a second dimension that the burndown does not capture: product quality. Features can be declared &#8220;done&#8221; while carrying unresolved defects that compound across releases and eventually lead to ugly customer escalations—or worse: field failures. That can result in shipping broken products—not because the team hasn&#8217;t worked hard on developing new features, but because product quality hasn&#8217;t been managed early on.</h4>



<p class="wp-block-paragraph">An important visual metric to assess the trend in the MtO project is the <strong>defect curve—</strong>the quality counterpart to the feature burndown. Together, they form a complete picture of project health: one tracks <strong><em>what</em></strong> gets delivered, the other tracks <b><i>how well</i></b> it was built.</p>



<h2 class="wp-block-heading">No Specification, No Defect</h2>



<p class="wp-block-paragraph">As a crucial precondition for managing defects effectively, identifying the failed requirement is essential. <strong>A defect can only be defined against a specification.</strong> This is not a technicality—it is the legal and technical foundation of defect management that sometimes gets overlooked in the hectic pace of an MtO delivery.</p>



<p class="wp-block-paragraph">A defect is a deviation from specified, agreed, or contractually mandated behavior—a &#8220;requirements baseline.&#8221; Without a specification—a document that stipulates what the system is supposed to do—there is no objective basis for calling anything a defect. An engineer who believes something is broken and an engineer who believes it is working as intended will frequently argue indefinitely, because neither has a reference point.</p>



<p class="wp-block-paragraph">Some projects don&#8217;t actually see the value in understanding this crucial distinction. That&#8217;s why proper coaching is so decisive in project management. This is why specification quality is a prerequisite for meaningful defect tracking. In MtO projects, the specification spans the entire V-model: from system-level behavioral specs, through architecture and design decisions, down to software-level interface and module specifications. The granularity and formality of traceability between V-stages vary by project complexity and customer requirements, but at every level, the specification serves as the baseline—no specification—no defect.</p>



<p class="wp-block-paragraph">The practical implication is that, in a turnaround project, one of the first diagnostic questions is whether specifications actually exist at the level of granularity needed to drive defect assessment. If they do not, defect tracking is noise—and the first fix is not in the defect tracker; it is in the specification.</p>



<h2 class="wp-block-heading">Minimum Viable Traceability</h2>



<p class="wp-block-paragraph">Traceability is one of the most over-engineered topics in MtO project management. Teams frequently spend months building elaborate trace matrices across hundreds of artifacts (sometimes driven by assessors or redundant quality representatives)—only to produce something nobody reads or maintains. That is not traceability. That is compliance theater.</p>



<p class="wp-block-paragraph">The goal of traceability, in practice, is not completeness for its own sake. It is the ability to answer one question when a defect surfaces: what was specified, how was it tested, and what did the test reveal? Everything beyond that is fundamentally optional.</p>



<p class="wp-block-paragraph">For defect management specifically, the minimum viable traceability chain has four links:</p>



<ol class="wp-block-list">
<li><strong>Specification → Test Case.</strong> Every test case must trace back to the specification element it is verifying. This is the foundational link. Without it, there is no way to determine whether a failing test reflects a real deviation from a requirement or an error in the test itself. It also answers the question that arises in every Quality Triage: &#8220;Is this a defect against the spec, or did the test case misinterpret the spec?&#8221; The trace makes the distinction possible.</li>



<li><strong>Test Case → Test Run(s).</strong> A test case, as an isolated document, says little about the product quality. A test run is an instance of that test case executed at a specific point in time, against a specific build, with a specific result. One test case typically produces multiple test runs across builds, releases, and configurations. The trace from test case to test run enables the team to distinguish between a defect that appeared in build 1.3.2 and was resolved in 1.4.0 versus one that has been consistently failing for six builds.</li>



<li><strong>Test Run → Test Run Data.</strong> Each test run must record its inputs, configuration, build identifier, execution environment, and result (pass, fail, or blocked). That helps ensure that the issue is not a random—perhaps test-environment-induced—aberration. Without a cleanly recorded test trace, finding the root cause can prove impossible. The data must be captured at the moment of execution, automatically where possible.</li>



<li><strong>Defect → Test Case → Specification.</strong> When a defect is logged, it must trace back to the test case that revealed it, and through that test case, back to the specification element that defines the expected behavior. This chain makes the Quality Triage efficient.</li>
</ol>



<p class="wp-block-paragraph">This four-link chain is not optional in a non-trivial MtO project.<a></a></p>



<h2 class="wp-block-heading">The Distinction between Feature, Defect, and Change Request</h2>



<p class="wp-block-paragraph">Once specifications exist, the team must agree on what a defect actually is—and what it is not. Often, the issue categories are confused, and the confusion is expensive.</p>



<p class="wp-block-paragraph"><strong>A feature</strong> is a defined unit of customer-relevant scope. It exists because the customer or an applicable standard demands it. It is planned, owned, sized, and sequenced into a release. A feature is a <em>delivery commitment</em>.</p>



<p class="wp-block-paragraph"><strong>A defect</strong> is a deviation from the specification, which, in turn, defines the project <em>scope</em>. The expected behavior or a product quality aspect, such as timing or data transfer rate, does not match the implementation. A defect is not a missing feature. It is a broken promise on something that was already agreed upon.</p>



<p class="wp-block-paragraph"><strong>A change request</strong> is a request to modify the specification—to add, modify, or remove a scope-relevant product attribute. It comes from the customer, from a regulatory update, or from a technical decision that invalidates a prior agreement (requirements baseline). A change request is not a defect. It is a new or modified scope that must be assessed, negotiated, and planned like any other feature.</p>



<p class="wp-block-paragraph">Misclassifying a change request as a defect inflates the defect backlog and obscures real scope changes.</p>



<p class="wp-block-paragraph">The rule is simple: <strong>defects go in the defect tracker. Change requests go through the scope change process.</strong> These are different workflows, different owners, different planning implications. It can still all be tracked using one tool, as long as the issue types are clearly defined; it only implies different workflows and responsibilities.</p>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-afd4e8fad37c7dfbafebb66e523f830a">Frequent Symptoms in Troubled Projects</h2>



<p class="wp-block-paragraph">Most distressed projects log bugs in Jira, a spreadsheet, or a makeshift team-specific board. The data is not systematically used to improve product quality.</p>



<p class="wp-block-paragraph">The symptoms are familiar:</p>



<p class="wp-block-paragraph"><strong>Defect inflation.</strong> A single issue spawns multiple duplicates logged by different engineers across disciplines. The backlog balloons, but nobody can tell how many <em>real</em> problems exist.</p>



<p class="wp-block-paragraph"><strong>Defect hiding.</strong> Critical issues are quietly downgraded before milestone reviews or quickly fixed without logging them at all.</p>



<p class="wp-block-paragraph"><strong>No closure discipline.</strong> Defects are opened enthusiastically and closed reluctantly—or not at all. Nobody feels responsible for driving issues to resolution, because nobody owns them.</p>



<p class="wp-block-paragraph"><strong>No trend analysis.</strong> Management asks: &#8220;How many open bugs do we have?&#8221; The answer is a number. That number, in isolation, is meaningless. What matters is the <em>trend</em>—and that requires a tool capable of generating it.</p>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-240d826db25cc571ab866a5211dd8f9b">A Word on Tooling: Spreadsheets Are Not an Option</h2>



<p class="wp-block-paragraph">In a non-trivial MtO project—anything with more than a handful of engineers, multiple suppliers, and a formal release cycle—managing defects in a spreadsheet or a makeshift Kanban board is a path to disaster. It is not a question of preference; it is a structural problem.</p>



<p class="wp-block-paragraph">Spreadsheets do not enforce ownership. They do not generate trends automatically. They cannot link defects to features, to specifications, or to release plans. They break under concurrent edits. They have no audit trail. And they require manual effort to produce any report, which means reports are produced infrequently, and always too late.</p>



<p class="wp-block-paragraph">The defect curve requires daily data. Daily data requires a proper issue management system. The tool must support automated status tracking, configurable severity schemas, traceability to features and specifications, and report generation without human intervention.</p>



<p class="wp-block-paragraph">The investment is not large. The cost of not having it—in lost data, opaque status, and undetected trends—is enormous.</p>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-fc630b3a83be9d8cf354c11c329ff847">What Is the Defect Curve?</h2>



<p class="wp-block-paragraph">The defect curve is not a single data point; rather, it is a set of three tracked metrics, plotted over time—typically daily or weekly (&#8220;time unit&#8221;), aligned to release cycles:</p>



<ol class="wp-block-list">
<li><strong>New defects discovered (inflow)</strong> — how many new issues are found per time unit?</li>



<li><strong>Defects closed (outflow)</strong> — how many are resolved and verified per time unit?</li>



<li><strong>Open defect backlog (net)</strong> — how many valid, unresolved defects exist right now?</li>
</ol>



<p class="wp-block-paragraph">These three metrics tell a story that no status meeting can replicate. In a healthy release cycle, the curve follows a predictable shape: discovery peaks early in integration, closure accelerates behind it, and the open backlog rises briefly, then falls as the release stabilizes. In a distressed project, the story is different: discovery keeps rising, closure is flat, and the backlog compounds week over week. The wave never breaks. Sometimes, no defects are discovered at all, and then—often just at the time of customer delivery—the product falls apart, and everyone acts surprised.</p>



<p class="wp-block-paragraph">That discrepancy is the earliest warning signal of a quality crisis. If you are watching the curve, you see it in time to act. If you are not, you discover it at system integration, when it is too late.</p>



<h2 class="sr-only">Interactive defect curve — click Healthy, Plateau warning, or Widening gap crisis buttons to switch between release quality patterns across a 12-week cycle</h2>

<style>
.dc-btn {
  font-size: 13px; font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--border-radius-md);
  border: 1.5px solid var(--color-border-secondary);
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  display: flex; align-items: center; gap: 7px;
}
.dc-btn:hover { background: var(--color-background-secondary); color: var(--color-text-primary); }
.dc-btn.active { color: var(--color-text-primary); border-color: var(--color-border-primary); background: var(--color-background-secondary); }
.dc-btn .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dc-c { background: var(--color-background-secondary); border-radius: var(--border-radius-md); padding: 12px 14px; }
.dc-cl { font-size: 11px; color: var(--color-text-secondary); margin-bottom: 4px; }
.dc-cv { font-size: 20px; font-weight: 500; color: var(--color-text-primary); }
</style>

<div style="border:1.5px solid var(--color-border-secondary);border-radius:var(--border-radius-lg);padding:20px 24px 20px 24px">

  <p style="font-size:12px;font-weight:500;color:#A32D2D;margin:0 0 12px 0;letter-spacing:0.02em">Select a pattern to explore</p>

  <div style="display:flex;gap:8px;flex-wrap:wrap;margin-bottom:20px">
    <button class="dc-btn active" id="btn-healthy" onclick="dcSet('healthy')">
      <span class="dot" style="background:#1D9E75"></span>Healthy
    </button>
    <button class="dc-btn" id="btn-plateau" onclick="dcSet('plateau')">
      <span class="dot" style="background:#BA7517"></span>Plateau — warning
    </button>
    <button class="dc-btn" id="btn-crisis" onclick="dcSet('crisis')">
      <span class="dot" style="background:#E24B4A"></span>Widening gap — crisis
    </button>
  </div>

  <div style="display:flex;gap:18px;flex-wrap:wrap;margin-bottom:12px;align-items:center">
    <span style="display:flex;align-items:center;gap:5px;font-size:12px;color:var(--color-text-secondary)">
      <svg width="22" height="10" style="flex-shrink:0"><line x1="0" y1="5" x2="22" y2="5" stroke="#D85A30" stroke-width="2"/><circle cx="11" cy="5" r="3" fill="#D85A30"/></svg>New / week
    </span>
    <span style="display:flex;align-items:center;gap:5px;font-size:12px;color:var(--color-text-secondary)">
      <svg width="22" height="10" style="flex-shrink:0"><line x1="0" y1="5" x2="22" y2="5" stroke="#1D9E75" stroke-width="2" stroke-dasharray="5,3"/></svg>Closed / week
    </span>
    <span style="display:flex;align-items:center;gap:5px;font-size:12px;color:var(--color-text-secondary)">
      <svg width="22" height="10" style="flex-shrink:0"><line x1="0" y1="5" x2="22" y2="5" stroke="#378ADD" stroke-width="2.5"/><rect x="8" y="2" width="6" height="6" fill="#378ADD"/></svg>Open backlog
    </span>
    <span style="display:flex;align-items:center;gap:5px;font-size:12px;color:var(--color-text-secondary)">
      <svg width="22" height="10" style="flex-shrink:0"><line x1="0" y1="5" x2="22" y2="5" stroke="#A32D2D" stroke-width="1.5" stroke-dasharray="4,4"/></svg>SOP acceptance threshold
    </span>
  </div>

  <div style="position:relative;width:100%;height:320px">
    <canvas id="dc-chart" role="img" aria-label="Line chart showing three defect curve patterns across 12 weeks with phase bands for Construction, Integration, Stabilisation and Release/SOP."></canvas>
  </div>

  <div style="display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:16px">
    <div class="dc-c"><div class="dc-cl">Peak open backlog</div><div class="dc-cv" id="m-peak">18</div></div>
    <div class="dc-c"><div class="dc-cl">Stabilises</div><div class="dc-cv" id="m-stable">W6 – W7</div></div>
    <div class="dc-c"><div class="dc-cl">Open at release</div><div class="dc-cv" id="m-final">2</div></div>
  </div>

</div>

<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/4.4.1/chart.umd.js"></script>
<script>
const LABELS=['W1','W2','W3','W4','W5','W6','W7','W8','W9','W10','W11','W12'];
const THRESHOLD=Array(12).fill(10);
const DATA={
  healthy:{new:[3,4,5,10,12,9,7,4,3,2,1,1],closed:[1,2,2,4,7,9,10,8,6,5,3,2],backlog:[2,4,7,13,18,18,15,11,8,5,3,2],peak:'18',stable:'W6 – W7',final:'2'},
  plateau:{new:[3,5,8,10,9,8,7,6,5,4,3,2],closed:[1,2,3,7,9,10,8,6,5,4,3,2],backlog:[2,5,10,13,13,11,10,10,10,10,10,10],peak:'13',stable:'No convergence',final:'10'},
  crisis:{new:[3,5,7,12,14,13,11,9,8,7,6,5],closed:[1,2,2,3,4,4,5,5,4,4,3,3],backlog:[2,5,10,19,29,38,44,48,52,55,58,60],peak:'60',stable:'Never',final:'60'}
};

const isDark=matchMedia('(prefers-color-scheme: dark)').matches;
const gc=isDark?'rgba(255,255,255,0.07)':'rgba(0,0,0,0.07)';
const tc=isDark?'rgba(210,210,210,0.48)':'rgba(65,65,65,0.55)';
const lc=isDark?'rgba(210,210,210,0.48)':'rgba(65,65,65,0.55)';

const phasePlugin={
  id:'phases',
  beforeDraw(chart){
    const{ctx,chartArea:ca,scales:{x}}=chart;
    if(!ca)return;
    const mid=i=>(x.getPixelForValue(i)+x.getPixelForValue(i+1))/2;
    [{l:'Construction',x1:ca.left,x2:mid(2),f:isDark?'rgba(255,255,255,0.025)':'rgba(136,135,128,0.07)'},
     {l:'Integration',x1:mid(2),x2:mid(6),f:isDark?'rgba(186,117,23,0.13)':'rgba(186,117,23,0.08)'},
     {l:'Stabilisation',x1:mid(6),x2:mid(9),f:isDark?'rgba(29,158,117,0.1)':'rgba(29,158,117,0.07)'},
     {l:'Release / SOP',x1:mid(9),x2:ca.right,f:isDark?'rgba(55,138,221,0.1)':'rgba(55,138,221,0.06)'},
    ].forEach(b=>{
      ctx.fillStyle=b.f;
      ctx.fillRect(b.x1,ca.top,b.x2-b.x1,ca.height);
      ctx.save();ctx.fillStyle=lc;ctx.font='11px -apple-system,system-ui,sans-serif';ctx.textAlign='center';
      ctx.fillText(b.l,(b.x1+b.x2)/2,ca.top+14);ctx.restore();
    });
  }
};

let dcChart;
function buildChart(k){
  const d=DATA[k];
  dcChart=new Chart(document.getElementById('dc-chart'),{
    type:'line',plugins:[phasePlugin],
    data:{labels:LABELS,datasets:[
      {label:'New / week',data:[...d.new],borderColor:'#D85A30',borderWidth:2,pointRadius:4,pointBackgroundColor:'#D85A30',tension:0.35,fill:false,order:3,backgroundColor:'transparent'},
      {label:'Closed / week',data:[...d.closed],borderColor:'#1D9E75',borderWidth:2,pointRadius:4,pointBackgroundColor:'#1D9E75',pointStyle:'triangle',borderDash:[6,3],tension:0.35,fill:false,order:2,backgroundColor:'transparent'},
      {label:'Open backlog',data:[...d.backlog],borderColor:'#378ADD',borderWidth:2.5,pointRadius:4,pointBackgroundColor:'#378ADD',pointStyle:'rect',tension:0.35,fill:false,order:1,backgroundColor:'transparent'},
      {label:'SOP threshold',data:THRESHOLD,borderColor:'#A32D2D',borderWidth:1.5,pointRadius:0,borderDash:[4,4],tension:0,fill:false,order:4,backgroundColor:'transparent'},
    ]},
    options:{
      responsive:true,maintainAspectRatio:false,
      interaction:{mode:'index',intersect:false},
      layout:{padding:{top:8}},
      plugins:{
        legend:{display:false},
        tooltip:{backgroundColor:isDark?'#1e1e1e':'#ffffff',borderColor:isDark?'rgba(255,255,255,0.12)':'rgba(0,0,0,0.1)',borderWidth:1,titleColor:tc,bodyColor:tc,padding:10}
      },
      scales:{
        x:{grid:{color:gc},ticks:{color:tc,font:{size:11},autoSkip:false,maxRotation:0}},
        y:{grid:{color:gc},ticks:{color:tc,font:{size:11}},beginAtZero:true}
      }
    }
  });
}

function dcSet(k){
  ['healthy','plateau','crisis'].forEach(n=>{
    document.getElementById('btn-'+n).classList.toggle('active',n===k);
  });
  const d=DATA[k];
  dcChart.data.datasets[0].data=[...d.new];
  dcChart.data.datasets[1].data=[...d.closed];
  dcChart.data.datasets[2].data=[...d.backlog];
  dcChart.update('active');
  document.getElementById('m-peak').textContent=d.peak;
  document.getElementById('m-stable').textContent=d.stable;
  document.getElementById('m-final').textContent=d.final;
}

buildChart('healthy');
</script>



<p class="wp-block-paragraph"><em>Figure 1: Insert defect curve chart here — three-line chart showing New defects/week (coral), Closed/week (teal dashed), and Open backlog (blue) across a 12-week release cycle with phase bands for Construction, Integration, Stabilization, and Release/SOP. Red dashed line = SOP acceptance threshold.</em></p>



<p class="wp-block-paragraph"></p>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-19ab657930f45d6fb470cde1401d102a">Why Trends Matter</h2>



<p class="wp-block-paragraph">The defect count at any given moment is a snapshot that says nothing about the health of the product release. Trends, on the other hand, provide a context for assessing the direction the project release is taking. Trends matter for three reasons:</p>



<p class="wp-block-paragraph"><strong>Visibility.</strong> The customer often expects to see the defect curve—not as a courtesy, but as a control mechanism. In the final phase before SOP (Start of Production), most customers will insist on it. A team that can produce a credible, data-backed defect trend curve earns <strong>trust</strong>.</p>



<p class="wp-block-paragraph"><strong>Risk management.</strong> A widening gap between discovery and closure is a risk indicator. It tells you, weeks in advance, that the release timeline is at risk. That is early enough to act: add resources, cut scope, adjust the release date. Detected at the milestone review, the same information arrives too late for anything other than damage control.</p>



<p class="wp-block-paragraph"><strong>Resource demand.</strong> A rising defect backlog indicates insufficient team velocity. The closure rate is not keeping pace with the discovery rate. This is a concrete, measurable signal that either more people are needed, or the scope of &#8220;done&#8221; needs to be restructured.</p>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-3f632b1515f2d8ac136c060fe2199f5e">Severity Classification</h2>



<p class="wp-block-paragraph">The defect curve only works if defects are classified honestly and consistently. A minimum severity model for MtO projects has four levels:</p>



<ul class="wp-block-list">
<li><strong>Critical (Blocker):</strong> Safety, security, or compliance-relevant function fails. Release is blocked until resolved or explicitly accepted with documented rationale and customer agreement.</li>



<li><strong>Major:</strong> Significant functional degradation. Customer-visible and reproducible. Must be resolved or formally accepted before release.</li>



<li><strong>Minor:</strong> Limited impact. Accepted with rationale and logged in the release notes. Planned for a future release.</li>



<li><strong>Cosmetic / Observation:</strong> No functional impact. Tracked but not included in the release curve.</li>
</ul>



<p class="wp-block-paragraph">Severity is assigned by the VVT engineer (Verification, Validation, and Test) who discovers the defect during testing. That initial rating is then reviewed—and, if necessary, overruled—in the Quality Triage. Developer self-classification is a conflict of interest. The person who wrote the code is not the right person to assess its severity.</p>



<p class="wp-block-paragraph">Every non-trivial defect must go through a structured assessment before it is acted upon. This process is sometimes called a Change Control Board (CCB) in process-heavy organizations. The name is unfortunate—it implies slow bureaucracy, committees, and multi-day cycles. In a turnaround environment, slow is not an option.</p>



<p class="wp-block-paragraph">I suggest using a more constructive term, such as <strong>Quality Triage,</strong> instead. The name reflects what it actually is: a fast, focused daily or near-daily review, attended by relevant feature owners and the Project Lead when needed.</p>



<p class="wp-block-paragraph">The Quality Triage answers three questions for each defect:</p>



<ol class="wp-block-list">
<li><strong>Severity confirmed?</strong> Does the initial VVT engineer rating hold under technical scrutiny?</li>



<li><strong>Impact assessed?</strong> Which feature and specification are affected? Which release? Which customer-visible behavior?</li>



<li><strong>Owner assigned and release planned?</strong> Who owns the fix, and in which release does it land?</li>
</ol>



<p class="wp-block-paragraph">That third question is where the Triage connects directly to release planning. A defect that cannot be fixed in the current release gets planned into the next one. It becomes a work item in the future release scope, with an owner and a target date.</p>



<p class="wp-block-paragraph">Defects without a planned release are a wasteful dead end — deferred until no one remembers the original context of the defect.</p>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-73a3ba8a6a0b083cc28d6dc95887b769">Preventing Duplicate Defects</h2>



<p class="wp-block-paragraph">Duplicate defects are one of the most persistent sources of waste in any large defect backlog. Two engineers encounter the same failure in different test contexts, log it separately, and the triage team spends time debating two entries that describe the same root cause. In a project with hundreds of open defects and multiple suppliers logging independently, duplicate rates of 20–30% are not unusual.</p>



<p class="wp-block-paragraph">This is a problem LLMs are well-suited to solve—and in 2026, there is no good reason not to use them for it.</p>



<p class="wp-block-paragraph">Before it reaches the Quality Triage, a new defect is automatically screened against the existing open backlog using an LLM-assisted deduplication step. The model compares the new defect&#8217;s description, affected component, failure mode, and reproduction steps against the open issues and returns a ranked list of likely duplicates, with a confidence score. The VVT engineer reviews the candidates in seconds. If a true duplicate is found, the new entry is linked and closed immediately.</p>



<p class="wp-block-paragraph">Beyond deduplication, LLMs can also assist the triage process itself: pre-assessing likely severity based on the failure description and specification context, suggesting a probable owner based on component and historical patterns, and flagging whether the defect description is sufficient. This does not replace the Quality Triage, but it significantly compresses preparation time.</p>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-168a5a663fc958c5d1c7dbea38bf48d8">Every Defect Has an Owner</h2>



<p class="wp-block-paragraph">Ownerless defects are backlog theater — they exist in the tracker, surface in meetings, and never get resolved.</p>



<p class="wp-block-paragraph">Ownership is assigned in the Quality Triage, no later than 24 hours after the defect is logged. The owner is responsible for the defect from that point until closure. The owner drives the resolution (not necessarily personally).</p>



<p class="wp-block-paragraph">The daily Sync applies the same ownership logic to defects as to features: &#8220;This critical defect has not moved in three days. What is the actual blocker?&#8221; <a></a></p>



<h2 class="wp-block-heading">Releasing Features with Defects</h2>



<p class="wp-block-paragraph">A feature can be declared done while carrying open defects. This is not a contradiction—it is a deliberate and documented quality decision.</p>



<p class="wp-block-paragraph">The rule is: <strong>a feature is done when all open defects against it are rated Minor or Cosmetic, and those defects are formally logged, owned, and planned for a future release.</strong> A feature with open Critical or Major defects is not &#8220;done.&#8221;</p>



<p class="has-black-color has-text-color has-link-color wp-elements-18893b87197ef58af6a7e3c8d30f6931 wp-block-paragraph"><a>The end state of a well-managed MtO release is not &#8220;zero defects.&#8221; It is a <strong>known quality state</strong>: all Critical defects are resolved or explicitly accepted, with a documented rationale and customer sign-off.</a></p>



<p class="wp-block-paragraph">The VVT Lead, together with the Project Lead, makes the release recommendation on this basis, not on a zero count. The test report and release notes are the formal record: every unresolved defect that ships with the release is listed, classified, and owned.</p>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-f432466c509c0178be63d82debdca599">Escalations</h2>



<p class="wp-block-paragraph">Serious customer complaints, by definition, are escalations. Escalations must be treated with urgency and transparency. Routing a customer escalation through standard backlog processes is a trust-destroying mistake. The customer who escalates is already frustrated. Making them wait for the next triage cycle makes it worse.</p>



<p class="wp-block-paragraph">The practical response is structural: <strong>plan a buffer of resources for escalations.</strong> In every release cycle, reserve a fixed percentage of available engineering bandwidth—held back from planned feature work—for escalation response.</p>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-87954e6b35ac556b4a78d3c50dfe9d9a">The Anatomy of a Release Quality Cycle</h2>



<p class="wp-block-paragraph">Every MtO release has a natural quality lifecycle. Understanding it prevents the most common misreadings of the defect curve.</p>



<p class="wp-block-paragraph">Phase 1 — Construction: Features are being implemented. Unit tests run. Defect discovery is low, not because quality is high, but because systematic integration testing has not yet begun. A suspiciously flat discovery curve in this phase is not reassuring; it signals that testing is not aggressive enough.</p>



<p class="wp-block-paragraph"><strong>Phase 2 — Integration:</strong> Subsystems connect. Integration tests run. Discovery accelerates sharply. This is expected. A rising defect count during integration is the system doing its job. The critical question is whether the closure rate is keeping pace.</p>



<p class="wp-block-paragraph"><strong>Phase 3 — Stabilization:</strong> New discovery slows. Closure dominates. The open backlog falls. The Quality Triage shifts from assessment-heavy to closure-heavy. Remaining defects are classified and owned, and either resolved in this release or explicitly planned for the next.</p>



<p class="wp-block-paragraph"><strong>Phase 4 — Release:</strong> Open Critical defects: resolved or formally accepted. Open Major defects: resolved or planned. All defects documented in the test report and release notes. The product ships with a <em>known</em> quality state — not a hoped-for one.</p>



<p class="wp-block-paragraph">The defect curve makes each phase visible and the transitions legible. If Phase 3 never starts — if discovery keeps rising with no closure acceleration — that is data. It tells you the product is not ready, regardless of the schedule.</p>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-9f4d410ecacace042d33b72b0e255e74">Predicting the Defect Curve</h2>



<p class="wp-block-paragraph">One of the most important things to understand about the defect curve is that it looks very different depending on where you are in the product&#8217;s release lifecycle — and that the shape is predictable.</p>



<p class="wp-block-paragraph"><strong>Early releases</strong> tend to be quiet. The scope is limited. Test coverage is growing but not yet comprehensive. Defect counts are low. This is normal. A low count in early releases is a function of coverage, not quality.</p>



<p class="wp-block-paragraph"><strong>Middle releases</strong> are where defect volumes ramp up. Features are delivered in larger batches. Integration testing reveals cross-feature interactions that unit tests missed. The discovery curve steepens.</p>



<p class="wp-block-paragraph"><strong>The final release before SOP</strong> is where the curve peaks. Every feature that has been deferred, every integration edge case that was &#8220;noted for later,&#8221; every customer complaint from field testing, etc., all converge. This is the defect &#8220;storm,&#8221; and it must be planned for. It is not a surprise. It is a structural feature of the MtO project lifecycles, and teams that are unprepared for it get destroyed by it.</p>



<p class="wp-block-paragraph">There are several approaches to planning the &#8220;storm&#8221; phase. I will mention two of the most frequently used in my practice.</p>



<p class="wp-block-paragraph"><strong>Tiger teams.</strong> A dedicated group of the project&#8217;s most experienced engineers. They are absolute insiders who know the product in depth. This team is assembled to attack the Critical and Major backlog head-on. This approach works best for systemic or deeply rooted defect clusters that require expert knowledge to resolve quickly.</p>



<p class="wp-block-paragraph">Feature owner-driven resolution. For feature-specific, well-understood defects, the feature owner drives resolution directly with their development team. This is the default path. The feature owner who delivered the feature is responsible for its defect closure, with the same urgency and ownership logic as the original delivery.</p>



<p class="wp-block-paragraph">Both approaches require deliberate capacity planning — without it, the customer may pressure the team into relying on weakly qualified &#8220;best-cost&#8221; resources.</p>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-400f35c7852bfa9db49fed5ee87b928b">The Customer Is Watching</h2>



<p class="wp-block-paragraph">In the late project phase, most customers will not ask for a defect count. They will ask for the defect curve. They will often impose, as part of the contract, a limit on the number of open defects. The product cannot proceed to SOP unless the open defect count for each severity class is below a defined threshold.</p>



<p class="wp-block-paragraph">That may be perceived as annoying, but it is a healthy expectation. A customer who tracks the defect curve is engaged in quality. Limiting the number of high-severity defects helps assess the project risk early.</p>



<p class="wp-block-paragraph">This is also why the defect curve must be established early in the project. The customer needs history. A curve that only covers the last month of a two-year project proves nothing.</p>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-6e421e8371f15c78c64cbbf70af1cdbc">The CORE SPICE Connection</h2>



<p class="wp-block-paragraph">The five project turnaround measures are also reflected in the article&#8217;s measures (<a href="https://projectcrunch.com/feature-based-project-tracking-how-to-regain-control-in-distressed-mto-projects/" data-type="post" data-id="3721" target="_blank" rel="noreferrer noopener">Feature-Based Project Tracking: How to Regain Control in Distressed MtO Projects</a>).</p>



<p class="wp-block-paragraph"><strong>No task left behind.</strong> Every defect is an owned task. Unowned defects do not exist. Every open issue has a name and a planned release.</p>



<p class="wp-block-paragraph"><strong>Maintain the sense of urgency.</strong> The Critical backlog is reviewed daily. A Critical defect that has not moved in 48 hours is a Sync conversation, not a footnote.</p>



<p class="wp-block-paragraph"><strong>End-to-end responsibility.</strong> Feature owners own their feature&#8217;s defect state, even after implementation is complete. Defects against their feature are their problem until they are closed.</p>



<p class="wp-block-paragraph"><strong>Radical transparency.</strong> The defect curve, the Quality Triage outcomes, and the release notes are visible to everyone. That includes the core team, suppliers, and customers. This is especially important in the SOP phase, when the customer is actively tracking the curve.</p>



<p class="wp-block-paragraph"><strong>Automate everything.</strong> The defect curve must be generated automatically from the issue management system. That must happen daily, without manual effort. In a non-trivial project, any other approach is not just inefficient—it is a data integrity risk.</p>



<h2 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-f5455daea410fd805f44ecbf9b9fc1bd">Putting It All Together</h2>



<p class="wp-block-paragraph">The feature burndown and the defect curve are the two instruments of a distressed project&#8217;s recovery dashboard.</p>



<ul class="wp-block-list">
<li><strong>Feature burndown converging: </strong>delivery is on track.</li>



<li><strong>The defect curve converging indicates that</strong> quality is on track.</li>



<li><strong>Defect backlog planned into future releases</strong> ensures that nothing is lost and everything is actively managed.</li>



<li><strong>The escalation buffer in place ensures that the</strong> customer relationship is protected.</li>



<li><strong>The defect curve is shared with the customer. </strong>That helps build trust and team confidence.</li>
</ul>



<p class="wp-block-paragraph">The lifecycle of defect volume is predictable: quiet in early releases, rising through integration, peaking before SOP. Plan for that peak. Staff the tiger team. Protect the feature owner&#8217;s bandwidth. Set the customer&#8217;s expectations with data, not assurances.</p>



<p class="wp-block-paragraph">In a distressed project, provided the sponsor actively supports the aforementioned measures, a turnaround is always possible.</p>



<p class="wp-block-paragraph">If the Critical backlog is not falling—or not falling fast enough to meet the customer&#8217;s SOP threshold—there is no quality. But if it is falling with a known, documented, owned residual state, the product is under control. And everyone can see it.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h4 class="wp-block-heading has-black-color has-text-color has-link-color wp-elements-2ec409951df98f41f82a57fbe973e497"><a>References</a></h4>



<ul class="wp-block-list">
<li><strong>Feature-Based Project Tracking</strong> — The companion burndown article: <a href="https://projectcrunch.com/feature-based-project-tracking-how-to-regain-control-in-distressed-mto-projects/" data-type="post" data-id="3721" target="_blank" rel="noreferrer noopener">projectcrunch.com/feature-based-project-tracking-how-to-regain-control-in-distressed-mto-projects/</a></li>



<li><strong>CORE SPICE Coaching Concept</strong> — The 12 CORE SPICE principles: <a href="https://projectcrunch.com/core-spice-coaching-concept/" data-type="post" data-id="3370" target="_blank" rel="noreferrer noopener">projectcrunch.com/core-spice-coaching-concept/</a></li>



<li><strong>Car IT Reloaded</strong> — Disruption in the Car Industry. Springer-Verlag, 2025. ISBN 3658476907.</li>
</ul>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Feature-Based Project Tracking: How to Regain Control in Distressed MtO Projects</title>
		<link>https://projectcrunch.com/feature-based-project-tracking-how-to-regain-control-in-distressed-mto-projects/</link>
		
		<dc:creator><![CDATA[Roman Mildner]]></dc:creator>
		<pubDate>Sun, 22 Mar 2026 19:19:28 +0000</pubDate>
				<category><![CDATA[Management]]></category>
		<category><![CDATA[CORE SPICE]]></category>
		<guid isPermaLink="false">https://projectcrunch.com/?p=3721</guid>

					<description><![CDATA[Made-to-Order (MtO) projects are fundamentally different from R&#38;D. A customer defines the requirements. The scope is contractually fixed. The lifecycle follows a V-model (at least in regulatory-relevant projects) with formal verification at every level of <a class="mh-excerpt-more" href="https://projectcrunch.com/feature-based-project-tracking-how-to-regain-control-in-distressed-mto-projects/" title="Feature-Based Project Tracking: How to Regain Control in Distressed MtO Projects">Read...</a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Made-to-Order (MtO) projects are fundamentally different from R&amp;D. A customer defines the requirements. The scope is contractually fixed. The lifecycle follows a V-model (at least in regulatory-relevant projects) with formal verification at every level of V. In MtO projects, the team must deliver a specific product—not a prototype or a proof of concept. It is usually a production-ready system that meets safety, security, and compliance standards.</p>



<p class="wp-block-paragraph">This expectation applies to automotive, but equally to aviation, medical devices, railway systems, and any domain where complex, safety-relevant systems are built to customer specification.</p>



<p class="wp-block-paragraph">When MtO projects get into trouble, the symptoms are remarkably consistent:</p>



<ul class="wp-block-list">
<li><strong>Work-item explosion. </strong>A single customer requirement spawns dozens of sub-tasks across disciplines—system requirements, architecture, software requirements, software design, implementation, integration, and verification. Responsibilities are often scattered across different engineers and tools. A project that started with 50 customer requirements now has 1,200 work items, and nobody can tell which customer feature is actually “done.”</li>



<li><strong>Silo thinking. </strong>System engineers don’t talk to software engineers. Software managers don’t talk to project leads. Line managers are randomly involved in the project work. The test team discovers what was built only when integration starts. Suppliers deliver their subsystems in isolation and claim everything is “on track.” The customer is kept at arm’s length. Each group optimizes for its own deliverables, not for the product as a whole. “I am not responsible for that” is often a popular attitude.</li>



<li><strong>Lack of sense of urgency. </strong>Once established, time buffers are consumed by other activities. The planning fallacy—well documented by Kahneman and Tversky—leads to optimistic schedules that drift, leaving deadlines impossible to meet.</li>



<li><strong>The “trust me” illusion. </strong>Management asks: “Are we on track?” The team answers: “Yes, we’ve got this.” That is a pointless ritual. No team or supplier will ever volunteer “No, we are failing.” Status must be <strong>measured</strong>, not <strong>asked</strong> for. Verbal assurances are not data. If control cannot be demonstrated with hard data, it does not exist.</li>
</ul>



<p class="wp-block-paragraph">The consequence: project status becomes opaque, customer escalations multiply, and team morale collapses. The project is “in trouble,” and nobody noticed until it was too late.</p>



<h2 class="wp-block-heading">The Feature-Based Approach: What Is a Feature?</h2>



<p class="wp-block-paragraph">The definition of project scope can be structured in numerous ways (see WBS structures defined by the Project Management Institute, PMI). In recent years, many customers in the automotive industry have adopted the concept of a “feature” to define project scope.</p>



<p class="wp-block-paragraph">While there are countless ways to define what a “feature” is, for our purposes, a feature is a well-defined chunk of customer-relevant scope. It is a deliverable slice of value that the customer or a standard demands, and whose completion can be objectively verified.</p>



<p class="wp-block-paragraph">Features can be functional or non-functional:</p>



<ul class="wp-block-list">
<li><strong>Functional: </strong>for example, “Active Steering Safety Manager,” “Bootloader Update Mechanism,” “CAN Communication Stack.”</li>



<li><strong>Non-functional: </strong>for example: “Startup Time &lt; 200ms,” “ASIL-D Coverage,” “OBD Compliance,” “Cybersecurity Compliance Certification.”</li>
</ul>



<p class="wp-block-paragraph">The key criterion: a feature represents a meaningful unit of delivery. It aggregates all related work across the V-model—requirements, architecture, implementation, integration, and verification—regardless of whether the underlying work is system-level, software-level, or cross-disciplinary.</p>



<h2 class="wp-block-heading">One Feature, One Owner</h2>



<p class="wp-block-paragraph">Feature ownership is a proven way to structure a project around technical expectations. Each feature has exactly one <strong>feature owner</strong> — a person responsible from inception to final verification. The feature owner is not “just software” or “just systems.” Feature owners own the outcome across disciplines—from left to right in the V. That directly implements the CORE SPICE principle of end-to-end responsibility: one person, one feature, from start to finish. It does not mean the feature owner must do all the work. Rather, the feature approach creates a matrix of responsibilities, and the feature owner must work with other feature owners to prevent redundancies. The advantage is that this approach is strictly merit-based: the feature management team follows the ideal path to delivery rather than requiring a more generalist mindset, since a feature owner usually does not know all the details across the V. Nevertheless, this approach offers a clear end-to-end view and closes the responsibility gap.</p>



<p class="wp-block-paragraph">This is fundamentally different from tracking at the work-item level, where a requirement passes through five or six different hands, each responsible for only their discipline’s slice. In the feature-based model, the handover points—where things typically get stuck or lost—are eliminated.</p>



<h2 class="wp-block-heading">Advantages of the Feature-Driven Approach</h2>



<p class="wp-block-paragraph">The feature-driven approach helps structure MtO projects systematically.</p>



<ul class="wp-block-list">
<li><strong>It makes status measurable. </strong>Stakeholders see “Feature X: done” or “Feature X: blocked on integration test.” Not “247 work items, 63% closed.” The burndown speaks for itself — no more “trust me.”</li>



<li><strong>It forces prioritization. </strong>Features can be ranked, sequenced into releases, and traded off against deadlines. You cannot meaningfully prioritize 1,200 low-level work items, but you can prioritize 80 features.</li>
</ul>



<p class="wp-block-paragraph"><strong>The practical setup: </strong>The feature list is derived from customer requirements and applicable standards. In a typical complex MtO project, this results in 50-250 features. Each feature is mapped to a release. Status is tracked daily at the feature level—not at the sub-task level.</p>



<h2 class="wp-block-heading">Radical Transparency: No Silos</h2>



<p class="wp-block-paragraph">Feature-based tracking only works if the entire operation is 100% transparent to everyone on the project team. This is not optional—It is a precondition.</p>



<p class="wp-block-paragraph">“Everyone” means that:</p>



<ul class="wp-block-list">
<li><strong>The core team: </strong>system engineers, software engineers, test engineers, integration leads — everyone sees every feature, every status, every blocker.</li>



<li><strong>Suppliers: </strong>If a supplier delivers custom-built systems or software components, they are part of the team. They participate in the daily Sync. They see the burndown. They report on the same features, in the same tool, with the same status definitions, and a clear “definition of done.” A supplier that delivers features in isolation and shows up at integration with “surprises” is a risk.</li>



<li><strong>The customer: </strong>The customer should see the feature status and the burndown. Hiding problems from the customer does not make them disappear—it makes the escalation worse when they inevitably surface.</li>
</ul>



<h2 class="wp-block-heading">No Information Asymmetry</h2>



<p class="wp-block-paragraph">In distressed projects, information asymmetry is a root cause of failure. When the supplier knows something the project lead does not, when the test team sees a problem that the customer has not been told about, when a feature owner is stuck but does not want to admit it—these are the moments where projects silently slide into crisis.</p>



<p class="wp-block-paragraph">The feature chart, the burndown chart, and the daily Sync must be the single source of truth. If it is not easy to see for everybody, it effectively does not exist. If a supplier’s feature is red, everyone knows it is red—the supplier, the project lead, and the customer.</p>



<h2 class="wp-block-heading">Risk Minimization Through Tight Tracking</h2>



<p class="wp-block-paragraph">Traditional <strong>risk management</strong> tends to be bureaucratic and reactive: risk registers, probability/impact matrices, and quarterly reviews are often boring activities that are increasingly pointless and wasteful. The risks sit in a spreadsheet. Nobody reads it until the steering committee.</p>



<p class="wp-block-paragraph"><strong>Risk minimization</strong>, on the other hand, is the opposite: the goal is to make risks irrelevant by delivering early, testing often, and closing gaps daily. It is proactive and embedded in the daily workflow. This essential aspect is articulated as CORE SPICE Principle #7.</p>



<h2 class="wp-block-heading">The Burndown Baseline</h2>



<p class="wp-block-paragraph">Using a burndown (or, alternatively, burn-up) chart is a well-proven risk-reduction, stakeholder-reporting, and project-tracking strategy. When properly set up, it offers near-real-time visibility into release progress, detects delays, and builds trust in the project delivery timeline.</p>



<p class="wp-block-paragraph">At the start of a release (or a turnaround), the team establishes a baseline: the total number of items that must be completed for the release to ship. This includes features and critical bugs. During the release planning session, critical defects are prioritized alongside features — because a release is not “done” when all features are implemented. It is done when all features are verified, and all critical defects are resolved.</p>



<p class="wp-block-paragraph">The baseline is not a straight line. Real projects follow an S-curve: slow at the start (ramp-up, architecture, design), steep in the middle (implementation at peak velocity), and tapering at the end (integration, verification, final fixes). A straight-line baseline is a textbook fiction that misleads the team into thinking they are behind when they are still ramping up. The S-curve reflects how value is actually delivered.</p>



<p class="wp-block-paragraph">From that point, the team tracks daily how many items remain versus how many should remain based on the baseline. The burndown chart makes the answer to “are we on track?” visible to everyone, every day, without anyone having to ask.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large is-resized"><a href="https://projectcrunch.com/wp-content/uploads/2026/03/FeatureBurnDown-1.png"><img decoding="async" width="1024" height="564" src="https://projectcrunch.com/wp-content/uploads/2026/03/FeatureBurnDown-1-1024x564.png" alt="" class="wp-image-3730" style="aspect-ratio:1.8156303826539228;width:719px;height:auto" srcset="https://projectcrunch.com/wp-content/uploads/2026/03/FeatureBurnDown-1-1024x564.png 1024w, https://projectcrunch.com/wp-content/uploads/2026/03/FeatureBurnDown-1-300x165.png 300w, https://projectcrunch.com/wp-content/uploads/2026/03/FeatureBurnDown-1-768x423.png 768w, https://projectcrunch.com/wp-content/uploads/2026/03/FeatureBurnDown-1.png 1083w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>
</div>


<p class="wp-block-paragraph"><em>Figure 1: Feature + critical bug burndown. The baseline (dashed S-curve) shows the plan; the actual line (solid) shows reality. Both start at the same point. The actual line falls behind the planned S-curve through W1–W5. After corrective measures at W5, velocity increases, and the team converges back to the planned end state.</em></p>



<p class="wp-block-paragraph">The chart illustrates a typical pattern: the first weeks show sluggish progress (the team is still reorganizing, silos are being broken down), followed by acceleration once the feature-based approach takes hold. The gap between baseline and actual at any point is the conversation starter: not “are we on track?” but “what do we need to close this gap by next week?”</p>



<h2 class="wp-block-heading">Advantages of Feature Burndown Charts</h2>



<p class="wp-block-paragraph">Burndown charts offer many advantages:</p>



<ul class="wp-block-list">
<li>They offer daily visibility, which means a daily opportunity to intervene—detect, assess, and plan specific corrective actions.</li>



<li>They help detect small deviations before they compound.</li>



<li>They prevent “surprises” at milestone reviews.</li>



<li>They help maintain the “sense of urgency.” If the line is flat, the team sees it. If the line is steep, the team sees that too.</li>
</ul>



<h2 class="wp-block-heading">The Daily Sync: The Heartbeat of the Turnaround</h2>



<h4 class="wp-block-heading">Purpose</h4>



<p class="wp-block-paragraph">A “sync” (also known as “standup”) is a 15-minute daily check-in. Syncs are not status meetings, no reporting ceremonies, etc. They are coordination sessions focused on feature flow and blockers.</p>



<h4 class="wp-block-heading">Format</h4>



<ul class="wp-block-list">
<li>Which features have moved since yesterday?</li>



<li>Which features are blocked?</li>



<li>What is needed to unblock the stuck features or bugs</li>
</ul>



<p class="wp-block-paragraph">What matters is whether the feature or bug is closer to “done.” Attended by feature owners, the project lead, leading architects, verification leads, and the Team Capability Coach (TCC). Suppliers participate on equal terms.</p>



<h4 class="wp-block-heading">What Makes This Different from a Scrum Sync</h4>



<p class="wp-block-paragraph">The unfortunate experience with “real life Scrum” is that Scrum tends to be—ironically enough—a heavyweight, cadence-driven, inflexible instrument facilitated by a “scrum master” who often has insufficient power to ensure flawless execution of feature implementation.</p>



<p class="wp-block-paragraph">As opposed to Scrum, the CORE SPICE approach proposes a release-based, incremental strategy:</p>



<p class="wp-block-paragraph"><strong>No sprints. </strong>MtO projects plan releases, not sprints. This is Kanban-style, release-based cadence.</p>



<p class="wp-block-paragraph"><strong>No theater. </strong>No “what I did yesterday / what I’ll do today” rituals. The burndown chart is the visual anchor: everyone sees the same picture, every day.</p>



<p class="wp-block-paragraph"><strong>Suppliers in the room. </strong>A supplier that delivers features for this release participates in the Sync like any other team member. No separate “supplier sync” behind closed doors.</p>



<p class="wp-block-paragraph">The TCC role can be summarized as follows:</p>



<p class="wp-block-paragraph"><strong>Challenge the delay: </strong>“This feature hasn’t moved in three days. What is the real blocker?”</p>



<p class="wp-block-paragraph"><strong>Facilitate organizational positive attitude: </strong>Help the team resolve cross-functional dependencies on the spot.</p>



<p class="wp-block-paragraph"><strong>Sense of urgency:</strong> Maintain urgency without creating panic. The TCC ensures the team stays focused without burning out.</p>



<h2 class="wp-block-heading">Anti-Patterns</h2>



<p class="wp-block-paragraph">The “daily sync” must be crisp, data-driven, and purposeful. The following fallacies should be prevented:</p>



<ul class="wp-block-list">
<li>Turning the Sync into a 45-minute problem-solving session. Whenever needed, dedicated ad hoc working groups must be <strong>spun off</strong> after the meeting. A good practice is to set aside a “blocked” time for this action right after the meeting, when current open questions can be worked out during the Sync in a small expert group.</li>



<li>Reporting up instead of coordinating. All features and bugs should already be updated by the feature owners <em>before</em> the Sync.</li>



<li>Skipping days because “nothing changed”—the cadence is the discipline.</li>
</ul>



<h2 class="wp-block-heading">The Psychology of “Closing Features:” the Dopamine Effect</h2>



<p class="wp-block-paragraph">Feature-based tracking is not just a mechanism for visibility and progress control. It is a motivation mechanism.</p>



<p class="wp-block-paragraph">Every closed feature is a visible, undeniable achievement. The feature owner and the entire team can see it on the burndown chart: one more item moved to “Done.” It triggers a psychological reward—a dopamine response that reinforces the behavior that elicited it.</p>



<p class="wp-block-paragraph">Feature and bug closure is fundamentally different from closing low-level sub-tasks. Nobody celebrates completing one of twelve software design reviews. But when “OBD Compliance” moves to “Done,” the team knows that a real, customer-visible chunk of work is finished. The effect compounds: each closed feature raises confidence and energy for the next one.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><a href="https://projectcrunch.com/wp-content/uploads/2026/03/MotivationalCycle.png"><img loading="lazy" decoding="async" width="750" height="750" src="https://projectcrunch.com/wp-content/uploads/2026/03/MotivationalCycle.png" alt="" class="wp-image-3732" style="width:572px;height:auto" srcset="https://projectcrunch.com/wp-content/uploads/2026/03/MotivationalCycle.png 750w, https://projectcrunch.com/wp-content/uploads/2026/03/MotivationalCycle-300x300.png 300w, https://projectcrunch.com/wp-content/uploads/2026/03/MotivationalCycle-150x150.png 150w, https://projectcrunch.com/wp-content/uploads/2026/03/MotivationalCycle-70x70.png 70w" sizes="auto, (max-width: 750px) 100vw, 750px" /></a></figure>
</div>


<p class="wp-block-paragraph"><em>Figure 2: The positive feedback loop. Delivering a feature leads to recognition, triggering a psychological reward that fuels motivation, which drives the next delivery.</em></p>



<h2 class="wp-block-heading">Recognition Without Ceremony</h2>



<p class="wp-block-paragraph">Feature closures should be acknowledged in the daily Sync—briefly, factually, but visibly. It is paying respect to the feature owner, who often had to invest a lot of “blood, sweat, and tears” to deliver the feature on time. The team that delivers should be recognized. Not with extensive celebrations, but with a simple acknowledgment—something along the lines of “Feature X is done. Well done, [name].”</p>



<p class="wp-block-paragraph">That creates a culture where finishing things is valued—not just starting them. Over time, the burndown chart itself becomes a source of team pride: a visual record of what has been accomplished.</p>



<h2 class="wp-block-heading">Why Celebrating Feature Closure Matters</h2>



<p class="wp-block-paragraph">Distressed teams are often frustrated or even demoralized. They have been in “crisis mode” for a long time, sometimes for months, working long hours with no visible sense of progress. The open-item count goes up. The backlog grows. Nobody feels like they are winning.</p>



<p class="wp-block-paragraph">Feature-based tracking breaks the monolith into achievable milestones. Each closed feature is proof that progress is real. The positive psychological feedback loop—deliver, recognition, dopamine, motivation, deliver more—is the antidote to the vicious cycle of despair that distressed projects often fall into.</p>



<h2 class="wp-block-heading">CORE SPICE Measures</h2>



<p class="wp-block-paragraph">The feature-based tracking approach does not work in isolation. It requires a foundation of five CORE SPICE measures already in place. For detailed descriptions, see <a href="https://projectcrunch.com/core-spice-coaching-concept/" target="_blank" rel="noreferrer noopener">“CORE SPICE Coaching Concept”</a>.</p>



<ul class="wp-block-list">
<li><strong>No task left behind. </strong>Every identified risk or gap becomes an owned task. If you create an issue, you will eventually deal with its outcome—this negative feedback loop prevents backlog mushrooming.</li>



<li><strong>Maintain the sense of urgency. </strong>Every MtO turnaround project is a task force. The TCC ensures high urgency is upheld as long as substantial risks remain unmitigated.</li>



<li><strong>End-to-end responsibility. </strong>The feature owner concept directly implements this: one person responsible from inception to final verification, cross-functional, not discipline-bound.</li>



<li><strong>Constantly assess the team. Project Lead</strong> and TCC monitor whether everyone contributes. Ineffective team members must be swiftly replaced—keeping them demotivates the rest.</li>



<li><strong>Automate everything. </strong>Feature tracking itself should be automated: status pulled from the issue management system, burndown charts generated without manual effort. With LLMs gaining traction, it should be a no-brainer.</li>
</ul>



<h2 class="wp-block-heading">Putting It All Together</h2>



<p class="wp-block-paragraph">The elements described in this article are not independent techniques to be adopted piecemeal. They form a system. When all are in place, it creates a self-reinforcing cycle:</p>



<ul class="wp-block-list">
<li>Feature-based tracking provides <strong>visibility.</strong></li>



<li>Radical transparency provides <strong>trust.</strong></li>



<li>The burndown baseline (features + critical bugs) provides <strong>accountability.</strong></li>



<li>The daily Sync provides <strong>cadence.</strong></li>



<li>Feature closures provide <strong>motivation.</strong></li>



<li>CORE SPICE measures provide the <strong>cultural foundation.</strong></li>
</ul>



<p class="wp-block-paragraph"><strong>The cycle: Visibility → Urgency → Action → Progress → Recognition → Motivation → More progress</strong></p>



<p class="wp-block-paragraph">Feature-based tracking is not a methodology. It is a pragmatic tool that makes existing methodologies work in distressed MtO environments. The key insight is that tracking what the customer or the standard demands—features, both functional and non-functional—not what the process generates. Include critical bugs to reflect reality, not just the plan. Make everything transparent to everyone—the core team, the suppliers, and the customer.</p>



<p class="wp-block-paragraph"><strong>The “trust me, I have this under control” era is over. The burndown is the answer. If the line is flat, there is no control. If the line is steep, the team is winning—and everyone can see it.</strong></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading">References</h3>



<ul class="wp-block-list">
<li><strong>Unlock Efficiency with CORE SPICE</strong> — The 12 CORE SPICE principles: <a href="https://projectcrunch.com/unlock-efficiency-with-core-spice/" target="_blank" rel="noreferrer noopener">projectcrunch.com/unlock-efficiency-with-core-spice/</a></li>
</ul>



<ul class="wp-block-list">
<li><strong>The Right Genes for Your Project</strong> — MtO vs. R&amp;D project typology: <a href="https://projectcrunch.com/the-right-genes-for-your-project/" target="_blank" rel="noreferrer noopener">projectcrunch.com/the-right-genes-for-your-project/</a></li>
</ul>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>LLMs Are the New Yahoo: Why the Agentic AI Implosion Is Coming—And Who Will Survive It</title>
		<link>https://projectcrunch.com/llms-are-the-new-yahoo-why-the-agentic-ai-implosion-is-coming-and-who-will-survive-it/</link>
		
		<dc:creator><![CDATA[Roman Mildner]]></dc:creator>
		<pubDate>Thu, 26 Feb 2026 22:38:21 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[Strategy]]></category>
		<guid isPermaLink="false">https://projectcrunch.com/?p=3714</guid>

					<description><![CDATA[Last week, Anthropic CEO Dario Amodei said we might be “6–12 months away from models doing all of what software engineers do end-to-end.” <a class="mh-excerpt-more" href="https://projectcrunch.com/llms-are-the-new-yahoo-why-the-agentic-ai-implosion-is-coming-and-who-will-survive-it/" title="LLMs Are the New Yahoo: Why the Agentic AI Implosion Is Coming—And Who Will Survive It">Read...</a>]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-audio"><audio controls src="https://projectcrunch.com/wp-content/uploads/2026/02/LLMs-Are-the-New-Yahoo-1.mp3"></audio></figure>



<h4 class="wp-block-heading">Last week, Anthropic CEO Dario Amodei said we might be “6–12 months away from models doing all of what software engineers do end-to-end.”</h4>



<p class="wp-block-paragraph">Think about it: If that’s true—if agentic AI can really do everything a software engineer does—then replicating Anthropic itself is just a prompt away. Anyone could build Cowork in their basement. Why would you pay a $60 billion company for something you can bootleg with their own tools?</p>



<p class="wp-block-paragraph"><strong>Here is the thing: That’s the paradox that should keep every AI investor up at night.</strong></p>



<p class="wp-block-paragraph">Either agentic AI is as powerful as the pitch decks claim—in which case the companies selling it are commoditizing themselves. Or it’s not—in which case the trillion-dollar valuations are built on fantasy.</p>



<p class="wp-block-paragraph">You cannot have it both ways.</p>



<h2 class="wp-block-heading"><strong>The Yahoo Parallel Nobody Wants to Hear</strong></h2>



<p class="wp-block-paragraph">In 1999, Yahoo was the internet. Yahoo’s market cap reached $125 billion. Every investor, analyst, and journalist agreed: Yahoo&nbsp;<em>was</em>&nbsp;the future. It had the users, the brand, the traffic, and the portal. The world literally ran on Yahoo.</p>



<p class="wp-block-paragraph">Then the infrastructure underneath it—search, email, hosting—got commoditized. Cheaper. Better. Open. Google ate search. Gmail ate Yahoo Mail. WordPress ate Yahoo GeoCities. The “platform” everyone thought was an essential game-changer turned out to be a thin wrapper over generic technology.</p>



<p class="wp-block-paragraph">By 2016, Verizon picked up Yahoo’s remains for $4.8 billion—a 96% discount from its peak.</p>



<p class="wp-block-paragraph">Now replace “Yahoo” with “OpenAI.” Replace “portal” with “agentic AI platform.” Replace “search getting commoditized” with “LLMs getting commoditized.”</p>



<p class="wp-block-paragraph">It is not the same pattern—but it rhymes.</p>



<p class="wp-block-paragraph">Similar to Yahoo decades ago, OpenAI had a massive head start. ChatGPT was the fastest-growing consumer app in history. Sam Altman was on every magazine cover. The moat looked enormous.</p>



<p class="wp-block-paragraph">Then DeepSeek showed you can train a frontier model for a fraction of the cost. Llama went open-source. NVIDIA stock collapsed by 17% in a single day. Claude matched GPT on most benchmarks. Gemini caught up. Mistral emerged. Dozens of open-weight models flooded the market. Every quarter, the performance gap between models shrinks while the cost per token collapses.</p>



<p class="wp-block-paragraph"><strong>LLMs are converging toward </strong>a <strong>commodity faster than anyone predicted.</strong> The model layer—the very thing these companies are built on—is approaching marginal cost, just as search did in the early 2000s.</p>



<p class="wp-block-paragraph"><strong>The Commoditization Paradox of Agentic AI</strong></p>



<p class="wp-block-paragraph">Here’s the part that truly breaks the god-like AI narrative.</p>



<p class="wp-block-paragraph">The current scare story goes like this:&nbsp;<em>Agentic AI will eat all software. Jira is dead. Salesforce is dead. Every SaaS tool will be replaced by an AI agent that just does the work.</em></p>



<p class="wp-block-paragraph">Sounds terrifying—until you ask one simple question:</p>



<h2 class="wp-block-heading"><strong>Agentic AI is software, too.</strong></h2>



<p class="wp-block-paragraph">Every “agent” is fundamentally the same thing: an LLM connected to tools via APIs, wrapped in orchestration logic, with a user interface on top. That’s it. There is no deep, proprietary magic. There is no secret sauce. The MCP (Model Context Protocol) and similar standards are enabling tool integration to be plug-and-play. The models themselves are interchangeable.</p>



<p class="wp-block-paragraph">If Anthropic’s Cowork can automate software development, then by definition, someone can use that exact same capability to build a Cowork competitor over a long weekend. The tools to displace the disruptor&nbsp;<em>are the disruptor itself</em>.</p>



<p class="wp-block-paragraph">And no:  it is not an abstract, theoretical argument. We’ve already seen it happen. OpenClaw—a solo developer project—replicated most of what the big AI labs were pitching as their next billion-dollar product. OpenAI didn’t acquire the technology. They didn’t buy the company. They hired the <strong>guy</strong>. Because the technology was trivially replicable. The human judgment behind it was not.</p>



<h2 class="wp-block-heading"><strong>The One Person Who Already Figured This Out</strong></h2>



<p class="wp-block-paragraph">While Sam Altman is chasing a $500 billion IPO for a company that sells commodity software, and Dario Amodei is telling the world his agents will replace all engineers (thereby making his own product worthless—see above), one person has quietly made the move that reveals he understands everything in this article.</p>



<p class="wp-block-paragraph">Elon Musk.</p>



<p class="wp-block-paragraph">On February 2, 2026, SpaceX acquired xAI in a $1.25 trillion all-stock merger—the largest in history. SpaceX is valued at $1 trillion. xAI at $250 billion. On paper, this looks like another Musk ego trip. In reality, it’s the most strategically coherent move in the entire AI industry.</p>



<p class="wp-block-paragraph">Here’s why:&nbsp;<strong>Musk is the only AI player who understood that AI alone is worth nothing.</strong></p>



<p class="wp-block-paragraph">But think about what SpaceX actually owns. Reusable rockets that no competitor has replicated at scale. Starlink—9,000+ satellites in orbit, 9 million subscribers, and billions in defense contracts with NASA and the Department of Defense. A literal company town in Texas. $15 billion in revenue and $8 billion in profit. These are physical, hard-to-replicate assets that took over two decades of engineering, explosions, and near-bankruptcies to build.</p>



<p class="wp-block-paragraph">xAI’s Grok, on the other hand? A chatbot. A good one, sure — but fundamentally the same commodity as GPT, Claude, Gemini, and the rest. By itself, Grok is heading toward the same zero-margin future as every other LLM.</p>



<p class="wp-block-paragraph">But Grok&nbsp;<em>bolted onto</em>&nbsp;SpaceX’s rocket infrastructure, Starlink’s global network, and planned orbital data centers? That’s a vertically integrated stack that no pure-play AI company can touch. OpenAI can’t launch satellites. Anthropic doesn’t have rockets. Perplexity doesn’t own a communications network.</p>



<p class="wp-block-paragraph">Musk is not betting on AI.&nbsp;<strong>He’s betting on the things AI cannot replace</strong>—and then using AI as an add-on, not the foundation of his tech empire. That’s the opposite of what OpenAI and Anthropic are doing.</p>



<p class="wp-block-paragraph">The irony is thick. The man the tech press loves to mock may be the only AI CEO who has actually internalized the logic of LLM commoditization. Everyone else is building castles on sand—premium-priced software layers that are racing to zero. Musk is building on physical infrastructure: rockets, satellites, and a distribution network that can’t be “prompted into existence.”</p>



<p class="wp-block-paragraph">Many of Musk’s ideas are still science fiction, like the orbital data center. Radiation, cooling, launch costs, the sheer audacity of it. But the strategic direction is unmistakably correct. Even if the space data centers never materialize, SpaceX + Starlink + defense contracts is a $1 trillion hardware business. xAI is just a meager add-on.</p>



<h2 class="wp-block-heading">Burry Is Early — But He’s Not Wrong (And Not Entirely Right, Either)</h2>



<p class="wp-block-paragraph">Michael Burry—the “Big Short” investor who famously predicted the 2008 housing collapse — has put roughly $1.1 billion in notional put options against Nvidia and Palantir. He’s also been shorting Oracle and publishing detailed analyses of how hyperscalers are inflating their earnings by stretching GPU depreciation from 3 years to 6 years, potentially overstating earnings by $176 billion between 2026 and 2028.</p>



<p class="wp-block-paragraph">The market laughed at him initially—just like in 2007. As of February 2026, his Palantir puts are up 35%. Oracle has fallen 51% from its Q3 2025 peak. The broader S&amp;P Software &amp; Services Index has dropped 19% in a single month. Burry’s thesis is starting to print.</p>



<p class="wp-block-paragraph">However, his Nvidia bet hasn’t paid off yet: the chips are still selling, demand is still real, and at ~24x forward earnings, NVDA isn’t priced like a bubble. Burry himself admitted his NVDA bet is “the most concentrated way to express a bearish view on the AI trade” — a sector bet, not a company bet.</p>



<p class="wp-block-paragraph">I think Burry sees the disease correctly, but is aiming at the wrong organ.</p>



<p class="wp-block-paragraph"><strong>Where Burry is right:</strong>&nbsp;The AI investment cycle is overheated. Trillion-dollar capex commitments for data centers look eerily similar to the fiber-optic boom of 2000, where less than 5% of US telecoms capacity was ever used. Depreciation accounting is masking real costs. Many pure-play AI companies will implode. Palantir at 200x earnings was never going to hold. Oracle’s AI pivot was always more PowerPoint than product.</p>



<p class="wp-block-paragraph"><strong>Where Burry is potentially wrong:</strong>&nbsp;He’s shorting&nbsp;<em>infrastructure</em>&nbsp;(Nvidia, the picks-and-shovels provider) when history suggests the infrastructure layer is often the last to fall — and sometimes doesn’t fall at all. During the Gold Rush, Levi Strauss got rich. During the dot-com crash, Cisco got hammered but survived to become a $200+ billion company today. The server farms that powered the “useless” dot-com companies became the backbone of cloud computing.</p>



<p class="wp-block-paragraph">Here’s the deeper irony: Musk just showed the market exactly where the real value is — physical infrastructure, vertical integration, things that can’t be cloned with a prompt. Burry is betting against the AI bubble, and he’s right about the bubble. But the optimal short isn’t Nvidia (which sells real hardware to real customers). The optimal short is the pure-software layer—the OpenAIs, the Anthropics, the Palantirs—whose valuations depend on maintaining pricing power in a market heading toward commodity.</p>



<p class="wp-block-paragraph">Burry may be losing money on his Nvidia puts while being philosophically correct.</p>



<h2 class="wp-block-heading"><strong>The Three Layers of AI Value—And Where It Goes to Zero</strong></h2>



<p class="wp-block-paragraph">To understand who survives, think of the AI stack in three layers:</p>



<p class="wp-block-paragraph"><strong>Layer 1: The Model (LLMs):</strong> This is heading to a commodity. GPT, Claude, Gemini, Llama, DeepSeek, Mistral—the performance gaps are narrowing every quarter. Open-weight models are closing the gap with proprietary ones. The cost per token is in free fall. Within 2–3 years, the model itself will be like electricity: essential, ubiquitous, and worth pennies on the original dollar.</p>



<p class="wp-block-paragraph">Companies at risk: OpenAI (targeting a $500B+ IPO), Anthropic ($350B valuation for… a chatbot and some agents), Cohere, AI21, and anyone whose primary value proposition is “we have a good model.” Musk understood this, which is exactly why he bolted xAI onto SpaceX instead of trying to IPO Grok as a standalone company.</p>



<p class="wp-block-paragraph"><strong>Layer 2: The Agent Wrapper.</strong> This is already a commodity. Cowork, Operator, Devin, and their dozen clones—these are LLM + API + orchestration + UI. There is no defensible moat in wiring a model to a set of tools. Any competent engineering team can (and will) build equivalents. The OpenClaw story is proof: one developer matched what the big labs were pitching as their next billion-dollar product in a few weeks.</p>



<p class="wp-block-paragraph">Companies at risk: Any startup whose pitch is “we built an agent that does XYZ.” Venture capital in this space is in peak euphoria.</p>



<p class="wp-block-paragraph"><strong>Layer 3: Data, Distribution, and Infrastructure.</strong>&nbsp;This is where durable value lives. It splits into three sub-categories:</p>



<ul class="wp-block-list">
<li><strong>Irreplaceable data:</strong>&nbsp;Atlassian’s Teamwork Graph (100+ billion objects of institutional knowledge across 350,000 companies), Salesforce’s customer data, and Bloomberg’s financial data. The agent is replaceable; the data it operates on is not. This is the real moat.</li>



<li><strong>Infrastructure (picks and shovels):</strong> Nvidia (GPUs), Broadcom (custom ASICs/XPUs), TSMC (fabrication), the hyperscalers (AWS, Azure, GCP)—and, yes, SpaceX with its rockets, Starlink network, and orbital ambitions. Every AI company, regardless of which one wins, needs chips, power, connectivity, and cloud. This is the Levi Strauss play. It’s also the Musk play — and it’s why SpaceX at $1 trillion makes more strategic sense than OpenAI at $500 billion, even though OpenAI gets all the headlines.</li>



<li><strong>Distribution at enterprise scale:</strong> Companies embedded in mission-critical workflows with brutal switching costs—80% of the Fortune 500 runs on Atlassian; virtually every enterprise runs on Microsoft. Ripping Jira out of a 10,000-seat deployment isn’t a weekend project. It’s a multi-year, multi-million-dollar nightmare.</li>
</ul>



<h2 class="wp-block-heading"><strong>Where Should the Smart Money Go?</strong></h2>



<p class="wp-block-paragraph">If you believe—as I do — that the model and agent layers are heading toward commodity, the investment implications are clear:</p>



<p class="wp-block-paragraph"><strong>Avoid</strong>&nbsp;companies whose entire value proposition is “we have a good model” or “we built a cool agent.” That means extreme caution on OpenAI (if it IPOs), Anthropic, and the dozens of AI agent startups currently raising at absurd valuations. These are the Yahoo and Excite of this cycle.</p>



<p class="wp-block-paragraph"><strong>Be selective with infrastructure.</strong>&nbsp;NVIDIA is still printing money, but at some point, custom silicon from Google (TPUs), Amazon (Trainium/Inferentia), and Broadcom’s XPUs will erode margins. The question is timing, not direction. Short-term bull, long-term cautious.</p>



<p class="wp-block-paragraph"><strong>Favor the data and distribution moats.</strong> Companies like Atlassian—currently down 57% from its highs and trading at roughly 8x forward revenue—own something no agent can replicate: the institutional memory of hundreds of thousands of organizations. Their Teamwork Graph is not a feature. It’s a key that gets more valuable as more agents connect to it (via MCP). Paradoxically, the rise of agentic AI may make Atlassian <em>more</em> valuable, not less, because the agents need the data layer to function.</p>



<p class="wp-block-paragraph"><strong>Don’t forget physical scarcity.</strong> One of the most underappreciated implications of AI commoditization is that software value compresses while hardware and energy value do not. Defense companies, energy infrastructure, semiconductor fabrication—these cannot be “prompted into existence.” Claude is not disrupting a Rheinmetall tank or a Siemens Energy turbine.</p>



<h2 class="wp-block-heading"><strong>The Endgame</strong></h2>



<p class="wp-block-paragraph">Here’s what I think happens:</p>



<ol class="wp-block-list">
<li><strong>2026–2027:</strong>&nbsp;The AI hype peaks. More money pours into model companies and agent startups. Valuations get even more absurd. OpenAI targets a $500B+ IPO. Anthropic raises at $350B+. SpaceX/xAI goes public at $1.5 trillion — but unlike the others, it has $15 billion in revenue and $8 billion in profit from real hardware. Everyone believes this time is different.</li>



<li><strong>2027–2028:</strong>&nbsp;Reality bites. Model commoditization becomes undeniable. Open-weight models match proprietary ones on virtually every benchmark. Price-per-token approaches zero. Agent wrappers proliferate — there are 500 Cowork clones. Enterprise customers realize they don’t need to pay premium prices for what is essentially a commodity utility.</li>



<li><strong>2028–2029:</strong>&nbsp;The shakeout. Pure-play AI companies that couldn’t build real moats get acquired at massive discounts or shut down. The pattern of the dot-com bust repeats: the technology and the revolution were real, but 90% of the companies built on them were not.</li>



<li><strong>What survives:</strong>&nbsp;The infrastructure layer (Nvidia/Broadcom, though with compressed margins), the data moats (Atlassian, Salesforce), the hyperscalers (who will provide AI like they provide cloud today — as a utility), the vertically integrated hardware-AI plays (SpaceX/xAI, if the execution holds), and the physical-world companies that AI simply cannot commoditize.</li>
</ol>



<p class="wp-block-paragraph">Michael Burry is betting on the crash. I think he’s right about the <em>what</em>, but potentially wrong about the <em>where</em>. The model layer will implode. The agent layer will commoditize. But the picks-and-shovels layer and the data-moat layer will survive—and in some cases, thrive.</p>



<p class="wp-block-paragraph"><strong>The winners of the AI revolution won’t be the companies building AI. They’ll be the companies that own what AI cannot replicate: data, trust, physical infrastructure, and the human judgment to use it all wisely.</strong>&nbsp;Musk seems to get it. Burry half-gets it. The rest of the market? Still chasing the Yahoo dream.</p>



<p class="wp-block-paragraph">As I wrote in my earlier piece on the AI Abundance Trap: LLMs don’t eliminate work; they give us 10× speed to develop everything else. The competitive edge in the coming decade belongs to those who refuse to let fast AI make them dumber.</p>



<p class="wp-block-paragraph">So: cultivate your critical thinking. Invest in what can’t be prompted into existence. And prepare for the implosion that even Sam Altman’s pitch deck can’t prevent.</p>



<p class="wp-block-paragraph">The dot-com crash didn’t kill the internet. It killed the pretenders.</p>



<p class="wp-block-paragraph"><strong>The AI implosion won’t kill artificial intelligence. It will kill the Yahoos.</strong></p>



<p class="wp-block-paragraph"><strong>And if you want to know who survives? Look for the rockets, not the chatbots.</strong></p>



<h2 class="wp-block-heading">Where Should the Smart Money Go?</h2>



<p class="wp-block-paragraph">If you believe—as I do—that the model and agent layers are heading toward commodity, the investment implications are clear:</p>



<p class="wp-block-paragraph"><strong>Avoid</strong> companies whose entire value proposition is &#8220;we have a good model&#8221; or &#8220;we built a cool agent.&#8221; That means extreme caution on OpenAI (if it IPOs), Anthropic, and the dozens of AI agent startups currently raising at absurd valuations. These are the Yahoo and Excite of this cycle.</p>



<p class="wp-block-paragraph"><strong>Be selective with infrastructure.</strong> NVIDIA is still printing money, but at some point, custom silicon from Google (TPUs), Amazon (Trainium/Inferentia), and Broadcom&#8217;s XPUs will erode margins. The question is timing, not direction. Short-term bull, long-term cautious.</p>



<p class="wp-block-paragraph"><strong>Favor the data and distribution moats.</strong> Companies like Atlassian—currently down 57% from its highs and trading at roughly 8x forward revenue—own something no agent can replicate: the institutional memory of hundreds of thousands of organizations. Their Teamwork Graph is not a feature. It&#8217;s a flywheel that gets more valuable as more agents connect to it (via MCP). Paradoxically, the rise of agentic AI may make Atlassian <em>more</em> valuable, not less, because the agents need the data layer to function.</p>



<p class="wp-block-paragraph"><strong>Don&#8217;t forget physical scarcity.</strong> One of the most underappreciated implications of AI commoditization is that software value compresses while hardware and energy value do not. Defense companies, energy infrastructure, semiconductor fabrication—these cannot be &#8220;prompted into existence.&#8221; Claude is not disrupting a Rheinmetall tank or a Siemens Energy turbine.</p>



<h2 class="wp-block-heading">The Endgame</h2>



<p class="wp-block-paragraph">Here&#8217;s what I think happens:</p>



<ol class="wp-block-list">
<li><strong>2026–2027:</strong> The AI hype peaks. More money pours into model companies and agent startups. Valuations get even more absurd. OpenAI targets a $500B+ IPO. Anthropic raises at $350B+. SpaceX/xAI goes public at $1.5 trillion — but unlike the others, it has $15 billion in revenue and $8 billion in profit from real hardware. Everyone believes this time is different.</li>



<li><strong>2027–2028:</strong> Reality bites. Model commoditization becomes undeniable. Open-weight models match proprietary ones on virtually every benchmark. Price-per-token approaches zero. Agent wrappers proliferate — there are 500 Cowork clones. Enterprise customers realize they don&#8217;t need to pay premium prices for what is essentially a commodity utility.</li>



<li><strong>2028–2029:</strong> The shakeout. Pure-play AI companies that couldn&#8217;t build real moats get acquired at massive discounts or shut down. The pattern of the dot-com bust repeats: the technology was real, the revolution was real, but 90% of the companies built on it were not.</li>



<li><strong>What survives:</strong> The infrastructure layer (Nvidia/Broadcom, though with compressed margins), the data moats (Atlassian, Salesforce), the hyperscalers (who will provide AI like they provide cloud today — as a utility), the vertically integrated hardware-AI plays (SpaceX/xAI, if the execution holds), and the physical-world companies that AI simply cannot commoditize.</li>
</ol>



<p class="wp-block-paragraph">Michael Burry is betting on the crash. I think he&#8217;s right about the <em>what</em>, but potentially wrong about the <em>where</em>. The model layer will implode. The agent layer will commoditize. But the picks-and-shovels layer and the data-moat layer will survive—and in some cases, thrive.</p>



<p class="wp-block-paragraph"><strong>The winners of the AI revolution won&#8217;t be the companies building AI. They&#8217;ll be the companies that own what AI cannot replicate: data, trust, physical infrastructure, and the human judgment to use it all wisely.</strong> Musk seems to get it. Burry half-gets it. The rest of the market? Still chasing the Yahoo dream.</p>



<p class="wp-block-paragraph">As I wrote in my earlier piece on the AI Abundance Trap: LLMs don&#8217;t eliminate work; they give us 10× speed to develop everything else. The competitive edge in the coming decade belongs to those who refuse to let fast AI make them dumber.</p>



<p class="wp-block-paragraph">So: cultivate your critical thinking. Invest in what can&#8217;t be prompted into existence. And prepare for the implosion that even Sam Altman&#8217;s pitch deck can&#8217;t prevent.</p>



<p class="wp-block-paragraph">The dot-com crash didn&#8217;t kill the internet. It killed the pretenders.</p>



<p class="wp-block-paragraph"><strong>The AI implosion won&#8217;t kill artificial intelligence. It will kill the Yahoos.</strong></p>



<p class="wp-block-paragraph"><strong>And if you want to know who survives? Look for the rockets, not the chatbots.</strong></p>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
		
		<enclosure url="https://projectcrunch.com/wp-content/uploads/2026/02/LLMs-Are-the-New-Yahoo-1.mp3" length="19257189" type="audio/mpeg" />

			</item>
		<item>
		<title>The AI Abundance Trap: Trillion-Dollar Valuations, AI Job Scare—And How We Can Still Grow the Pie</title>
		<link>https://projectcrunch.com/the-ai-abundance-trap-trillion-dollar-valuations-ai-job-scare-and-how-we-can-still-grow-the-pie/</link>
		
		<dc:creator><![CDATA[Roman Mildner]]></dc:creator>
		<pubDate>Sun, 22 Feb 2026 21:00:59 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[Strategy]]></category>
		<guid isPermaLink="false">https://projectcrunch.com/?p=3704</guid>

					<description><![CDATA[Last year, as music is my hobby, I spent an evening creating professional-sounding songs with Suno. They sounded great, and I felt really good about myself—until I realized that tens of thousands of people are <a class="mh-excerpt-more" href="https://projectcrunch.com/the-ai-abundance-trap-trillion-dollar-valuations-ai-job-scare-and-how-we-can-still-grow-the-pie/" title="The AI Abundance Trap: Trillion-Dollar Valuations, AI Job Scare—And How We Can Still Grow the Pie">Read...</a>]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-audio"><audio controls src="https://projectcrunch.com/wp-content/uploads/2026/02/The-AI-Abundance-Trap-1.mp3"></audio></figure>



<p class="wp-block-paragraph">Last year, as music is my hobby, I spent an evening creating professional-sounding songs with <a href="https://suno.com/">Suno</a>. They sounded great, and I felt really good about myself—until I realized that tens of thousands of people are doing the exact same thing every day, and their Suno-creations sound brilliant. Suddenly, a product that used to take months, real talent, and real money is now worth next to nothing.</p>



<p class="wp-block-paragraph">I’ve been thinking about this a lot lately: if someone using AI can deliver the exact same quality of work in just a few days that used to take months, how should that work be valued? Do we still pay the old rate, or is the entire pricing model broken?</p>



<p class="wp-block-paragraph">That simple question exposes a quiet, open flaw in the entire AI narrative: what happens when intelligence itself becomes abundant and cheap?</p>



<h2 class="wp-block-heading">Are LLMs Good Enough?</h2>



<p class="wp-block-paragraph">LLMs are continuously improving, but they remain fundamentally fast-thinking pattern matchers — exactly as Daniel Kahneman describes in his book Thinking, Fast and Slow. In it, he distinguishes two modes of human thinking: System 1 (“fast thinking”—quick, intuitive, pattern-matching) and System 2 (“slow thinking”—deliberate, logical reasoning required for complex, high-stakes work).</p>



<p class="wp-block-paragraph">Current LLMs are pure System 1 machines. They simply predict the next token based on the previous ones. That’s why they still hallucinate at 10-20% across many real-world tasks. In that sense, they are not “intelligent” in the human meaning of the word.</p>



<p class="wp-block-paragraph">For many routine tasks that do not require a predetermined outcome quality, this is often sufficient. But for anything that truly matters—tax advice, legal contracts, or safety- and security-critical automotive development—the risk is simply too high. You can outsource the first draft to an LLM, but thorough human verification and validation (true System 2 thinking) remain indispensable.</p>



<h2 class="wp-block-heading">“Free&#8221;—at a Price</h2>



<p class="wp-block-paragraph">In that sense, for many tasks, current LLMs are already “good enough.” The real question is: what is such cheap content actually worth?</p>



<p class="wp-block-paragraph">When output becomes infinite and near-free, the old pricing model collapses. “Agentic” AI like Claude Cowork can now develop complete software for pennies. Yet here is the bizarre paradox: pure software companies like Anthropic have valuations in the tens of billions, even though they are selling the very tools that will commoditize the software layer itself.</p>



<p class="wp-block-paragraph">As a lateral example, SaaS (Software-as-a-Service) is being commoditized as we speak—the easy, promptable layers are turning into near-zero-cost commodities. If anyone can recreate something like OpenClaw in their basement, why would companies continue paying premium prices for what is quickly becoming a utility?</p>



<p class="wp-block-paragraph">The trillion-dollar pitch decks assumed AI would capture huge rents from automated labor. Instead, raw intelligence itself is heading toward full commoditization.</p>



<p class="wp-block-paragraph">But the problem runs deeper than just economics. Our heavy reliance on these fast-thinking systems is already creating a more subtle but serious issue: cognitive offloading. Recent studies, including a 2025 MIT Media Lab EEG experiment, show that users who lean heavily on LLMs exhibit significantly reduced brain engagement, lower critical thinking, and measurable “cognitive debt” over time.</p>



<p class="wp-block-paragraph">In other words, while we happily offload more and more work to LLMs—even as they still hallucinate left and right—the users themselves are beginning to lose the ability to spot those hallucinations. That is not a good sign for the future of an LLM-driven AI industry.</p>



<h2 class="wp-block-heading">Surviving the LLM Implosion</h2>



<p class="wp-block-paragraph">Despite all the shortcomings of current LLMs, not everything will be devoured by agentic AI. Many LLM-powered tasks already appear “good enough” in the sense that they can be completely automated, but we must focus on what survives commoditization: proprietary data, customer relationships, distribution, personal brand, and—most importantly—the irreplaceable human inspiration.</p>



<p class="wp-block-paragraph">However, the ability to make educated decisions will become even more important as automation progresses rapidly. The decisive competitive factor for the next decade will be Effective Critical Systems Thinking (<a href="https://projectcrunch.com/ecst/" data-type="post" data-id="2656">ECST</a>). This slow, deliberate, System-2-level reasoning turns cheap AI from a crutch into a 10× multiplier. Companies and indie builders who deliberately cultivate ECST will pull ahead, while those who just prompt-and-pray fall behind.</p>



<p class="wp-block-paragraph">In addition, some software tools are unlikely to become commoditized anytime soon. Certain infrastructure layers will remain extremely valuable. For instance, the Atlassian platforms (e.g., JIRA) that guarantee data persistence, compliance, auditability, and deep integration cannot be easily replicated with a prompt. Software that protects the high-trust environment— the rule of law, honest integration, open inquiry, and long-term value creation—will remain in every company&#8217;s war chest.</p>



<p class="wp-block-paragraph">Otherwise, software becomes, in general, a “commodity”: relatively easy to develop, maintain, and extend at low cost. Systems development, on the other hand, products that, in addition to software, require custom hardware and mechanical parts, will remain in the “scarcity” camp: not commoditizable, expensive, and labor-intensive.</p>



<p class="wp-block-paragraph">Thinking longer term, when fusion energy finally arrives (see my earlier piece on the megatrend of cheap, clean energy <a href="https://projectcrunch.com/megatrend-cheap-clean-energy/" data-type="post" data-id="746">here</a>), the whole game changes again: energy becomes nearly free, supercharging the abundance for those who kept their thinking sharp. Once this day arrives (likely not before 2030), all bets will be off anyway, because with sufficient energy, iterating everything (including physical infrastructure) until the result is satisfactory will be a non-issue.</p>



<h2 class="wp-block-heading">Keep Calm and Carry On</h2>



<p class="wp-block-paragraph">Most of the hype money is still betting on raw LLM models, even as they are fast approaching their own commoditization.</p>



<p class="wp-block-paragraph">AI is not approaching the mythical AGI anytime soon. Serious analysis shows the productivity miracle is smaller and slower than pitched, especially while LLMs remain unreliable System 1 fast thinkers. In other words, true AGI will literally never be possible as long as we rely on today’s “System 1” software.</p>



<p class="wp-block-paragraph">While some fear that humans will be eliminated and that AI will do everything, this fear is understandable but misplaced. LLMs produce cheap content, not accountability. For many years to come, clients will always need a human “throat to choke” when millions are on the line. The real danger is not replacement—it’s becoming so dependent on LLMs that we lose our own deep thinking ability.</p>



<h2 class="wp-block-heading">Let’s Grow the Pie</h2>



<p class="wp-block-paragraph">The “great commoditization” of software (including LLMs) is a revolution—and, as the saying goes, revolutions often devour their children. Many currently hyped companies will disappear and be remembered only by the same people who still remember the “Boo.com” disaster. That said, this revolution is real, and the trillion-dollar AI fairy has reached a scale that is becoming “too big to fail.” The often-cited comparison with the dot-com crash should not be taken lightly—the current AI hype may indeed end up in a similar crash. Once the dust settles, we will likely be surprised by what emerges from this chaos.</p>



<p class="wp-block-paragraph">In the meantime, the fear that the economic pie will shrink and leave millions living on a “universal basic income” can come true—if we as human beings refuse to adapt. If we don’t adapt, the near future will lead to a tumultuous transition to the “brave new world.”</p>



<p class="wp-block-paragraph">On the other hand, this transition doesn’t have to be as painful as some assume. &nbsp;The potential horrors of “everyone gets fired by the AI” rest on a fixed-pie assumption: that work would shrink, and the rest of us would have to fight over the same slice. In my view, that’s a horrible misconception. There will be many changes in the workforce, as mostly boring “box checkers” and bureaucrats may be sent packing home; however, most of us won’t miss them anyway. Instead, the remaining productive engineers and scientists will gain AI superpowers, thereby steeply increasing economic output (a.k.a. “added value”).</p>



<p class="wp-block-paragraph">In other words, instead of being overly anxious that jobs are supposedly being destroyed, let’s grow the pie.</p>



<p class="wp-block-paragraph">LLMs don’t just eliminate work; they give us 10× speed to develop everything else—including fusion reactors, new materials, and better medicine. The real competitive edge in the coming decade will belong to those who refuse to let fast AI make them dumber. Cultivate Effective Critical Systems Thinking. Protect open inquiry. Build on solid ground.</p>



<p class="wp-block-paragraph">For indie builders, consultants, and companies worldwide, this is liberating: we never needed to rent our future from Big Tech anyway. The real game is building sovereign, honest, long-term things while the technology gets cheaper every month.</p>



<p class="wp-block-paragraph">That’s what technology has always been about—and it’s why I’m genuinely optimistic about the decade ahead.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph"><strong>References</strong></p>



<ul class="wp-block-list">
<li>Daniel Kahneman, <em>Thinking, Fast and Slow</em>, Farrar, Straus and Giroux, 2011. ISBN 978-0374533557</li>



<li>Kosmyna et al., “Your Brain on ChatGPT” (MIT Media Lab, June 2025) — <a href="https://www.media.mit.edu/publications/your-brain-on-chatgpt/" target="_blank" rel="noreferrer noopener">https://www.media.mit.edu/publications/your-brain-on-chatgpt/</a></li>



<li>Acemoglu, Daron. “The Simple Macroeconomics of AI” (NBER Working Paper 32487, 2024) — <a href="https://www.nber.org/papers/w32487" target="_blank" rel="noreferrer noopener">https://www.nber.org/papers/w32487</a></li>



<li>Roman Mildner, “Megatrend: Cheap Clean Energy” (projectcrunch.com) — <a href="https://projectcrunch.com/megatrend-cheap-clean-energy/" target="_blank" rel="noreferrer noopener">https://projectcrunch.com/megatrend-cheap-clean-energy/</a></li>
</ul>
]]></content:encoded>
					
		
		<enclosure url="https://projectcrunch.com/wp-content/uploads/2026/02/The-AI-Abundance-Trap-1.mp3" length="11085117" type="audio/mpeg" />

			</item>
	</channel>
</rss>
