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

推荐订阅源

Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Vercel News
Vercel News
Martin Fowler
Martin Fowler
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
L
LangChain Blog
云风的 BLOG
云风的 BLOG
H
Hackread – Cybersecurity News, Data Breaches, AI and More
aimingoo的专栏
aimingoo的专栏
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
Google DeepMind News
Google DeepMind News
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
F
Fortinet All Blogs

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
no-ai-coauthors
zethraeus · 2026-06-24 · via Hacker News - Newest: "AI"

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.