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
7 changes: 7 additions & 0 deletions .claude/commands/precommit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Run the pre-commit checklist for this project:

1. Remind me to update `CHANGELOG.md` `[Unreleased]` section (Added / Changed / Fixed / Removed) — I must do this manually.
2. Run `./mvnw clean install` — must succeed with no compilation warnings and all tests passing.
3. Remind me to open `target/site/jacoco/index.html` to verify coverage after the build completes.

Run step 2, report the results clearly, then propose a branch name and commit message for my approval using the format `type(scope): description (#issue)` (max 80 chars; types: `feat` `fix` `chore` `docs` `test` `refactor` `ci` `perf`). Do not create the branch or commit until I explicitly confirm.
7 changes: 7 additions & 0 deletions .claude/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"permissions": {
"allow": [
"Bash(./mvnw *)"
]
}
}
2 changes: 1 addition & 1 deletion .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,5 +120,5 @@ Example: `feat(api): add player stats endpoint (#42)`
```text
feat(scope): description (#issue)

Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
```
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
HELP.md
.claude/settings.local.json
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
Expand Down
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"vscjava.vscode-spring-initializr", // Spring Initializr - Generate Spring Boot projects

// AI Assistance
"github.copilot-chat", // GitHub Copilot Chat - AI-powered coding assistant
"anthropic.claude-code", // Claude Code - AI-powered coding assistant
"coderabbit.coderabbit-vscode", // CodeRabbit - AI-powered code review

// Code Quality
Expand Down
7 changes: 7 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# CLAUDE.md

@.github/copilot-instructions.md

## Claude Code

- Run `/precommit` to execute the full pre-commit checklist for this project.
Loading