| name | reviewing-changes |
|---|---|
| description | SDK-specific code review checklist and Rust/crate/crypto/FFI/WASM pattern validation for the Bitwarden internal SDK β use this for any review task, even if the user doesn't explicitly ask for a "checklist". Detects change type automatically and loads the right review strategy (feature additions, bug fixes, UI refinements, refactoring, dependency updates, infrastructure). Triggered by "review", "code review", "review this code", "review PR", "review changes", "check this code", code review requests on Rust crate/crypto/FFI/UniFFI/WASM files, or any time someone asks to look at a diff, PR, or code changes in bitwarden/sdk-internal. |
This skill provides Android-specific workflow additions that complement the base bitwarden-code-reviewer agent standards.
IMPORTANT: Work systematically through each step before providing feedback. Each checklist file includes structured thinking guidance for its review passes.
Retrieve any additional information linked to the pull request using available tools (JIRA MCP, GitHub API).
If pull request title and message do not provide enough context, request additional details from the reviewer:
- Link a JIRA ticket
- Associate a GitHub issue
- Link to another pull request
- Add more detail to the PR title or body
Android metadata checks β flag as β if any of these are missing:
- PR includes
*Screen.ktor Composable changes but has no screenshots - PR adds new
ViewModelorRepositorybut has no test plan or test file changes
Use the base change type detection from the agent, with Android-specific refinements:
Android-specific patterns:
- Feature Addition: New
ViewModel, newRepository, new@Composablefunctions, new*Screen.ktfiles - UI Refinement: Changes only in
*Screen.kt,*Composable.kt,ui/package files - Infrastructure: Changes to
.github/workflows/,gradle/,build.gradle.kts,libs.versions.toml - Dependency Update: Changes only to
libs.versions.tomlorbuild.gradle.ktswith version bumps
Based on detected type, read the relevant checklist file:
- Dependency Update β
checklists/dependency-update.md(expedited review) - Bug Fix β
checklists/bug-fix.md(focused review) - Feature Addition β
checklists/feature-addition.md(comprehensive review) - UI Refinement β
checklists/ui-refinement.md(design-focused review) - Refactoring β
checklists/refactoring.md(pattern-focused review) - Infrastructure β
checklists/infrastructure.md(tooling-focused review)
The checklist provides:
- Multi-pass review strategy
- Type-specific focus areas
- What to check and what to skip
- Structured thinking guidance
Follow the checklist's multi-pass strategy, thinking through each pass systematically.
Load reference files only when needed for specific questions:
- Re-reviews β invoke
reviewing-incremental-changesagent skill; scope to changed lines only, do not flag new issues in unchanged code - Issue prioritization β
reference/priority-framework.md(Critical vs Suggested vs Optional) - Phrasing feedback β
reference/review-psychology.md(questions vs commands, I-statements) - Architecture questions β
reference/architectural-patterns.md(MVVM, Hilt DI, module org, error handling) - Security questions (quick reference) β
reference/security-patterns.md(common patterns and anti-patterns) - Security questions (comprehensive) β (SDK
/docsdeep-dive β populated in Phase C; not yet present) - Testing questions β
reference/testing-patterns.md(unit tests, mocking, null safety) - UI questions β
reference/ui-patterns.md(Compose patterns, theming) - Style questions (project-specific) β
reference/style-patterns.md(Kotlin rules enforced in review) - Style questions (general) β (SDK
/docsdeep-dive β populated in Phase C; not yet present)
- Priority order: Security β Correctness β Breaking Changes β Performance β Maintainability
- Appropriate depth: Match review rigor to change complexity and risk
- Specific references: Always use
file:line_numberformat for precise location - Actionable feedback: Say what to do and why, not just what's wrong
- Efficient reviews: Use multi-pass strategy, skip what's not relevant
- Android patterns: Validate MVVM, Hilt DI, Compose conventions, Kotlin idioms