@@ -134,7 +134,44 @@ 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+ - Reviews are triggered ** manually only** — no automatic reviews on PR creation
160+ - Claude can read CI results to provide context-aware feedback
161+ - For implementation requests, Claude will create commits on your branch
162+
163+ #### Example
164+
165+ ```
166+ @claude review
167+
168+ Please focus on:
169+ - Kotlin idioms and best practices
170+ - Potential memory leaks
171+ - Thread safety in coroutines
172+ ```
173+
137174## License
138175
139- This project is licensed under the MIT License.
176+ This project is licensed under the MIT License.
140177See the [ LICENSE] ( ./LICENSE ) file for more details.
0 commit comments