@@ -134,7 +134,45 @@ Increment `versionCode` and `versionName` in `app/build.gradle.kts`, then run:
134134APK is generated in ` app/build/outputs/apk/_flavor_/release ` . (` _flavor_ ` can be any of 'dev', 'mainnet', 'tnet').
135135Example for dev: ` app/build/outputs/apk/dev/release `
136136
137+ ## Contributing
138+
139+ ### AI Code Review with Claude
140+
141+ This repository has Claude Code integrated for on-demand AI assistance on issues and pull requests.
142+
143+ #### How to Use
144+
145+ Mention ` @claude ` in any PR comment, issue, or review to trigger Claude:
146+
147+ | Command | Description |
148+ | ---------| -------------|
149+ | ` @claude review ` | Request a code review of the PR |
150+ | ` @claude /review ` | Same as above (slash command) |
151+ | ` @claude review focus on security ` | Review with specific focus |
152+ | ` @claude explain this change ` | Ask questions about the code |
153+ | ` @claude fix the null pointer issue ` | Request Claude to implement a fix |
154+ | ` @claude /help ` | Show available commands |
155+
156+ #### Notes
157+
158+ - Claude follows the project guidelines defined in ` CLAUDE.md `
159+ - ** Automatic reviews** run on every PR open and push (updates same comment)
160+ - ** On-demand assistance** via ` @claude ` mentions in comments/issues
161+ - Claude can read CI results to provide context-aware feedback
162+ - For implementation requests, Claude will create commits on your branch
163+
164+ #### Example
165+
166+ ```
167+ @claude review
168+
169+ Please focus on:
170+ - Kotlin idioms and best practices
171+ - Potential memory leaks
172+ - Thread safety in coroutines
173+ ```
174+
137175## License
138176
139- This project is licensed under the MIT License.
177+ This project is licensed under the MIT License.
140178See the [ LICENSE] ( ./LICENSE ) file for more details.
0 commit comments