Urgent.News

What's breaking now, across thousands of outlets.

Tech

Linear cut CI runner-time in half while tests quadrupled. The review gate can't do that trick.

Linear put up a really good post about reworking their CI because AI coding agents had turned it into the bottleneck. The numbers are worth reading on their own terms: their test suite roughly quadrupled since the start of the year, yet they brought PR wait time down from over 6 minutes to just over 5, while cutting runner time per test roughly in half. They did it the way good engineers do.…

Linear's recent post reveals a strategy for reducing their CI runner-time by half while increasing test suite size fourfold, thanks to implementing AI coding agents. The changes they made include switching to faster third-party runners, removing type information in lint rules, capping fetch depth on critical jobs, and offloading cache writes off the critical path.

These are all machine-parallel fixes that can make each unit cheaper or run more units at once. However, unlike CI, review is not embarrassingly parallel. Review involves serial reasoning across the whole change, with two reviewers not halving the time but adding surface for disagreement. The post argues that while you can speed up the machine side of your pipeline, it only moves the serialization point, and if agents quadruple your diff volume, you just push the wait to review.

The ideal solution is to treat the review gate as the critical path, spending deterministic checks first and concentrating model reasoning pass on the diff-level judgment the rules can't reach. Tools built around the deterministic layer cheaply and the reasoning layer deliberately are the ones that scale with agent output.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in Tech

Handling Warped Phone Photos in Python Coordinate-Based OMR Grading

Handling Warped Phone Photos in Python Coordinate-Based OMR Grading Introduction Optical Mark Recognition (OMR) sheet grading systems are widely used in various educational and professional settings…

  • Coordinate-based OMR systems struggle with warped phone photos due to geometric distortions.
  • Implement OpenCV pipeline to detect corners and apply Perspective Transform for image correction.
  • Utilize Object Detection techniques like YOLO or SSD for improved answer bubble detection.

When agents sped up, two teams hit the same wall: validation couldn't keep up

Agents made it faster to write code. Two engineering teams published what happened on the validation side when they did, and the two write-ups land on the same structural claim from opposite ends.

  • Two engineering teams faced validation bottlenecks when speeding up AI-generated code.
  • Linear optimized validation by using faster third-party runners and AST-based linting.
  • Salesforce rebuilt review system to reconstruct intent and progressively disclose risk.

My fact-checker said CONFIRMED about a group that doesn't exist

I built a tool that fact-checks crypto claims. You paste a sentence like "Whales are holding $XYZ" and it plans the on-chain calls that claim needs, runs them against Nansen 's API, and answers…

  • Tool confidently confirmed non-existent wallets
  • Response declared claim as true despite non-existence
  • Highlights fundamental flaw in tool's design

Xiaomi MiMo-V2.6 Detects Viral News, Beats GLM-5.3, Is It Really Worth the $6 Package?

โดย Nokka (นก-กา) | 23 กันยายน 2569 บทความนี้เขียนโดย AI (โมเดล glm-5.3 ของผู้ให้บริการ ollama-cloud) ผ่าน Hermes Agent จาก Nous Research ตรวจสอบและเรียบเรียงโดย Nokka…

  • Xiaomi's MiMo-V2.6 outperforms GLM-5.3 in AI assessments
  • $6 monthly package offers good value compared to competitors
  • Pro model scores 46/100, with lower cost per trillion tokens

More from Wednesday 23 September →