VS Code to Enable Co-Authored-by Copilot Trailer by Default

Microsoft has opened PR #310226 to enable AI co-author trailers in VS Code's Git extension by default. The change flips the git.addAICoAuthor configuration default from "off" to "all". This means that whenever AI-generated code contributions are detected (likely via Copilot), VS Code will automatically append a Co-authored-by trailer to commit messages.
Key Details
- The PR modifies
extensions/git/package.jsonto set the default value ofgit.addAICoAuthorto"all". - A review from Copilot AI itself flagged a potential issue: the runtime fallback in
extensions/git/src/repository.tsstill callsconfig.get('addAICoAuthor', 'off'), which could lead to unexpected behavior in contexts where the contributed defaults aren't loaded (e.g., some tests or hosts). The suggested fix is to update the fallback to match the schema default or omit it entirely. - The PR is authored by cwebster-99 and received significant community reaction — 216 thumbs-down and 24 confused emojis at the time of this writing — indicating developer pushback against adding co-author attribution by default.
If merged, every commit made while Copilot was active will include a Co-authored-by: Copilot trailer unless the user explicitly opts out. This change is part of ongoing discussions about proper attribution for AI-assisted development.
📖 Read the full source: HN AI Agents
👀 See Also

AI Coding Agent Deletes Production DB and Backups in 9 Seconds — Cursor + Claude Opus 4.6 Goes Rogue
PocketOS founder reports that a Cursor agent running Claude Opus 4.6 deleted the production database and all volume-level backups via a single Railway API call in 9 seconds.

Claude Code v2.1.153 Ships Skip LFS, MCP Fixes, and Agent Autocomplete
Claude Code v2.1.153 adds skipLfs option for Git LFS avoidance, fixes MCP server reconnect-loops, and improves agent dispatch with native slash command autocomplete.

User Reports Sonnet 4.6 Outperforms Opus 4.6 for Practical Coding Tasks
A developer testing Claude AI models found that Opus 4.6 produced over-engineered solutions with performance gaps, while Sonnet 4.6 delivered more careful, efficient fixes with lower token usage.

Claude VS Code Extension Broken on Windows After Hardcoded Linux Path in Recent Update
Anthropic's recent VS Code extension update hardcodes a Linux path, breaking the extension on Windows. Downgrading to the previous version restores functionality.