feat(ci): add @claude PR reviews to AKM#232
Merged
Merged
Conversation
6b11d82 to
81bceda
Compare
Wire up the github-ai-assistant reusable workflow to run an AKM-specific code review prompt on every @claude mention in a PR. Add code_review_prompt_path and always_apply_review_prompt so the review fires for any @claude invocation, with the user's words adding emphasis on top of the default checklist. The review prompt covers the areas most critical to this repo: cryptographic / key-management safety, MPC protocol sequencing, mTLS config, monetary-math correctness, and test coverage. Ticket: WAL-1545 Session-Id: 370d5696-0241-42b2-9607-273a4cd2ed99 Task-Id: d63c168d-4c13-4704-bf9e-61f2c30b9985
770f84b to
b26ec47
Compare
Prevent unauthorized invocation by external contributors by gating on OWNER/MEMBER author_association. WAL-1545
dd2095f to
4ebc5d2
Compare
danielpeng1
approved these changes
Jun 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
code_review_prompt_pathandalways_apply_review_prompt: trueto the existingclaude-code.yamlworkflow so that every@claudemention on a PR triggers an AKM-specific code review.github/prompts/code-review.mdwith a review checklist tailored to this repo's domain: cryptographic/key-management safety, MPC protocol sequencing, mTLS config, monetary-math correctness, and test coverageWhat changed
.github/workflows/claude-code.yaml— two newwith:parameters wired to the existingBitGo/github-ai-assistantreusable workflow:code_review_prompt_path: .github/prompts/code-review.mdalways_apply_review_prompt: true— the review prompt is applied on every@claudeinvocation; any words the user adds after@claudesteer the review rather than replace it.github/prompts/code-review.md— AKM-specific review prompt covering:advanced-wallet-managerandmaster-expressmodesHow it was tested
Matches the established pattern used in
bitgo-microservices,kafka-client, andindexer. No runtime changes — CI-only.Linear
WAL-1545