Guides Bitwarden commit conventions: ticket-prefixed messages with conventional commit types, followup commit format, and pre-flight quality checks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/bitwarden-delivery-tools:committing-changesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
[PM-XXXXX] <type>: <imperative summary>
<optional body explaining why, not what>
[PM-XXXXX] matching the Jira ticket${CLAUDE_PLUGIN_ROOT}/references/change-type-labels.md for the full table of conventional commit types and their CI label mappings. If the type cannot be confidently determined, ask the user.[PM-12345] feat: Add biometric unlock timeout configuration
Users reported confusion about when biometric prompts appear.
This adds a configurable timeout setting to the security preferences.
Ambiguous cases — choosing between similar types:
# Refactor that also fixes a bug? Use the primary intent:
[PM-12345] fix: Resolve null pointer in vault sync retry logic
# Test-only change:
[PM-12345] test: Add unit tests for biometric timeout edge cases
Only the first commit on a branch needs the full format (ticket prefix, type keyword, body). Subsequent commits can use a short, descriptive summary with no prefix or body required.
Update error handling in login flow
Before staging, run the perform-preflight skill for the full quality gate checklist (tests, lint, security, architecture). Consult the repo's CLAUDE.md for platform-specific build and lint commands.
npx claudepluginhub bitwarden/ai-plugins --plugin bitwarden-delivery-toolsEnforces atomic, descriptive commits with a standardized message format (type(scope): description). Verifies each commit passes tests, builds, types, and lint before allowing the commit.
Creates Sentry-style conventional git commits with structured messages including type, scope, subject, body, and footers. Automatically invoked before every commit.
Creates Conventional Commits with automatic scope detection, co-author attribution, and pre-commit validation. Validates staged changes and prevents secrets or generated-only files from being committed.