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.**