<?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: Marat Kee</title>
    <description>The latest articles on DEV Community by Marat Kee (@marat_kiniabulatov_8432bd).</description>
    <link>https://dev.to/marat_kiniabulatov_8432bd</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%2F3843608%2Ff51513ae-ff97-4bc1-8bda-e1d6257d0834.jpg</url>
      <title>DEV Community: Marat Kee</title>
      <link>https://dev.to/marat_kiniabulatov_8432bd</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/marat_kiniabulatov_8432bd"/>
    <language>en</language>
    <item>
      <title>AI-native tiny teams: is it viable or just pure hype?</title>
      <dc:creator>Marat Kee</dc:creator>
      <pubDate>Mon, 24 Aug 2026 19:06:56 +0000</pubDate>
      <link>https://dev.to/marat_kiniabulatov_8432bd/ai-native-tiny-teams-is-it-viable-or-just-pure-hype-15h8</link>
      <guid>https://dev.to/marat_kiniabulatov_8432bd/ai-native-tiny-teams-is-it-viable-or-just-pure-hype-15h8</guid>
      <description>&lt;p&gt;Throughout 2026, I have been hearing a familiar claim: AI-native tiny teams are the only way forward—the logical next step in how software gets built.&lt;/p&gt;

&lt;p&gt;Management presentations often reinforce it with the same argument: throughput is up. So we can supposedly deliver the same amount of work with fewer people. That must mean optimisation (he-he).&lt;/p&gt;

&lt;p&gt;Not so fast guys. I work with around 50 cross-functional teams in a large fintech environment, including teams responsible for critical core services. I have also tried to work with tiny teams—or at least to find a credible path for existing teams to become smaller without merely moving their workload, risk, and dependencies somewhere else.&lt;/p&gt;

&lt;p&gt;Here is what I have found.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Disclaimer: This is not a universal model or a controlled study. It is a practitioner’s view, shaped by work in regulated, operationally demanding systems. I draw heavily on Team Topologies and Value Stream Mapping: make cognitive load visible, reduce unnecessary handoffs, and look at the full flow of value rather than the productivity of one local team.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Most importantly, a team only counts as “smaller and more effective” if the systems it owns remain operable: observable, supportable, secure, recoverable, and safe to change.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI does accelerate the team locally. No evidence of e2e acceleration and prevalence of tiny teams though
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://pubsonline.informs.org/doi/full/10.1287/mnsc.2025.00535" rel="noopener noreferrer"&gt;A 2026 Management Science&lt;/a&gt; study found productivity gains from generative AI among developers. &lt;a href="https://circleci.com/blog/five-takeaways-2026-software-delivery-report/" rel="noopener noreferrer"&gt;CircleCI’s State of Software Delivery 2026&lt;/a&gt; reported 59% average year-over-year growth in daily CI/CD pipeline runs.&lt;/p&gt;

&lt;p&gt;But no studies whatsoever refer to increases being attributed to smaller team sizes. &lt;/p&gt;

&lt;p&gt;Moreover, productivity gains in feature branches != gains in master branches! In fact those declined 4%.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;More AI-assisted output does not prove that a smaller team is more effective.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;There's not enough evidence to treat tiny teams as the default target for every product area.&lt;/p&gt;

&lt;h2&gt;
  
  
  Four conditions decide whether a tiny team can work
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. The system is easy to change
&lt;/h3&gt;

&lt;p&gt;AI performs best where context is current and discoverable: a greenfield product, a well-isolated service, clear interfaces, and automated checks. Mature systems carry historical decisions, undocumented constraints, integrations, and old incidents. Agents can inspect what the code does today. People still need to understand why it works that way.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Critical knowledge is shared
&lt;/h3&gt;

&lt;p&gt;A three-person team becomes fragile when one person alone understands a critical integration, a regulatory rule, or the architecture. This is the bus-factor problem. Documentation and RAG help retrieve recorded knowledge; they cannot recover decisions that were never captured.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Failures are reversible
&lt;/h3&gt;

&lt;p&gt;A small team can experiment quickly when a mistake is cheap to detect and easy to roll back. In finance, healthcare, or critical infrastructure, changes may require independent security, risk, legal, or compliance review. If these people must join every week, they belong to the practical delivery system even when they are outside the team on the org chart.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. The supporting platform is strong
&lt;/h3&gt;

&lt;p&gt;“Three people built a product” often means: three people built a product on top of a platform created by dozens or hundreds before them. CI/CD, test environments, observability, access controls, developer tooling, and specialist support reduce the coordination load that each product team would otherwise carry.&lt;/p&gt;

&lt;h3&gt;
  
  
  Use two stress tests before shrinking a team
&lt;/h3&gt;

&lt;p&gt;One person disappears for a month. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What decisions stop completely? 
The answer exposes the real bus factor.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;AI doubles the flow of changes tomorrow. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Where does the next queue form: review, testing, security, release, or user validation?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The second test matters because AI changes where the constraint sits. Code may be written faster, then review becomes the bottleneck. Improve review, and the queue can move to QA, security review, a release window, or product validation.&lt;/p&gt;

&lt;p&gt;DORA calls this &lt;a href="https://dora.dev/insights/balancing-ai-tensions/" rel="noopener noreferrer"&gt;the verification tax&lt;/a&gt;: some of the time saved during generation shifts into verifying the AI-generated result. If the full path from idea to confirmed outcome barely changes, AI has accelerated one stage rather than delivery as a whole.&lt;/p&gt;

&lt;h2&gt;
  
  
  A better decision than “three people or ten?”
&lt;/h2&gt;

&lt;p&gt;Do not set a team-size target first. Score the four conditions above from 0 to 2:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;0 — barely constrains a tiny team;&lt;/li&gt;
&lt;li&gt;1 — a noticeable risk;&lt;/li&gt;
&lt;li&gt;2 — a serious constraint.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Run the conversation for ten minutes with the team during the retro. Then invest where the score reveals the constraint: documentation and shared ownership, test automation, platform capabilities, or faster access to specialised review.&lt;/p&gt;

&lt;p&gt;AI expands the range of viable team configurations. It makes the ingredients of team size more visible: domain complexity, risk, the perspectives required to make safe decisions, and the quality of the system around people.&lt;/p&gt;

&lt;p&gt;The question is what complexity people used to handle—and what has actually taken it over.&lt;/p&gt;

&lt;p&gt;This is a practical adaptation of the full article: &lt;a href="https://maratkee.com/posts/2026-08-24-ai-native-tiny-teams/" rel="noopener noreferrer"&gt;Tiny Teams With AI: What the Evidence Shows—and What It Still Doesn’t.&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>management</category>
      <category>software</category>
      <category>softwareengineering</category>
    </item>
    <item>
      <title>How AI is Shrinking the SDLC: in greenfield, brownfield, regulated industries</title>
      <dc:creator>Marat Kee</dc:creator>
      <pubDate>Wed, 01 Apr 2026 11:07:50 +0000</pubDate>
      <link>https://dev.to/marat_kiniabulatov_8432bd/how-ai-is-shrinking-the-sdlc-in-greenfield-brownfield-regulated-industries-542m</link>
      <guid>https://dev.to/marat_kiniabulatov_8432bd/how-ai-is-shrinking-the-sdlc-in-greenfield-brownfield-regulated-industries-542m</guid>
      <description>&lt;h1&gt;
  
  
  How AI is Shrinking the SDLC
&lt;/h1&gt;

&lt;p&gt;&lt;em&gt;I work with experimental AI-first teams, exploring how agentic engineering impacts Lead Time. Here's what I'm seeing.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;And unlike some people say, I think that SDLC is not killed by agents. I think it compresses into something more lightweight.&lt;/p&gt;

&lt;p&gt;One person with AI can generate what used to require a team. The bottleneck shifts from writing code to validating it.&lt;/p&gt;

&lt;p&gt;But this isn't uniform across all contexts. Greenfield, brownfield, and regulated environments each compress differently.&lt;/p&gt;




&lt;h2&gt;
  
  
  Scenario 1: Greenfield / MVP / Internal Tools
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Context:&lt;/strong&gt; New project, no users, low error cost, speed is critical.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What changes:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Tiered Code Review:&lt;/strong&gt; security-critical code (auth, crypto) — 100% human review; everything else — automated checks + spot-check&lt;/li&gt;
&lt;li&gt;Observability as primary safety net (canary releases, auto-rollback)&lt;/li&gt;
&lt;li&gt;Iterations are now significantly faster, to the point where customer gets updates during the demo&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fov5nikmoskt9su805eks.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fov5nikmoskt9su805eks.png" alt="How SDLC looks for Greenfield Project" width="800" height="211"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Important: even in greenfield, AI code contains &lt;a href="https://www.coderabbit.ai/blog/state-of-ai-vs-human-code-generation-report" rel="noopener noreferrer"&gt;1.7x more issues&lt;/a&gt;. Skipping review entirely is risky.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How to ensure we didn't make it worse:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Lead Time ≤ 1 day&lt;/li&gt;
&lt;li&gt;Deployment Frequency &amp;gt; 1/day&lt;/li&gt;
&lt;li&gt;Change Failure Rate within DORA "Good" threshold (0-15%)&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Scenario 2: Brownfield / Existing Product
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Context:&lt;/strong&gt; Real users, established reputation, existing technical debt. Errors cost money.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What changes:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;We need a &lt;strong&gt;tiered approach by risk&lt;/strong&gt;:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Code Type&lt;/th&gt;
&lt;th&gt;Human Review&lt;/th&gt;
&lt;th&gt;Examples&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Security-critical&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;100%&lt;/strong&gt; senior review&lt;/td&gt;
&lt;td&gt;Auth, payments, PII, crypto&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Business logic&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;30-40%&lt;/strong&gt; peer review&lt;/td&gt;
&lt;td&gt;Features, API, data flows&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Utility&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;Spot-check&lt;/strong&gt; + automated&lt;/td&gt;
&lt;td&gt;Tests, docs, configs&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Found interesting stats: Per &lt;a href="https://linearb.io/dev-interrupted/podcast/linearb-2026-benchmarks-ai-pr-merge-rate" rel="noopener noreferrer"&gt;LinearB 2026 Benchmarks&lt;/a&gt;, AI PRs merge at 32.7% vs 84.5% for human code — most require rework. Per my experience, we accept only 18% of 100% ai written PRs.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu6tpogs7g69h2bb46433.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu6tpogs7g69h2bb46433.png" alt="AI-native SDLC for Brownfield Project" width="800" height="180"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How to ensure we didn't make it worse:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Code Review Time doesn't grow (despite more PRs)&lt;/li&gt;
&lt;li&gt;Defect Rate stable or declining&lt;/li&gt;
&lt;li&gt;SLA/SLO maintained&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Scenario 3: Regulated Industries (Fintech, Healthcare, Insurance)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Context:&lt;/strong&gt; Compliance requires human accountability. Audit trail is mandatory.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What changes:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;100% audit trail&lt;/strong&gt; for all AI-generated code: &lt;a href="https://blog.pcisecuritystandards.org/ai-principles-securing-the-use-of-ai-in-payment-environments" rel="noopener noreferrer"&gt;who requested, what was generated, who approved&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;AI accelerates stages, but &lt;strong&gt;humans make decisions&lt;/strong&gt; — this is a regulatory requirement (FDA, PCI-DSS, HIPAA)&lt;/li&gt;
&lt;li&gt;Stages can merge, but the artefacts are still reqiured for audit&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvuhz0q95etdh8k6lo4mi.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvuhz0q95etdh8k6lo4mi.png" alt="SDLC with AI for regulated projects" width="798" height="138"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How to ensure we didn't make it worse:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Change Failure Rate doesn't increase&lt;/li&gt;
&lt;li&gt;Compliance review time gradually decreases&lt;/li&gt;
&lt;li&gt;Audit trail complete and verifiable&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  The Bottom Line
&lt;/h2&gt;

&lt;p&gt;There's no universal "new SDLC" with only agents and zero humans. Reality is a spectrum depending on project context.&lt;/p&gt;

&lt;p&gt;Besides the context, team and its culture dramatically influence whether AI makes it better or worse. It accelerates good practices and bad practices equally. Get your quality gate together and embrace the result.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>productivity</category>
      <category>discuss</category>
    </item>
  </channel>
</rss>
