Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions .agents/skills/git-commit/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <files>` for the specific files

## Commit Message Format
Conventional Commits v1.0.0

Expand All @@ -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 <noreply@anthropic.com>
Expand Down
2 changes: 1 addition & 1 deletion .agents/skills/git-pr/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.**
Loading