From f351790dd5d4c6b7b12bfa39d388f834bfd635d7 Mon Sep 17 00:00:00 2001 From: Erik Marks <25517051+rekmarks@users.noreply.github.com> Date: Thu, 29 Jan 2026 21:26:27 -0800 Subject: [PATCH 1/2] chore(claude): simplify commit skill to always use plain strings Remove conditional HEREDOC usage and always use plain strings for commit messages. Co-Authored-By: Claude --- .claude/skills/commit/SKILL.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.claude/skills/commit/SKILL.md b/.claude/skills/commit/SKILL.md index 013487005..f3edd6e2a 100644 --- a/.claude/skills/commit/SKILL.md +++ b/.claude/skills/commit/SKILL.md @@ -34,8 +34,7 @@ When asked to commit code, follow these steps: ``` Co-Authored-By: Claude ``` - - Use a HEREDOC for the commit message to ensure proper formatting, **unless** you are sandboxed, in - which case use a plain string because HEREDOCs are not supported. + - Use a plain string for the commit message (do not use HEREDOCs). 5. Report the results including: - The commit hash From ceae7b6b9b12841f62d31cd50ec172f5a3dab7cd Mon Sep 17 00:00:00 2001 From: Erik Marks <25517051+rekmarks@users.noreply.github.com> Date: Fri, 30 Jan 2026 14:36:43 -0800 Subject: [PATCH 2/2] chore: Remove needless Claude attribution from commit message --- .claude/skills/commit/SKILL.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.claude/skills/commit/SKILL.md b/.claude/skills/commit/SKILL.md index f3edd6e2a..002c090e3 100644 --- a/.claude/skills/commit/SKILL.md +++ b/.claude/skills/commit/SKILL.md @@ -30,10 +30,6 @@ When asked to commit code, follow these steps: 4. Stage and commit the changes: - Add relevant files using `git add` - - Create the commit with a message ending with: - ``` - Co-Authored-By: Claude - ``` - Use a plain string for the commit message (do not use HEREDOCs). 5. Report the results including: