惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
Vercel News
Vercel News
月光博客
月光博客
S
SegmentFault 最新的问题
A
About on SuperTechFans
Microsoft Security Blog
Microsoft Security Blog
U
Unit 42
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
N
Netflix TechBlog - Medium
小众软件
小众软件
WordPress大学
WordPress大学
G
Google Developers Blog
Recent Announcements
Recent Announcements
H
Hackread – Cybersecurity News, Data Breaches, AI and More
P
Proofpoint News Feed
Blog — PlanetScale
Blog — PlanetScale
MongoDB | Blog
MongoDB | Blog
F
Fortinet All Blogs
博客园 - 【当耐特】
I
InfoQ

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Harness Engineering — The Quality Pillar of Agentic Engin...
Jakob Steinmann · 2026-06-06 · via DEV Community

How to use deterministic tooling to hard-enforce code quality

In February 2026, OpenAI published an article about building a complete product without writing a single line of code by hand. An agent did all the work. They used the term harness engineering to describe the discipline around it.

TL;DR: humans steer, agents execute. The team did not write code anymore. Their job was to build the environment around the agent so it could work reliably.

The article groups this work into roughly four sections:

  • Context — the repository as the single source of truth
  • Observability — DevTools, logs, metrics
  • Feedback loops — basically a Ralph loop
  • Guardrails — the deterministic quality pillar

Let's focus the quality pillar

Software developers let agents write their code. But we still own it and we are still accountable for it.

Given this constraint, we need to trust the output. Before coding agents and even now this trust came from review. We read the code, added comments, made improvements. We were crafting code to establish trust.

With coding agents code creation becomes code generation. And generated code will always break at some point if it's not heavily audited during the generation phase. I strongly lean to using pre-commit hooks for this, as this gives a bunch of benefits:

  • The gate runs locally, in your teams workflow
  • The tooling is old and battle proven, the agent knows it well
  • Nothing broken reaches the branch
  • It lives in the repo, usable by everyone

Most of us already use pre-commit hooks. Usually one or two. A commit message linter for Conventional Commits, maybe a formatter. That is where it normally ends.

But here is the new thing: you can amass the tools, build a huge stack. In a human team, every check you add reduces your ROI. Now you can apply 50+ hooks and your agent (with autocompaction) will run 24/7 until they pass completely autonomously. Your code quality improves automatically, your ROI increases!

Know that you don't know the tooling

Some tools everyone knows. We are used to measuring coverage. We have seen Sonar reports on cyclomatic complexity and ignored them because of the refactoring effort it would take. But I was really surprised when I started digging into this, how broad the tooling really is.

I built a TypeScript scaffolding template for greenfield projects, and while working on it I stumbled across jscpd. Never heard of it before. (You might argue that as an IT architect I should have, and you are absolutely right). Now it is a central part of my pre-commit hook pipeline.

You are the "show me the code" guy? Throw this TypeScript template on your agent and let it explain it to you. Or its .NET version a colleague of mine built.

For all others I have a concrete example.

Feeding pressure back into the agent

The second important part is how to build the rule.

When a check fails, the agent really wants to make it green. It might fix the code or weaken the rule, which means: raise a threshold, extend an ignore list, apply a #noqa comment. The bad news: Models are trained on data created by humans so weakening the rule looks as valid as fixing the issue. And one thing hasn't changed too: fixing the issue is almost always harder.

So a raw tool output is not enough. I suggest this best practice:

  • wrap the tool in a custom script
  • on error emit an instructive message
  • the message focuses on how to fix quantitatively and qualitatively

If the tool needs it, give it a very small bypass window and instruct the agent to document the reasoning and tag it as a bypass. This gives a reviewer the chance to see why the decision was made.

This is one of my hooks, type coverage at 100 percent.

if ! bunx type-coverage --strict --detail --at-least 100 2>&1; then
  echo ""
  echo "✗ Type coverage is below 100%."
  echo ""
  echo "  THE ONLY CORRECT FIX IS TO PROPERLY TYPE THE REPORTED EXPRESSION."
  echo ""
  echo "  This means: define an interface or type for the data, annotate the"
  echo "  variable, narrow with a type guard — whatever it takes. Even if it"
  echo "  is a lot of work, that work is always the right answer."
  echo ""
  echo "  Suppression (type-coverage:ignore-next-line / ignore-file) and blind"
  echo "  casts (as SomeType) are introducing technical debt and are only"
  echo "  permitted when it is 100% certain that no proper typing is possible"
  echo "  (e.g. a 3rd-party API with no published schema and no way to infer"
  echo "  one from the code). If you reach for suppression before exhausting"
  echo "  proper typing options, you are doing it wrong."
  echo ""
  echo "  When suppression truly cannot be avoided, add a BYPASS-JUSTIFICATION"
  echo "  comment on the line above explaining exactly why proper typing is"
  echo "  impossible — not just inconvenient."
  exit 1
fi

The wording is not cosmetic. An earlier version of this message gave the bypass the same weight as the fix, token wise and from the wording. On a large codebase the model took the cheap path and bypassed everywhere. It even put real effort into the justifications. I changed the message to the one you see here, and this version flipped the result from escaping to fixing.

This is the craft now. The tool gives you the deterministic gate, pass or fail. The message gives the model the instruction on how to react to it properly instead of randomly. You need both, and the message is where the work is.