From a85800c90b192b1af4cbd291eba57ab890244685 Mon Sep 17 00:00:00 2001 From: Michael Suchacz <203725896+ibetitsmike@users.noreply.github.com> Date: Fri, 20 Mar 2026 22:44:52 +0100 Subject: [PATCH] docs: remove hardcoded AI attribution template from PR style guide (#23384) The attribution footer in the PR style guide assumed all AI-generated PRs come from Claude Code using Claude Sonnet 4.5. PRs can be generated through different tools and models (e.g. Coder Agents), so a hardcoded template is misleading. Co-authored-by: Michael Suchacz --- .claude/docs/PR_STYLE_GUIDE.md | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.claude/docs/PR_STYLE_GUIDE.md b/.claude/docs/PR_STYLE_GUIDE.md index 6e106a1094..005f560f0f 100644 --- a/.claude/docs/PR_STYLE_GUIDE.md +++ b/.claude/docs/PR_STYLE_GUIDE.md @@ -177,16 +177,6 @@ Dependabot PRs are auto-generated - don't try to match their verbose style for m Changes from https://github.com/upstream/repo/pull/XXX/ ``` -## Attribution Footer - -For AI-generated PRs, end with: - -```markdown -🤖 Generated with [Claude Code](https://claude.com/claude-code) - -Co-Authored-By: Claude Sonnet 4.5 -``` - ## Creating PRs as Draft **IMPORTANT**: Unless explicitly told otherwise, always create PRs as drafts using the `--draft` flag: @@ -197,11 +187,12 @@ gh pr create --draft --title "..." --body "..." After creating the PR, encourage the user to review it before marking as ready: -``` +```text I've created draft PR #XXXX. Please review the changes and mark it as ready for review when you're satisfied. ``` This allows the user to: + - Review the code changes before requesting reviews from maintainers - Make additional adjustments if needed - Ensure CI passes before notifying reviewers