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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
雷峰网
雷峰网
博客园_首页
小众软件
小众软件
美团技术团队
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
P
Proofpoint News Feed
MongoDB | Blog
MongoDB | Blog
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
U
Unit 42
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Security Blog
Microsoft Security Blog
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 叶小钗

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
no-ai-coauthors
zethraeus · 2026-06-24 · via Hacker News

commit-msg hook · github action

No AI co‑authors

A commit-msg hook and GitHub Action that rejects commits carrying AI attribution trailers — because the byline is the one place accountability can’t be shared.

$ pre-commit install --hook-type commit-msg

COMMIT_EDITMSG ~/work · 9f2c1ab

1feat: add a retry budget to the sync worker

3Author: Ada Lovelace <ada@example.com>

4Signed-off-by: Ada Lovelace <ada@example.com>

5Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

6Claude-Session: https://claude.ai/code/session_01T…

2 trailers removed

@@ why @@

the manifesto

The byline is not a shared resource.

AI co-author git-commit bylines are an impressive marketing hook — but they provide no useful signal of provenance.

It is mid-2026. All code written is facilitated by a host of sophisticated tools. The most recent of these are AI ‘co-authors.’ These have incredible utility, but — as with the other tools in the development toolchain — they are not meaningfully accountable for their output.

At best, tagging the bot that generated code as a ‘co-author’ adds noise to the single most important accountability and attribution mechanism in the development hierarchy. At worst, the practice implies similarly diffused responsibility.

As much as the act of code authorship is changing, the social rules for authorship must not slip: we are responsible for our contributions.

The ‘author’ is, as ever, the contributing person.

Remove corporate spam from commit messages.

No AI co-authors.

@@ diff @@

what it catches

It strikes the tool. It keeps the person.

Matching runs on both the display name and the email, normalized — so a renamed bot or a numeric noreply address doesn’t slip through. A human is never in the blast radius.

Rejected

# the commit will not be created

-Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

-Claude-Session: https://claude.ai/code/…

-Co-authored-by: Copilot <copilot@github.com>

-Co-authored-by: Cursor <cursoragent@cursor.com>

-Co-authored-by: aider <aider@aider.chat>

ChatGPTGPTCodex GeminiDevinWindsurf OpenCodeAmazon QLlama MistralDeepSeekQwen GrokCodyCodeium ClineTabnine+ more

Kept

# the commit goes through, untouched

+Co-authored-by: Claude Shannon <claude.shannon@example.com>

+Co-authored-by: Grace Hopper <grace@example.com>

+Signed-off-by: Ada Lovelace <ada@example.com>

## commented lines are ignored, too

It blocks the bot named Claude.
It welcomes the human named Claude Shannon.

@@ use @@

install

Pin 1.0.0. Pick your hook manager.

Every path points at the public repo and a tagged release, so installs are repeatable. Swap the tag when you upgrade.

Add the repo to .pre-commit-config.yaml, then install the commit-msg stage.

.pre-commit-config.yaml

default_install_hook_types: [pre-commit, commit-msg]
repos:
  - repo: https://github.com/GoodHatsLLC/no-ai-coauthors
    rev: 1.0.0
    hooks:
      - id: no-ai-coauthors

terminal

$ pre-commit install --hook-type commit-msg

Your name is on the commit. Mean it.