<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Lonnie McRorey</title>
    <description>The latest articles on DEV Community by Lonnie McRorey (@lonnie_mcrorey).</description>
    <link>https://dev.to/lonnie_mcrorey</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2999144%2Fffb0fd18-b9c9-421c-9252-1dc10243c267.png</url>
      <title>DEV Community: Lonnie McRorey</title>
      <link>https://dev.to/lonnie_mcrorey</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lonnie_mcrorey"/>
    <language>en</language>
    <item>
      <title>Agency Theory Economics as engineering operating evidence</title>
      <dc:creator>Lonnie McRorey</dc:creator>
      <pubDate>Tue, 11 Aug 2026 14:30:39 +0000</pubDate>
      <link>https://dev.to/lonnie_mcrorey/agency-theory-economics-as-engineering-operating-evidence-3d9e</link>
      <guid>https://dev.to/lonnie_mcrorey/agency-theory-economics-as-engineering-operating-evidence-3d9e</guid>
      <description>&lt;p&gt;Agency theory matters because people and systems do what incentives make easy.&lt;/p&gt;

&lt;p&gt;If the buyer wants quality but the delivery model rewards hours, bodies, or volume, the math is already broken.&lt;/p&gt;

&lt;p&gt;TeamStation uses the page to explain why incentives have to be engineered into the operating model. For CTOs and CIOs, the practical question is whether the team is aligned to outcomes, evidence, and ownership, or just activity.&lt;/p&gt;

&lt;p&gt;LATAM teams can be a strong operating layer when incentives are clean, because the model is built around delivery behavior, not vendor theater.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://engineering.teamstation.dev/decisions/agency-theory-economics/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/decisions/agency-theory-economics/&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  EngineeringEconomics #EngineeringLeadership #AIEngineering #EngineeringTelemetry #TeamStationAI
&lt;/h1&gt;

&lt;p&gt;Related TeamStation sources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/managed-nearshore-engineering-workflow" rel="noopener noreferrer"&gt;Engineering Execution Pipeline&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/cto" rel="noopener noreferrer"&gt;CTO Nearshore Strategy Control Center&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/case-studies/global-ooh-advertising-platform" rel="noopener noreferrer"&gt;Global OOH Advertising Platform Case Study&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/pricing" rel="noopener noreferrer"&gt;Nearshore Engineering Pricing and TCO&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub topic map:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/engineering-telemetry.md" rel="noopener noreferrer"&gt;Engineering Telemetry&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/delivery-risk.md" rel="noopener noreferrer"&gt;Delivery Risk&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/ai-engineering.md" rel="noopener noreferrer"&gt;AI Engineering&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/engineering-notes/index.md" rel="noopener noreferrer"&gt;Engineering notes index&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Source asset:&lt;br&gt;
&lt;a href="https://engineering.teamstation.dev/decisions/agency-theory-economics/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/decisions/agency-theory-economics/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>engineeringeconomics</category>
      <category>engineeringleadership</category>
      <category>aiengineering</category>
      <category>engineeringtelemetry</category>
    </item>
    <item>
      <title>Mutation Testing for AI-Generated Code</title>
      <dc:creator>Lonnie McRorey</dc:creator>
      <pubDate>Mon, 10 Aug 2026 15:31:20 +0000</pubDate>
      <link>https://dev.to/lonnie_mcrorey/mutation-testing-for-ai-generated-code-3oi5</link>
      <guid>https://dev.to/lonnie_mcrorey/mutation-testing-for-ai-generated-code-3oi5</guid>
      <description>&lt;p&gt;A green build can still be blind.&lt;/p&gt;

&lt;p&gt;Line coverage tells us which code ran. Mutation testing changes the code on purpose, then asks whether the tests catch the wrong behavior. Flip &lt;code&gt;&amp;gt;=&lt;/code&gt; to &lt;code&gt;&amp;gt;&lt;/code&gt;, remove a guard, or break a fallback. If the suite fails, the mutant is killed. If it stays green, the mutant survived and the evidence is weak.&lt;/p&gt;

&lt;p&gt;The operating math is simple: &lt;code&gt;MS = K / (T - E)&lt;/code&gt;. K is killed mutants, T is total mutants, and E is the equivalent mutants removed from the useful count. The score is not magic, but it forces the test suite to fight a controlled defect instead of collecting another green badge.&lt;/p&gt;

&lt;p&gt;That matters more now bc AI can generate the function and the test from the same assumption. Clean code plus clean tests can still share the same mistake. We need an adversary inside the harness, then a human who owns the release.&lt;/p&gt;

&lt;p&gt;For distributed LATAM teams, the evidence also travels well. The report shows which behavior changed, whether the suite caught it, who reviewed the survivor, and what exception was accepted. That is stronger than saying the tests seem good across an async handoff.&lt;/p&gt;

&lt;p&gt;I built the field guide to connect TeamStation's mutation-score doctrine with AI-generated code, QA work samples, CI telemetry, and human release control:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://teamstation.dev/research/articles/mutation-testing-ai-generated-code" rel="noopener noreferrer"&gt;https://teamstation.dev/research/articles/mutation-testing-ai-generated-code&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  MutationTesting #AIEngineering #SoftwareQuality #EngineeringTelemetry #TeamStationAI
&lt;/h1&gt;

&lt;p&gt;Related TeamStation sources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/quality/blameless-quality-protocols/" rel="noopener noreferrer"&gt;Blameless Quality Protocols&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/hire/by-role/qa-automation-engineer" rel="noopener noreferrer"&gt;QA Automation Engineers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/axiom-cortex-engineer-vetting" rel="noopener noreferrer"&gt;Axiom Cortex Engineer Vetting&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/nearshore-engineering-performance-metrics" rel="noopener noreferrer"&gt;Nearshore Engineering Performance Metrics&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub topic map:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/ai-engineering.md" rel="noopener noreferrer"&gt;AI Engineering&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/engineering-telemetry.md" rel="noopener noreferrer"&gt;Engineering Telemetry&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/engineering-governance.md" rel="noopener noreferrer"&gt;Engineering Governance&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/engineering-notes/index.md" rel="noopener noreferrer"&gt;Engineering notes index&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Source asset:&lt;br&gt;
&lt;a href="https://teamstation.dev/research/articles/mutation-testing-ai-generated-code" rel="noopener noreferrer"&gt;https://teamstation.dev/research/articles/mutation-testing-ai-generated-code&lt;/a&gt;&lt;/p&gt;

</description>
      <category>mutationtesting</category>
      <category>aiengineering</category>
      <category>testing</category>
      <category>codequality</category>
    </item>
    <item>
      <title>Cognitive Fidelity as engineering operating evidence</title>
      <dc:creator>Lonnie McRorey</dc:creator>
      <pubDate>Sun, 09 Aug 2026 16:04:07 +0000</pubDate>
      <link>https://dev.to/lonnie_mcrorey/cognitive-fidelity-as-engineering-operating-evidence-p74</link>
      <guid>https://dev.to/lonnie_mcrorey/cognitive-fidelity-as-engineering-operating-evidence-p74</guid>
      <description>&lt;p&gt;Production errors often start as map errors: the engineer holds one picture of the system while the real dependencies, limits, and failure paths live somewhere else.&lt;/p&gt;

&lt;p&gt;Here is the simple test. Move one constraint, make the database read-only, cut the latency budget, or remove an integration, then ask what changes next and why.&lt;/p&gt;

&lt;p&gt;If the reasoning survives under pressure, the engineer probably understands the mechanism; if the answer collapses, the first response may have been pattern recall dressed up as judgment.&lt;/p&gt;

&lt;p&gt;Cognitive fidelity is the match between the mental map and the live system state, and TeamStation maps that operating evidence across architectural instinct, problem-solving agility, learning orientation, and collaborative mindset. Inside Axiom Cortex and our Distributed Engineering Operating System, those signals matter more than a polished answer bc production keeps changing the shape of the problem.&lt;/p&gt;

&lt;p&gt;For distributed LATAM AI teams, async work gives a bad assumption more time to travel, so we test the map before that assumption becomes code, review debt, or an incident.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://engineering.teamstation.dev/quality/cognitive-fidelity/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/quality/cognitive-fidelity/&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  CognitiveFidelity #EngineerVetting #AIEngineering #AxiomCortex #TeamStationAI
&lt;/h1&gt;

&lt;p&gt;Related TeamStation sources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/quality/turing-trap/" rel="noopener noreferrer"&gt;The Turing Trap&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/quality/mathematical-validation/" rel="noopener noreferrer"&gt;Mathematical Validation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/axiom-cortex-engineer-vetting" rel="noopener noreferrer"&gt;Axiom Cortex Engineer Vetting&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/neuro-psychometric-vetting-for-nearshore-engineers" rel="noopener noreferrer"&gt;Neuro-Psychometric Vetting for Nearshore Engineers&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub topic map:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/ai-engineering.md" rel="noopener noreferrer"&gt;AI Engineering&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/engineering-governance.md" rel="noopener noreferrer"&gt;Engineering Governance&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/team-topology.md" rel="noopener noreferrer"&gt;Team Topology&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/engineering-notes/index.md" rel="noopener noreferrer"&gt;Engineering notes index&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Source asset:&lt;br&gt;
&lt;a href="https://engineering.teamstation.dev/quality/cognitive-fidelity/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/quality/cognitive-fidelity/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cognitivefidelity</category>
      <category>engineervetting</category>
      <category>aiengineering</category>
      <category>axiomcortex</category>
    </item>
    <item>
      <title>Semantic Decision Kinetics as engineering operating evidence</title>
      <dc:creator>Lonnie McRorey</dc:creator>
      <pubDate>Sat, 08 Aug 2026 15:19:14 +0000</pubDate>
      <link>https://dev.to/lonnie_mcrorey/semantic-decision-kinetics-as-engineering-operating-evidence-5fpn</link>
      <guid>https://dev.to/lonnie_mcrorey/semantic-decision-kinetics-as-engineering-operating-evidence-5fpn</guid>
      <description>&lt;p&gt;Meaning has distance, and a clean answer can still sit far away from the truth of the system.&lt;/p&gt;

&lt;p&gt;Picture two piles: one is what the engineer said, and the other is the correct explanation of the database lock, model pipeline, or production failure. Optimal transport asks how much work it takes to move the first pile into the second; different words with the same meaning need little movement, while a polished wrong answer needs a lot.&lt;/p&gt;

&lt;p&gt;That creates a better vetting question: how far is the reasoning from the real mechanism, and how sure should the model be? Thin evidence must mean low confidence and a wider human review gate because clean output is not proof.&lt;/p&gt;

&lt;p&gt;TeamStation's Semantic Decision Kinetics source connects that math inside the Axiom Cortex evaluation path: Wasserstein distance for semantic alignment, nonparametric latent measurement for uneven skill, and calibration checks for model confidence. The method sits inside the evidence layer of our Distributed Engineering Operating System, where a score has to carry a reason and a human owner.&lt;/p&gt;

&lt;p&gt;For distributed LATAM AI teams, English style can change while technical meaning stays stable, so meaning, reasoning, and confidence need separate evidence before an engineer touches production.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://engineering.teamstation.dev/decisions/semantic-decision-kinetics/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/decisions/semantic-decision-kinetics/&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  AIEvaluation #EngineerVetting #DecisionScience #AxiomCortex #TeamStationAI
&lt;/h1&gt;

&lt;p&gt;Related TeamStation sources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/decisions/vector-space-axioms/" rel="noopener noreferrer"&gt;Vector Space Axioms&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/decisions/zero-trust-scoring/" rel="noopener noreferrer"&gt;Zero Trust Scoring&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/quality/mathematical-validation/" rel="noopener noreferrer"&gt;Mathematical Validation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/axiom-cortex-engineer-vetting" rel="noopener noreferrer"&gt;Axiom Cortex Engineer Vetting&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub topic map:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/ai-engineering.md" rel="noopener noreferrer"&gt;AI Engineering&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/engineering-governance.md" rel="noopener noreferrer"&gt;Engineering Governance&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/team-topology.md" rel="noopener noreferrer"&gt;Team Topology&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/engineering-notes/index.md" rel="noopener noreferrer"&gt;Engineering notes index&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Source asset:&lt;br&gt;
&lt;a href="https://engineering.teamstation.dev/decisions/semantic-decision-kinetics/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/decisions/semantic-decision-kinetics/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aievaluation</category>
      <category>engineervetting</category>
      <category>decisionscience</category>
      <category>axiomcortex</category>
    </item>
    <item>
      <title>Vector Space Axioms as engineering operating evidence</title>
      <dc:creator>Lonnie McRorey</dc:creator>
      <pubDate>Fri, 07 Aug 2026 15:19:14 +0000</pubDate>
      <link>https://dev.to/lonnie_mcrorey/vector-space-axioms-as-engineering-operating-evidence-2ih9</link>
      <guid>https://dev.to/lonnie_mcrorey/vector-space-axioms-as-engineering-operating-evidence-2ih9</guid>
      <description>&lt;p&gt;Keyword matching can get two engineer decisions wrong in opposite directions.&lt;/p&gt;

&lt;p&gt;A profile can say "no Java experience" and still trigger a Java match, while another engineer can show deep Spring Boot work, leave out the word Java, and get missed. Same filter, two bad reads.&lt;/p&gt;

&lt;p&gt;Vector Space Axioms shows the math under TeamStation's engineer-vetting operating system. Skills and concepts become coordinates, related ideas sit close even when the words change, and every interview answer stays in its own evidence unit before the final synthesis.&lt;/p&gt;

&lt;p&gt;That matters when US teams vet AI engineers across LATAM bc a model can scale a weak match as fast as a good one. Semantic distance catches context, per-answer evidence limits halo effects, and human review still owns the call.&lt;/p&gt;

&lt;p&gt;The source maps the full path from keyword failure to calibrated evidence:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://engineering.teamstation.dev/decisions/vector-space-axioms/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/decisions/vector-space-axioms/&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  AIEngineering #EngineerVetting #EngineeringTelemetry #TeamStationAI
&lt;/h1&gt;

&lt;p&gt;Related TeamStation sources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/decisions/axiom-cortex-engine/" rel="noopener noreferrer"&gt;Axiom Cortex Engine&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/decisions/semantic-decision-kinetics/" rel="noopener noreferrer"&gt;Semantic Decision Kinetics&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/quality/cognitive-fidelity/" rel="noopener noreferrer"&gt;Cognitive Fidelity&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/axiom-cortex-engineer-vetting" rel="noopener noreferrer"&gt;Axiom Cortex Engineer Vetting&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub topic map:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/ai-engineering.md" rel="noopener noreferrer"&gt;AI Engineering&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/engineering-governance.md" rel="noopener noreferrer"&gt;Engineering Governance&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/team-topology.md" rel="noopener noreferrer"&gt;Team Topology&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/engineering-notes/index.md" rel="noopener noreferrer"&gt;Engineering notes index&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Source asset:&lt;br&gt;
&lt;a href="https://engineering.teamstation.dev/decisions/vector-space-axioms/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/decisions/vector-space-axioms/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aiengineering</category>
      <category>engineervetting</category>
      <category>engineeringtelemetry</category>
      <category>teamstationai</category>
    </item>
    <item>
      <title>Decisions as engineering operating evidence</title>
      <dc:creator>Lonnie McRorey</dc:creator>
      <pubDate>Thu, 06 Aug 2026 17:47:22 +0000</pubDate>
      <link>https://dev.to/lonnie_mcrorey/decisions-as-engineering-operating-evidence-2bn8</link>
      <guid>https://dev.to/lonnie_mcrorey/decisions-as-engineering-operating-evidence-2bn8</guid>
      <description>&lt;p&gt;A polished resume used to cost real time. Now AI can make one in minutes, so two engineers can read as identical on paper while the thinking underneath is miles apart. Same wrapper, very different engine.&lt;/p&gt;

&lt;p&gt;That changes the hiring problem. Keywords are labels, not proof, bc &lt;code&gt;Java AND AWS&lt;/code&gt; can find words but it cannot show how a person breaks down a hard system, changes direction when an idea fails, or explains a decision under pressure.&lt;/p&gt;

&lt;p&gt;Inside TeamStation's distributed engineering operating system, we treat that gap like signal processing. The Decisions doctrine lays out the public model: isolate small evaluation units, map meaning in vector space, measure the traits hidden under the words, then choose the next question by how much uncertainty it can remove. In basic English, stop rewarding the best wrapper and test the thinking inside it.&lt;/p&gt;

&lt;p&gt;For distributed AI engineering teams in LATAM, geography comes after the signal. The full Decisions pillar shows the math and evaluation logic behind that order:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://engineering.teamstation.dev/decisions/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/decisions/&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  AIEngineering #DecisionScience #EngineeringLeadership #TalentIntelligence #TeamStationAI
&lt;/h1&gt;

&lt;p&gt;Related TeamStation sources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/research/articles/how-fast-can-they-find-the-root-cause" rel="noopener noreferrer"&gt;How fast can they find the root cause?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/cto" rel="noopener noreferrer"&gt;CTO Nearshore Strategy Control Center&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/managed-nearshore-engineering-workflow" rel="noopener noreferrer"&gt;Engineering Execution Pipeline&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/about-teamstation-ai" rel="noopener noreferrer"&gt;About TeamStation AI Operating System&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub topic map:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/engineering-telemetry.md" rel="noopener noreferrer"&gt;Engineering Telemetry&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/delivery-risk.md" rel="noopener noreferrer"&gt;Delivery Risk&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/ai-engineering.md" rel="noopener noreferrer"&gt;AI Engineering&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/engineering-notes/index.md" rel="noopener noreferrer"&gt;Engineering notes index&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Source asset:&lt;br&gt;
&lt;a href="https://engineering.teamstation.dev/decisions/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/decisions/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aiengineering</category>
      <category>decisionscience</category>
      <category>engineeringleadership</category>
      <category>talentintelligence</category>
    </item>
    <item>
      <title>WIP Regulation as engineering operating evidence</title>
      <dc:creator>Lonnie McRorey</dc:creator>
      <pubDate>Wed, 05 Aug 2026 15:14:22 +0000</pubDate>
      <link>https://dev.to/lonnie_mcrorey/wip-regulation-as-engineering-operating-evidence-43f9</link>
      <guid>https://dev.to/lonnie_mcrorey/wip-regulation-as-engineering-operating-evidence-43f9</guid>
      <description>&lt;p&gt;Three open tickets looks like flexibility, but in the math, it is inventory sitting inside the system.&lt;/p&gt;

&lt;p&gt;Here's what I'm seeing: AI lets a team start work at breakneck speed, but arrival rate is not throughput. Little's Law is blunt, L = lambda W. Add more work to the system without increasing the finish rate and time in the system grows. Thats why TeamStation's WIP regulation uses a hard Rule of Two, not a polite guideline.&lt;/p&gt;

&lt;p&gt;One engineer carries no more than two items across progress, review, or staging. If both are blocked, the engineer swarms the blockage by reviewing code, fixing the build, or clarifying the spec instead of pulling a third ticket and burying congestion under fresh output.&lt;/p&gt;

&lt;p&gt;The other control is just as important: done means deployed, and a ticket closes only after telemetry shows the feature active in production. Now ownership has a signal trail instead of an opinion.&lt;/p&gt;

&lt;p&gt;The doctrine page gives the exact operating constraints: Rule of Two, 24 hour integration, the deployment clause, and async channel policy.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://engineering.teamstation.dev/work/wip-regulation/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/work/wip-regulation/&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  FlowMetrics #EngineeringTelemetry #AIEngineering #SoftwareDelivery #TeamStationAI
&lt;/h1&gt;

&lt;p&gt;Related TeamStation sources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/work/" rel="noopener noreferrer"&gt;Work Flow Doctrine&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/work/code-inventory-axioms/" rel="noopener noreferrer"&gt;Code Inventory Axioms&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/work/queueing-kinetics/" rel="noopener noreferrer"&gt;Queueing Kinetics&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/work/cost-of-delay-economics/" rel="noopener noreferrer"&gt;Cost of Delay Economics&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub topic map:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/engineering-telemetry.md" rel="noopener noreferrer"&gt;Engineering Telemetry&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/delivery-risk.md" rel="noopener noreferrer"&gt;Delivery Risk&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/ai-engineering.md" rel="noopener noreferrer"&gt;AI Engineering&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/engineering-notes/index.md" rel="noopener noreferrer"&gt;Engineering notes index&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Source asset:&lt;br&gt;
&lt;a href="https://engineering.teamstation.dev/work/wip-regulation/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/work/wip-regulation/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>flowmetrics</category>
      <category>engineeringtelemetry</category>
      <category>aiengineering</category>
      <category>softwaredelivery</category>
    </item>
    <item>
      <title>Cost Of Delay Economics as engineering operating evidence</title>
      <dc:creator>Lonnie McRorey</dc:creator>
      <pubDate>Tue, 04 Aug 2026 15:04:17 +0000</pubDate>
      <link>https://dev.to/lonnie_mcrorey/cost-of-delay-economics-as-engineering-operating-evidence-1kg</link>
      <guid>https://dev.to/lonnie_mcrorey/cost-of-delay-economics-as-engineering-operating-evidence-1kg</guid>
      <description>&lt;p&gt;Cost of delay is where engineering stops being a task list and becomes business math.&lt;/p&gt;

&lt;p&gt;A late decision, a blocked review, or a weak dependency is not just inconvenience. It is lost option value, lost learning, and sometimes lost revenue.&lt;/p&gt;

&lt;p&gt;TeamStation uses the page to connect delivery behavior to economic consequence. For CTOs and CIOs, the page matters because AI speed means little if delay keeps hiding inside decisions and handoffs.&lt;/p&gt;

&lt;p&gt;Distributed LATAM delivery benefits when delay is visible, because distance stops being an excuse and becomes a measurable operating variable.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://engineering.teamstation.dev/work/cost-of-delay-economics/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/work/cost-of-delay-economics/&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  EngineeringEconomics #EngineeringTelemetry #AIEngineering #SoftwareDelivery #TeamStationAI
&lt;/h1&gt;

&lt;p&gt;Related TeamStation sources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/research/articles/when-does-fixing-ai-code-cost-more-than-writing-it" rel="noopener noreferrer"&gt;AI Code Repair Cost in Distributed Engineering&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/cto" rel="noopener noreferrer"&gt;CTO Nearshore Strategy Control Center&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/about-teamstation-ai" rel="noopener noreferrer"&gt;About TeamStation AI Operating System&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/nearshore-software-development-pricing" rel="noopener noreferrer"&gt;Nearshore Software Development Pricing&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub topic map:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/delivery-risk.md" rel="noopener noreferrer"&gt;Delivery Risk&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/engineering-notes/index.md" rel="noopener noreferrer"&gt;Engineering notes index&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Source asset:&lt;br&gt;
&lt;a href="https://engineering.teamstation.dev/work/cost-of-delay-economics/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/work/cost-of-delay-economics/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>engineeringeconomics</category>
      <category>engineeringtelemetry</category>
      <category>aiengineering</category>
      <category>softwaredelivery</category>
    </item>
    <item>
      <title>Queueing Kinetics as engineering operating evidence</title>
      <dc:creator>Lonnie McRorey</dc:creator>
      <pubDate>Mon, 03 Aug 2026 15:13:40 +0000</pubDate>
      <link>https://dev.to/lonnie_mcrorey/queueing-kinetics-as-engineering-operating-evidence-1o79</link>
      <guid>https://dev.to/lonnie_mcrorey/queueing-kinetics-as-engineering-operating-evidence-1o79</guid>
      <description>&lt;p&gt;Three dependencies can turn a small delay into a coin flip, and the math gets ugly fast.&lt;/p&gt;

&lt;p&gt;Say an engineer needs an API spec, a design review, and a green CI run. If each one has a 20% chance of being late, the probability of that engineer being blocked is 48.8%, not 20%. That is almost half the probability surface before anyone writes code.&lt;/p&gt;

&lt;p&gt;Queue math exposes the part ppl miss: software work is rough too. A two hour fix sits beside a two week rewrite, so the average lies and high variance has to land somewhere, either as inventory in the queue or as delay in delivery. Then AI adds output faster than the bottleneck can clear it.&lt;/p&gt;

&lt;p&gt;The Queueing Kinetics doctrine lays out the variance multiplier, dependency blocking, and the sync penalty behind that behavior. I use those mechanics inside TeamStation's engineering operating system to slice work into smaller chunks, reduce live dependencies, replace meetings with written contracts, and expose the queue before adding more agents.&lt;/p&gt;

&lt;p&gt;For distributed LATAM teams, overlap still matters, but clean contracts matter more. Miss one answer window and a tiny delay can round up to a full day, so we design the workflow around that physics and keep ownership visible in the telemetry.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://engineering.teamstation.dev/work/queueing-kinetics/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/work/queueing-kinetics/&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  QueueingTheory #EngineeringTelemetry #AIEngineering #SoftwareDelivery #TeamStationAI
&lt;/h1&gt;

&lt;p&gt;Related TeamStation sources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/research/articles/how-fast-can-they-find-the-root-cause" rel="noopener noreferrer"&gt;How fast can they find the root cause?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/cto" rel="noopener noreferrer"&gt;CTO Nearshore Strategy Control Center&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/managed-nearshore-engineering-workflow" rel="noopener noreferrer"&gt;Engineering Execution Pipeline&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/about-teamstation-ai" rel="noopener noreferrer"&gt;About TeamStation AI Operating System&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub topic map:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/engineering-telemetry.md" rel="noopener noreferrer"&gt;Engineering Telemetry&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/delivery-risk.md" rel="noopener noreferrer"&gt;Delivery Risk&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/ai-engineering.md" rel="noopener noreferrer"&gt;AI Engineering&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/engineering-notes/index.md" rel="noopener noreferrer"&gt;Engineering notes index&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Source asset:&lt;br&gt;
&lt;a href="https://engineering.teamstation.dev/work/queueing-kinetics/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/work/queueing-kinetics/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>queueingtheory</category>
      <category>engineeringtelemetry</category>
      <category>aiengineering</category>
      <category>softwaredelivery</category>
    </item>
    <item>
      <title>Work as engineering operating evidence</title>
      <dc:creator>Lonnie McRorey</dc:creator>
      <pubDate>Sun, 02 Aug 2026 15:16:25 +0000</pubDate>
      <link>https://dev.to/lonnie_mcrorey/work-as-engineering-operating-evidence-an5</link>
      <guid>https://dev.to/lonnie_mcrorey/work-as-engineering-operating-evidence-an5</guid>
      <description>&lt;p&gt;A busy engineering team can still be a traffic jam. More tickets enter, AI creates more code, review stays finite, and wait time starts eating the delivery plan.&lt;/p&gt;

&lt;p&gt;Queue math explains the mess. When arrival rate gets close to available capacity, small surprises create long delays. Old branches become inventory, context decays, and ppl start new work because finishing work is harder.&lt;/p&gt;

&lt;p&gt;Our Work doctrine puts queueing kinetics, Little's Law, code inventory, cost of delay, and WIP control on one map. I picked the pillar today bc it shows how those parts connect before we go deeper into each one.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://engineering.teamstation.dev/work/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/work/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Distributed LATAM delivery is where the model gets tested. Clean limits, visible queues, daily integration, and deployed proof keep async work from turning into silent backlog.&lt;/p&gt;

&lt;h1&gt;
  
  
  SoftwareDelivery #EngineeringTelemetry #AIEngineering #EngineeringLeadership #TeamStationAI
&lt;/h1&gt;

&lt;p&gt;Related TeamStation sources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/work/code-inventory-axioms/" rel="noopener noreferrer"&gt;Code Inventory Axioms&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/work/queueing-kinetics/" rel="noopener noreferrer"&gt;Queueing Kinetics&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/work/cost-of-delay-economics/" rel="noopener noreferrer"&gt;Cost of Delay Economics&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/work/wip-regulation/" rel="noopener noreferrer"&gt;WIP Regulation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub topic map:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/ai-engineering.md" rel="noopener noreferrer"&gt;AI Engineering&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/engineering-telemetry.md" rel="noopener noreferrer"&gt;Engineering Telemetry&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/delivery-risk.md" rel="noopener noreferrer"&gt;Delivery Risk&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/engineering-notes/index.md" rel="noopener noreferrer"&gt;Engineering notes index&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Source asset:&lt;br&gt;
&lt;a href="https://engineering.teamstation.dev/work/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/work/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>softwaredelivery</category>
      <category>engineeringtelemetry</category>
      <category>aiengineering</category>
      <category>engineeringleadership</category>
    </item>
    <item>
      <title>Mathematical Axioms as engineering operating evidence</title>
      <dc:creator>Lonnie McRorey</dc:creator>
      <pubDate>Sat, 01 Aug 2026 15:07:36 +0000</pubDate>
      <link>https://dev.to/lonnie_mcrorey/mathematical-axioms-as-engineering-operating-evidence-3mfh</link>
      <guid>https://dev.to/lonnie_mcrorey/mathematical-axioms-as-engineering-operating-evidence-3mfh</guid>
      <description>&lt;p&gt;One AI node can appear cheaper on its own and still make the whole engineering chain more expensive.&lt;/p&gt;

&lt;p&gt;Here is the math. When downstream automation makes success more likely even if an upstream person stops pushing, that person's effort becomes harder to see. The model calls that safety net zeta. As zeta moves closer to full success probability, the cost of keeping effort aligned rises fast.&lt;/p&gt;

&lt;p&gt;The local saving is only one term. TeamStation's Mathematical Axioms page also counts direct incentive cost and the indirect cost pushed onto every upstream owner. That is why AI placement is a team design decision, not a license count. The definitions, equations, and proof structure are here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://engineering.teamstation.dev/teams/mathematical-axioms/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/teams/mathematical-axioms/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In distributed LATAM delivery, the same rule follows work across architecture, build, QA, and deployment. Automation has to increase useful output without making ownership blurry.&lt;/p&gt;

&lt;h1&gt;
  
  
  AIEngineering #EngineeringGovernance #EngineeringTelemetry #TeamStationAI
&lt;/h1&gt;

&lt;p&gt;Related TeamStation sources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/teams/ai-incentive-structure/" rel="noopener noreferrer"&gt;AI Incentive Structure&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/teams/engineering-wage-economics/" rel="noopener noreferrer"&gt;Engineering Wage Economics&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/teams/replacement-kinetics/" rel="noopener noreferrer"&gt;Replacement Kinetics&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/teams/agentic-development-workflows/" rel="noopener noreferrer"&gt;Agentic Development Workflows&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub topic map:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/delivery-risk.md" rel="noopener noreferrer"&gt;Delivery Risk&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/team-topology.md" rel="noopener noreferrer"&gt;Team Topology&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/engineering-governance.md" rel="noopener noreferrer"&gt;Engineering Governance&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/engineering-notes/index.md" rel="noopener noreferrer"&gt;Engineering notes index&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Source asset:&lt;br&gt;
&lt;a href="https://engineering.teamstation.dev/teams/mathematical-axioms/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/teams/mathematical-axioms/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aiengineering</category>
      <category>engineeringgovernance</category>
      <category>engineeringtelemetry</category>
      <category>teamstationai</category>
    </item>
    <item>
      <title>Agentic Development Workflows as engineering operating evidence</title>
      <dc:creator>Lonnie McRorey</dc:creator>
      <pubDate>Fri, 31 Jul 2026 15:13:47 +0000</pubDate>
      <link>https://dev.to/lonnie_mcrorey/agentic-development-workflows-as-engineering-operating-evidence-1kp9</link>
      <guid>https://dev.to/lonnie_mcrorey/agentic-development-workflows-as-engineering-operating-evidence-1kp9</guid>
      <description>&lt;p&gt;So Hey, an agent with repo access is not a workflow; its a fast pair of hands inside a machine, and somebody still has to own the machine.&lt;/p&gt;

&lt;p&gt;I keep coming back to five checks: the intent entering the node, the tools the agent can touch, the human reviewing the change, the memory allowed to survive, and the telemetry returning after release. Thats where the data lives, and IMO, thats where the math of control either holds or falls apart.&lt;/p&gt;

&lt;p&gt;A clean demo can hide a dirty loop bc more prompts do not repair missing ownership; we need human nodes, bounded agent loops, explicit review, and evidence that travels back into architecture as proof, not vibes.&lt;/p&gt;

&lt;p&gt;TeamStation mapped the operating system here through Product, Architecture, Engineering, Quality, Deployment, and Observability, all connected as one topology where AI assists inside the workflow without pretending to own it.&lt;/p&gt;

&lt;p&gt;In LATAM delivery, we put the workflow on digital rails before speed enters the room, bc distributed teams expose weak context fast and the signal trail has to survive real handoffs, real review, and production pressure.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://engineering.teamstation.dev/teams/agentic-development-workflows/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/teams/agentic-development-workflows/&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  AgenticAI #AIEngineering #EngineeringTelemetry #SoftwareDelivery #TeamStationAI
&lt;/h1&gt;

&lt;p&gt;Related TeamStation sources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/agentic-ai-development-teams" rel="noopener noreferrer"&gt;Agentic AI Development Teams&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/engineering-team-topologies" rel="noopener noreferrer"&gt;Engineering Team Topologies&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://engineering.teamstation.dev/teams/managerial-directive/" rel="noopener noreferrer"&gt;Managerial Directive&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://teamstation.dev/nearshore-control-plane" rel="noopener noreferrer"&gt;Nearshore Control Plane&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub topic map:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/ai-engineering.md" rel="noopener noreferrer"&gt;AI Engineering&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/topics/team-topology.md" rel="noopener noreferrer"&gt;Team Topology&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/TeamStationAIAxiomVertex/teamstation-engineering-notes/blob/main/engineering-notes/index.md" rel="noopener noreferrer"&gt;Engineering notes index&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Source asset:&lt;br&gt;
&lt;a href="https://engineering.teamstation.dev/teams/agentic-development-workflows/" rel="noopener noreferrer"&gt;https://engineering.teamstation.dev/teams/agentic-development-workflows/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>agenticai</category>
      <category>aiengineering</category>
      <category>engineeringtelemetry</category>
      <category>softwaredelivery</category>
    </item>
  </channel>
</rss>
