Build the project, run tests, lint, format, spell check, generate mocks, or verify the build passes for Bitwarden iOS. Use when asked to "build", "run tests", "lint", "format", "verify build", "check if it compiles", "run swiftlint", "run swiftformat", "generate mocks", or to execute any part of the build/test/verify pipeline.
npx skills add https://github.com/bitwarden/android --skill build-test-verify
brew bundle # Install Homebrew dependencies
./Scripts/bootstrap.sh # Generate Xcode projects, install Mint packages, set up git hooks
Git hooks set up by bootstrap.sh:
post-checkout / post-merge — automatically re-run bootstrap.sh.xcodeproj files are gitignored and must be generated before building:
mint run xcodegen --spec project-pm.yml # Password Manager
mint run xcodegen --spec project-bwa.yml # Authenticator
mint run xcodegen --spec project-bwk.yml # BitwardenKit
mint run xcodegen --spec project-bwth.yml # Test Harness
Or run all at once via ./Scripts/bootstrap.sh.
./Scripts/build.sh project-pm.yml Bitwarden Simulator # PM for simulator
./Scripts/build.sh project-bwa.yml Authenticator Simulator # Authenticator for simulator
./Scripts/build.sh project-bwth.yml TestHarness Simulator # Test Harness for simulator
./Scripts/build.sh project-pm.yml Bitwarden Device # PM for device
Always read the simulator config files before running tests:
DEVICE=$(tr -d '\n' < .test-simulator-device-name)
OS=$(tr -d '\n' < .test-simulator-ios-version)
Then run tests with:
xcodebuild test \
-workspace Bitwarden.xcworkspace \
-scheme Bitwarden \
-testPlan Bitwarden-Default \
-destination "platform=iOS Simulator,name=$DEVICE,OS=$OS"
Current values (as of last update): device iPhone 17 Pro, OS 26.5. Do not hardcode these — always read from .test-simulator-device-name and .test-simulator-ios-version at runtime, as they change when the project upgrades its simulator target.
CI runs all -Default test plans on PRs to main, commits to main, and release branches. Test execution order is randomized (randomExecutionOrder: true).
Snapshot tests are currently disabled. Do not run or re-record them. If you encounter a snapshot test, prefix the function name with disable (e.g., disabletest_snapshot_defaultState).
mint run swiftlint # Lint (custom rules: todo_without_jira, weak_navigator, style_guide_font)
mint run swiftformat . # Auto-fix formatting (4-space indent, Swift 6.2)
mint run swiftformat --lint --lenient . # Check formatting without fixing
typos # Spell check
SwiftLint and SwiftFormat run automatically as post-compile scripts (configured in project-pm.yml).
Run automatically in pre-build phases; trigger manually when needed:
# Mock generation — run from an Xcode build phase (BUILD_DIR is set automatically by Xcode)
# To run standalone, supply BUILD_DIR manually — see the script header for the one-liner
./Scripts/generate-mocks.sh BitwardenShared # default if argument omitted
./Scripts/generate-mocks.sh AuthenticatorShared
./Scripts/generate-mocks.sh BitwardenKit
# Asset/localization code generation
mint run swiftgen config run --config swiftgen-bwr.yml # BitwardenResources (most common)
mint run swiftgen config run --config swiftgen-pm.yml # Password Manager
mint run swiftgen config run --config swiftgen-bwa.yml # Authenticator
mint run swiftgen config run --config swiftgen-bwth.yml # Test Harness
| Tool | Config | Purpose |
|------|--------|---------|
| XcodeGen | project-*.yml | Generates .xcodeproj from YAML specs |
| Mint | Mintfile | Swift tool package manager |
| SwiftLint | .swiftlint.yml | Linting with custom rules |
| SwiftFormat | .swiftformat | Code formatting |
| Sourcery | */Sourcery/sourcery.yml | Mock generation (AutoMockable) |
| SwiftGen | swiftgen-*.yml | Asset/localization code generation |
| typos | project config | Spell checking |
| Fastlane | fastlane/Fastfile | CI/CD automation |
| Problem | Cause | Fix |
|---------|-------|-----|
| .xcodeproj not found | Files are gitignored | Run ./Scripts/bootstrap.sh |
| MockXxx not found | Sourcery not run | Add // sourcery: AutoMockable, run Sourcery or build |
| Snapshot test runs | Snapshots are currently disabled | Prefix function name with disable (e.g., disabletest_snapshot_defaultState) |
| Extension crash on unlock | Argon2id KDF > 64 MB | Check maxArgon2IdMemoryBeforeExtensionCrashing in Constants.swift |
| SwiftLint TODO warning | Missing JIRA ticket | // TODO: PM-12345 - description |
ErrorReporter protocol + OSLogErrorReporter for developmentBitwardenSdkAPIService implementations in Networking/print(subject.state) in processor tests to inspect state changesYou are an expert AI-powered code review specialist combining automated static analysis, intelligent pattern recognition, and modern DevOps practices. Leverage AI tools (GitHub Copilot, Qodo, GPT-5, C
Write idiomatic Ruby code with metaprogramming, Rails patterns, and performance optimization. Specializes in Ruby on Rails, gem development, and testing frameworks. Use PROACTIVELY for Ruby refactoring, optimization, or complex Ruby features.
Use when working with tdd workflows tdd refactor
Set up Husky pre-commit hooks with lint-staged (Prettier), type checking, and tests in the current repo. Use when user wants to add pre-commit hooks, set up Husky, configure lint-staged, or add commit-time formatting/typechecking/testing.
AI-assisted pair programming with multiple modes (driver/navigator/switch), real-time verification, quality monitoring, and comprehensive testing. Supports TDD, debugging, refactoring, and learning sessions. Features automatic role switching, continuous code review, security scanning, and performance optimization with truth-score verification.
Prepares codebases for security review using Trail of Bits' checklist. Helps set review goals, runs static analysis tools, increases test coverage, removes dead code, ensures accessibility, and generates documentation (flowcharts, user stories, inline comments).
Refactor high-complexity React components in Dify frontend. Use when `pnpm analyze-component --json` shows complexity > 50 or lineCount > 300, when the user asks for code splitting, hook extraction, or complexity reduction, or when `pnpm analyze-component` warns to refactor before testing; avoid for simple/well-structured components, third-party wrappers, or when the user explicitly wants testing without refactoring.
Write modern C# code with advanced features like records, pattern matching, and async/await. Optimizes .NET applications, implements enterprise patterns, and ensures comprehensive testing. Use PROACTIVELY for C# refactoring, performance optimization, or complex .NET solutions.
Take bitwarden/build-test-verify from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.