From 03776e7554d56af117c11b800616ffc01030cc5e Mon Sep 17 00:00:00 2001 From: nkoji21 <133028205+nkoji21@users.noreply.github.com> Date: Sun, 29 Mar 2026 15:57:08 +0900 Subject: [PATCH] =?UTF-8?q?refactor(skills):=20git-commit=E3=81=A8git-pr?= =?UTF-8?q?=E3=81=AE=E3=83=97=E3=83=AD=E3=83=B3=E3=83=97=E3=83=88=E3=81=8B?= =?UTF-8?q?=E3=82=89=E3=83=95=E3=82=A9=E3=83=BC=E3=83=AB=E3=83=90=E3=83=83?= =?UTF-8?q?=E3=82=AF=E6=89=8B=E9=A0=86=E3=81=A8types=E3=83=AA=E3=82=B9?= =?UTF-8?q?=E3=83=88=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude --- .agents/skills/git-commit/SKILL.md | 17 ----------------- .agents/skills/git-pr/SKILL.md | 2 +- 2 files changed, 1 insertion(+), 18 deletions(-) diff --git a/.agents/skills/git-commit/SKILL.md b/.agents/skills/git-commit/SKILL.md index 1fa79ca..ed42380 100644 --- a/.agents/skills/git-commit/SKILL.md +++ b/.agents/skills/git-commit/SKILL.md @@ -53,11 +53,6 @@ git apply --cached --check patch.diff git apply --cached patch.diff ``` -If `git apply --cached` fails, try in order: -1. `git apply --cached --whitespace=fix patch.diff` -2. `git apply --cached --ignore-space-change patch.diff` -3. Fall back to `git add ` for the specific files - ## Commit Message Format Conventional Commits v1.0.0 @@ -74,18 +69,6 @@ fix(git): remove deprecated option fix(git): remove deprecated option to prevent startup warning ``` -Types: -- `feat`: new feature -- `fix`: bug fix -- `docs`: documentation only -- `style`: formatting, whitespace -- `refactor`: code change without bug fix or feature -- `perf`: performance improvement -- `test`: add/update tests -- `build`: build system, dependencies -- `chore`: other configs, tooling -- `ci`: CI configuration - Required footer: ``` Co-Authored-By: Claude diff --git a/.agents/skills/git-pr/SKILL.md b/.agents/skills/git-pr/SKILL.md index 5c8f49d..d56be0f 100644 --- a/.agents/skills/git-pr/SKILL.md +++ b/.agents/skills/git-pr/SKILL.md @@ -43,4 +43,4 @@ Anything the reviewer should be aware of. Remove if unnecessary. **Write all content in English.** **Keep it concise. Implementation details belong in the diff, not the PR description.** -**For readability, wrap long lines with a newline at natural break points (e.g. after a period or comma) so no line exceeds ~80 characters.** +**For readability, wrap long lines with a newline at natural break points (e.g. after a period or comma) so no line exceeds ~80 characters. Do not add blank lines between list items.**