<?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: Can Bilmez</title>
    <description>The latest articles on DEV Community by Can Bilmez (@canblmz).</description>
    <link>https://dev.to/canblmz</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%2F3923907%2Fb5ea3f4d-43a8-45f7-9ec0-58c5beb59bc7.png</url>
      <title>DEV Community: Can Bilmez</title>
      <link>https://dev.to/canblmz</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/canblmz"/>
    <language>en</language>
    <item>
      <title>GitHub self-hosted runner brownouts start Monday. Here's how to find which runners will stop taking jobs</title>
      <dc:creator>Can Bilmez</dc:creator>
      <pubDate>Sat, 05 Sep 2026 10:35:37 +0000</pubDate>
      <link>https://dev.to/canblmz/github-self-hosted-runner-brownouts-start-monday-heres-how-to-find-which-runners-will-stop-taking-1k10</link>
      <guid>https://dev.to/canblmz/github-self-hosted-runner-brownouts-start-monday-heres-how-to-find-which-runners-will-stop-taking-1k10</guid>
      <description>&lt;p&gt;If you run self-hosted GitHub Actions runners, put this date in your calendar: &lt;strong&gt;September 25, 2026&lt;/strong&gt;. That's when GitHub permanently stops queuing jobs to runners on outdated versions. Before that, brownouts: &lt;strong&gt;Sep 7, 9, 11, 14, 16, 18&lt;/strong&gt; — on Config + Runtime days, outdated runners don't register &lt;em&gt;and don't execute jobs&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;The failure mode is quiet. Nothing in your workflow errors out. The runner log says &lt;code&gt;Runner version v2.xxx.0 is deprecated and cannot receive messages&lt;/code&gt; and every job targeting it sits in &lt;strong&gt;Queued&lt;/strong&gt;. If you use Actions Runner Controller, auto-update is disabled by design, so the image tag in your Helm values is effectively a scheduled outage with an unknown date.&lt;/p&gt;

&lt;h2&gt;
  
  
  What changed on September 3
&lt;/h2&gt;

&lt;p&gt;GitHub shipped an endpoint that returns the end-of-life date for any runner version:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;gh api orgs/&amp;lt;org&amp;gt;/actions/runners/deprecations/2.334.0
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"runner_version"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"2.334.0"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"runtime_deprecates_at"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"2026-08-10T00:00:00Z"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"registration_deprecates_at"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"..."&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Two things I learned running this against real versions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The documented rule is "30 days after release", but the API returns roughly &lt;strong&gt;63–71 days&lt;/strong&gt; for current versions. If you were computing this from release dates, your numbers are wrong in both directions.&lt;/li&gt;
&lt;li&gt;The runner list endpoint now includes each runner's &lt;code&gt;version&lt;/code&gt;, so you don't need an agent on the machines.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  One command for the whole fleet
&lt;/h2&gt;

&lt;p&gt;I wrapped the two endpoints in a small open-source &lt;code&gt;gh&lt;/code&gt; extension:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;gh extension &lt;span class="nb"&gt;install &lt;/span&gt;canblmz1/gh-runner-eol
gh runner-eol audit &amp;lt;org&amp;gt; &lt;span class="nt"&gt;--scan&lt;/span&gt; &lt;span class="nb"&gt;.&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;43 self-hosted runners · 3 versions · 4 pinned refs in .

  OVERDUE   18 runners   v2.334.0   runtime support ended 2026-08-10   26 days overdue
  WARNING   12 runners   v2.336.0   runtime support ends 2026-09-15   10 days left
  OK        13 runners   v2.337.0   no end-of-life scheduled

Pinned in source
  OVERDUE   Dockerfile:1           ghcr.io/actions/actions-runner:2.335.0   22 days overdue
  WARNING   deploy/values.yaml:5   ghcr.io/actions/actions-runner:2.336.0   10 days left
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;--scan&lt;/code&gt; is the part I care about most: it greps Dockerfiles, ARC Helm values, &lt;code&gt;RUNNER_VERSION=&lt;/code&gt; variables and download URLs for pinned versions, and resolves each one against the API. Those are the runners you &lt;em&gt;haven't&lt;/em&gt; scaled up yet — a live-runner dashboard can't see them.&lt;/p&gt;

&lt;p&gt;It also runs as a GitHub Action with SARIF output, so a pinned line shows up as a Code Scanning annotation in the PR that introduces it, and exits non-zero on &lt;code&gt;overdue&lt;/code&gt; so a weekly schedule can page you.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;canblmz1/gh-runner-eol@v0&lt;/span&gt;
  &lt;span class="na"&gt;with&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;target&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;my-org&lt;/span&gt;
    &lt;span class="na"&gt;token&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;${{ secrets.RUNNER_EOL_TOKEN }}&lt;/span&gt;
    &lt;span class="na"&gt;scan&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;.&lt;/span&gt;
    &lt;span class="na"&gt;format&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;sarif&lt;/span&gt;
&lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;github/codeql-action/upload-sarif@v4&lt;/span&gt;
  &lt;span class="na"&gt;with&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;sarif_file&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;runner-eol.sarif&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Gotchas
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;The workflow &lt;code&gt;GITHUB_TOKEN&lt;/code&gt; &lt;strong&gt;cannot&lt;/strong&gt; read self-hosted runners (403). Use a fine-grained PAT or GitHub App token with &lt;em&gt;Self-hosted runners: read&lt;/em&gt; (org) or &lt;em&gt;Administration: read&lt;/em&gt; (repo). Or run &lt;code&gt;mode: scan&lt;/code&gt; for source-only.&lt;/li&gt;
&lt;li&gt;It's read-only and deliberately does not upgrade or manage runners. ARC, GARM and friends do that; this only answers "what breaks, and when".&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Repo: &lt;a href="https://github.com/canblmz1/gh-runner-eol" rel="noopener noreferrer"&gt;https://github.com/canblmz1/gh-runner-eol&lt;/a&gt; (MIT). If it misses a pinned-version shape in your repo, there's an issue template for exactly that — a regex and a test is a 10-line PR.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;**&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;**&lt;/p&gt;

</description>
      <category>github</category>
      <category>cicd</category>
      <category>containers</category>
      <category>devops</category>
    </item>
    <item>
      <title>I Built Tautest: A Mutation Testing Workflow for AI-Written Tests</title>
      <dc:creator>Can Bilmez</dc:creator>
      <pubDate>Mon, 11 May 2026 00:13:59 +0000</pubDate>
      <link>https://dev.to/canblmz/i-built-tautest-a-mutation-testing-workflow-for-ai-written-tests-43l7</link>
      <guid>https://dev.to/canblmz/i-built-tautest-a-mutation-testing-workflow-for-ai-written-tests-43l7</guid>
      <description>&lt;p&gt;AI coding agents are getting really good at writing tests.&lt;/p&gt;

&lt;p&gt;But I kept running into one uncomfortable problem:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Passing tests do not always mean strong tests.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Sometimes an AI agent writes tests that pass, but those tests only confirm that the current implementation runs. They do not necessarily prove that the behavior is protected.&lt;/p&gt;

&lt;p&gt;That is why I built &lt;strong&gt;Tautest&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Tautest is an open-source CLI and GitHub Action that runs mutation testing on changed source lines, finds weak tests, and generates an AI-ready fix prompt for Claude Code, Cursor, Codex, or human reviewers.&lt;/p&gt;

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

&lt;p&gt;&lt;a href="https://github.com/canblmz1/tautest" rel="noopener noreferrer"&gt;https://github.com/canblmz1/tautest&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;npm package:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.npmjs.com/package/tautest" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/tautest&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;Let’s say your code has a condition like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;age&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;=&lt;/span&gt; &lt;span class="mi"&gt;65&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nx"&gt;subtotal&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mf"&gt;0.2&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Your normal tests might pass.&lt;/p&gt;

&lt;p&gt;But what if this condition is mutated to:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;age&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="mi"&gt;65&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nx"&gt;subtotal&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mf"&gt;0.2&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If your tests still pass, then the exact boundary at &lt;code&gt;65&lt;/code&gt; is not protected.&lt;/p&gt;

&lt;p&gt;That is a weak test.&lt;/p&gt;

&lt;p&gt;This is the kind of thing Tautest is designed to expose.&lt;/p&gt;




&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;Regular tests pass, but Tautest finds a surviving mutant that the tests missed. After adding the missing boundary test, the mutation score improves to 100%.&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%2Fraw.githubusercontent.com%2Fcanblmz1%2Ftautest%2Fmain%2Fassets%2Ftautest-demo.gif" 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%2Fraw.githubusercontent.com%2Fcanblmz1%2Ftautest%2Fmain%2Fassets%2Ftautest-demo.gif" alt="Tautest demo" width="" height=""&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  What Tautest does
&lt;/h2&gt;

&lt;p&gt;Tautest is not a mutation testing engine.&lt;/p&gt;

&lt;p&gt;It uses &lt;strong&gt;StrykerJS&lt;/strong&gt; as the mutation testing engine and adds a workflow layer around it.&lt;/p&gt;

&lt;p&gt;Tautest:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;reads changed source lines from &lt;code&gt;git diff&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;runs StrykerJS mutation testing only on those changed lines&lt;/li&gt;
&lt;li&gt;parses surviving mutants&lt;/li&gt;
&lt;li&gt;generates Markdown, JSON, and terminal reports&lt;/li&gt;
&lt;li&gt;writes an AI-ready fix prompt&lt;/li&gt;
&lt;li&gt;can post a sticky GitHub PR comment&lt;/li&gt;
&lt;li&gt;supports Vitest&lt;/li&gt;
&lt;li&gt;has Jest beta support&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is simple:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Do not just ask whether the tests pass. Ask whether the tests fail when the behavior is mutated.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Example output
&lt;/h2&gt;

&lt;p&gt;A regular test run can be green:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Test Files  1 passed
Tests       3 passed
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;But Tautest can still find a surviving mutant:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Tautest: MIXED (75.00%, threshold 60.00%)
Killed: 3 | Survived: 1 | No coverage: 0

Top surviving mutants:
- src/discount.ts:2 EqualityOperator
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The surviving mutant:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;age &amp;gt;= 65  -&amp;gt;  age &amp;gt; 65
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After adding the missing boundary test:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="nf"&gt;it&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;applies the senior discount at exactly 65&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nf"&gt;expect&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;calculateDiscount&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;65&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;80&lt;/span&gt;&lt;span class="p"&gt;)).&lt;/span&gt;&lt;span class="nf"&gt;toBe&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;16&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Tautest reports:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Tautest: STRONG (100.00%, threshold 60.00%)
Killed: 4 | Survived: 0
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  The AI fix prompt workflow
&lt;/h2&gt;

&lt;p&gt;One thing I wanted Tautest to do was help AI coding agents write better tests without letting them rewrite production code.&lt;/p&gt;

&lt;p&gt;So Tautest generates a file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.tautest/fix-prompt.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The prompt includes rules like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;do not change production code&lt;/li&gt;
&lt;li&gt;only edit or add test files&lt;/li&gt;
&lt;li&gt;every new test must pass against the original code&lt;/li&gt;
&lt;li&gt;every new test must fail against the mutant behavior&lt;/li&gt;
&lt;li&gt;do not weaken existing assertions&lt;/li&gt;
&lt;li&gt;do not write filler tests like &lt;code&gt;expect(true).toBe(true)&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The workflow becomes:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Run Tautest.&lt;/li&gt;
&lt;li&gt;Open &lt;code&gt;.tautest/fix-prompt.md&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Paste it into Claude Code, Cursor, Codex, or use it yourself.&lt;/li&gt;
&lt;li&gt;Add the missing test.&lt;/li&gt;
&lt;li&gt;Run your normal tests.&lt;/li&gt;
&lt;li&gt;Run Tautest again.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  Install
&lt;/h2&gt;

&lt;p&gt;For Vitest projects:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pnpm add &lt;span class="nt"&gt;-D&lt;/span&gt; tautest @stryker-mutator/core @stryker-mutator/vitest-runner
pnpm &lt;span class="nb"&gt;exec &lt;/span&gt;tautest init &lt;span class="nt"&gt;--yes&lt;/span&gt; &lt;span class="nt"&gt;--runner&lt;/span&gt; vitest &lt;span class="nt"&gt;--no-install&lt;/span&gt;
pnpm &lt;span class="nb"&gt;exec &lt;/span&gt;tautest doctor
pnpm &lt;span class="nb"&gt;exec &lt;/span&gt;tautest run &lt;span class="nt"&gt;--base&lt;/span&gt; origin/main
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For Jest projects, Jest support is currently beta:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pnpm add &lt;span class="nt"&gt;-D&lt;/span&gt; tautest @stryker-mutator/core @stryker-mutator/jest-runner
pnpm &lt;span class="nb"&gt;exec &lt;/span&gt;tautest init &lt;span class="nt"&gt;--yes&lt;/span&gt; &lt;span class="nt"&gt;--runner&lt;/span&gt; jest &lt;span class="nt"&gt;--no-install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  GitHub Action usage
&lt;/h2&gt;

&lt;p&gt;Tautest also ships with a GitHub Action that can run on pull requests and post a sticky PR comment.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Tautest&lt;/span&gt;

&lt;span class="na"&gt;on&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;pull_request&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;

&lt;span class="na"&gt;permissions&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;contents&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;read&lt;/span&gt;
  &lt;span class="na"&gt;pull-requests&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;write&lt;/span&gt;

&lt;span class="na"&gt;jobs&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;tautest&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;runs-on&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;ubuntu-latest&lt;/span&gt;
    &lt;span class="na"&gt;steps&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;actions/checkout@v4&lt;/span&gt;
        &lt;span class="na"&gt;with&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
          &lt;span class="na"&gt;fetch-depth&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt;

      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;actions/setup-node@v4&lt;/span&gt;
        &lt;span class="na"&gt;with&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
          &lt;span class="na"&gt;node-version&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="m"&gt;20&lt;/span&gt;

      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;pnpm/action-setup@v4&lt;/span&gt;
        &lt;span class="na"&gt;with&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
          &lt;span class="na"&gt;version&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="m"&gt;10&lt;/span&gt;

      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;run&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;pnpm install --frozen-lockfile&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;run&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;pnpm build&lt;/span&gt;

      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;canblmz1/tautest/packages/github-action@v1&lt;/span&gt;
        &lt;span class="na"&gt;with&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
          &lt;span class="na"&gt;base&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;${{ github.base_ref }}&lt;/span&gt;
          &lt;span class="na"&gt;threshold&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="m"&gt;60&lt;/span&gt;
          &lt;span class="na"&gt;comment&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;changes&lt;/span&gt;
          &lt;span class="na"&gt;cache&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Important notes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;fetch-depth: 0&lt;/code&gt; is required because Tautest needs git history.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;pull-requests: write&lt;/code&gt; is required for sticky PR comments.&lt;/li&gt;
&lt;li&gt;The v1 action currently ships from the monorepo path.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  What Tautest does not do
&lt;/h2&gt;

&lt;p&gt;Tautest is intentionally limited.&lt;/p&gt;

&lt;p&gt;It does not:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;implement its own mutation engine&lt;/li&gt;
&lt;li&gt;replace StrykerJS&lt;/li&gt;
&lt;li&gt;call any LLM API&lt;/li&gt;
&lt;li&gt;prove that your tests are perfect&lt;/li&gt;
&lt;li&gt;fully support monorepos in v1&lt;/li&gt;
&lt;li&gt;classify AI-written tests with certainty&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is a deterministic workflow:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;changed source lines -&amp;gt; mutation testing -&amp;gt; surviving mutants -&amp;gt; report -&amp;gt; fix prompt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Why I built it
&lt;/h2&gt;

&lt;p&gt;AI coding agents are useful, but I do not want to blindly trust generated tests.&lt;/p&gt;

&lt;p&gt;I wanted a workflow where an AI agent can write or improve tests, but a deterministic tool checks whether those tests actually protect behavior.&lt;/p&gt;

&lt;p&gt;That is the main idea behind Tautest.&lt;/p&gt;

&lt;p&gt;It is not:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;AI wrote tests, so trust them.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It is:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;AI wrote tests, now mutate the changed code and see whether those tests actually fail.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Current status
&lt;/h2&gt;

&lt;p&gt;Tautest v1.0.0 is published.&lt;/p&gt;

&lt;p&gt;Validated before v1:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;tautest@1.0.0&lt;/code&gt; published&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;@tautest/core@1.0.0&lt;/code&gt; published&lt;/li&gt;
&lt;li&gt;Release Readiness workflow passed&lt;/li&gt;
&lt;li&gt;source-changing PR smoke passed&lt;/li&gt;
&lt;li&gt;mutation run completed in GitHub Actions&lt;/li&gt;
&lt;li&gt;JSON output parsed&lt;/li&gt;
&lt;li&gt;sticky PR comment create and update verified&lt;/li&gt;
&lt;li&gt;artifact upload verified&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Roadmap
&lt;/h2&gt;

&lt;p&gt;Some things I want to improve next:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Node 24 GitHub Action runtime migration&lt;/li&gt;
&lt;li&gt;better cache observability&lt;/li&gt;
&lt;li&gt;monorepo beta support&lt;/li&gt;
&lt;li&gt;standalone GitHub Action repo&lt;/li&gt;
&lt;li&gt;PR line annotations&lt;/li&gt;
&lt;li&gt;more Jest fixtures&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

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

&lt;p&gt;&lt;a href="https://github.com/canblmz1/tautest" rel="noopener noreferrer"&gt;https://github.com/canblmz1/tautest&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;npm:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.npmjs.com/package/tautest" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/tautest&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Core package:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.npmjs.com/package/@tautest/core" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/@tautest/core&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;I would love feedback on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;whether the README and demo explain the idea clearly&lt;/li&gt;
&lt;li&gt;whether the GitHub Action workflow makes sense&lt;/li&gt;
&lt;li&gt;whether the AI fix prompt workflow is useful&lt;/li&gt;
&lt;li&gt;whether this should stay JS and TS focused for now&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>testing</category>
      <category>opensource</category>
      <category>ai</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
