<?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.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>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>
