release-please-protection
Block manual edits to release-please files (CHANGELOG, version fields). Use when editing changelogs, bumping versions, or releasing to avoid conflicting with automation.
What this skill does
# Release-Please Protection
## When to Use This Skill
| Use this skill when... | Use the alternative when... |
|---|---|
| Detecting manual edits to `CHANGELOG.md`, `package.json` version fields, etc. | Use `release-please-configuration` to set up the manifest in the first place |
| Warning before a manual changelog or version bump conflicts with release-please | Use `release-please-pr-workflow` once release PRs already exist and need merging |
| Suggesting conventional-commit alternatives instead of editing managed files | Use `git-commit-trailers` for `Release-As:` / `BREAKING CHANGE:` overrides |
| Protecting release-managed files during refactors and bulk edits | Use `git-security-checks` for credential leaks rather than version-file mutations |
Automatically detects and prevents manual edits to release-please managed files across all projects.
## Overview
This skill provides proactive detection and warnings for files managed by Google's release-please automation tool. It helps prevent merge conflicts and workflow disruptions by identifying problematic edit attempts before they occur.
## When This Skill Activates
The skill automatically activates in these scenarios:
1. **Direct edit requests** to protected files
2. **User mentions** of version bumps, releases, or changelog updates
3. **Broad refactoring** that might touch version-controlled files
4. **Documentation updates** that could include CHANGELOG.md
5. **"Fix all issues"** or similar sweeping requests
## Protected Files
### Hard Protection (Permission System)
These files are **completely blocked** from editing by Claude Code's permission system:
- `**/CHANGELOG.md` - All changelog files in any location
**Operations blocked:** Edit, Write, MultiEdit
**Operations allowed:** Read (for analysis and context)
### Soft Protection (Skill Detection)
These files trigger **warnings and suggestions** before edits:
#### Package Manager Manifests (Version Fields)
- `package.json` → `"version": "x.y.z"` (npm/Node.js)
- `pyproject.toml` → `version = "x.y.z"` (Python/uv)
- `Cargo.toml` → `version = "x.y.z"` (Rust/cargo)
- `.claude-plugin/plugin.json` → `"version": "x.y.z"` (Claude Code plugins)
- `pom.xml` → `<version>x.y.z</version>` (Maven/Java)
- `build.gradle` → `version = 'x.y.z'` (Gradle)
- `pubspec.yaml` → `version: x.y.z` (Dart/Flutter)
**Why soft protection?** Claude Code's permission system operates at the file level, not field level. Blocking entire manifest files would prevent legitimate dependency updates via automated tools (npm, cargo, uv, etc.).
## Detection Logic
Before attempting any edit, the skill checks:
### 1. File Path Analysis
```
if file_path ends with "CHANGELOG.md":
→ Inform user of hard permission block
→ Explain release-please workflow
→ Suggest conventional commit approach
```
### 2. Content Pattern Matching
```
if file is package manifest AND edit touches version field:
→ Warn about release-please management
→ Explain why manual edits cause conflicts
→ Offer to edit OTHER fields (but not version)
→ Provide conventional commit template
```
### 3. Intent Recognition
```
if user request contains keywords: "version", "release", "bump", "changelog":
→ Proactively explain release-please workflow
→ Check if files in scope are protected
→ Suggest proper approach before attempting edits
```
## Response Templates
### When CHANGELOG.md Edit Attempted
```
⚠️ CHANGELOG.md Protection Active
I cannot edit CHANGELOG.md files - they're protected by Claude Code's permission
system because they're managed by release-please automation.
**Why this matters:**
Manual edits to CHANGELOG.md cause merge conflicts with automated release PRs,
breaking your release workflow.
**Proper workflow:**
1. Make your changes with conventional commit messages:
- feat: adds new features (minor version bump)
- fix: bug fixes (patch version bump)
- chore: maintenance tasks (no version bump)
- BREAKING CHANGE: breaking changes (major version bump)
2. Release-please automatically:
- Detects conventional commits
- Generates CHANGELOG entries
- Creates a release PR with version bumps
- Tags releases when PR is merged
**Example commit:**
```
feat(auth): add OAuth2 support
Implements OAuth2 authentication flow with PKCE.
Includes refresh token rotation and session management.
```
**Need to override?**
For emergency fixes, temporarily edit ~/.claude/settings.json:
1. Comment out the CHANGELOG.md deny rules
2. Make your edits
3. Re-enable protection
```
### When Version Field Edit Detected
```
⚠️ Version Field Protection Warning
I notice you're asking me to modify the version field in [file_name]. This field
is typically managed by release-please automation.
**Current version:** [current_version]
**Requested change:** [requested_change]
**Why manual edits are problematic:**
- Creates merge conflicts with release-please PRs
- Can cause version numbering inconsistencies
- Bypasses conventional commit history tracking
**I can help in two ways:**
1. **Automated approach (recommended):**
I'll help you craft a conventional commit message that will trigger the
appropriate version bump when release-please creates its next release PR.
For [requested_change], you should use:
- `feat:` for minor version bump
- `fix:` for patch version bump
- `feat!:` or `BREAKING CHANGE:` for major version bump
2. **Manual override (emergency only):**
If you absolutely need to manually set the version (e.g., aligning with
external requirements), I can edit other fields in [file_name] but will
skip the version field. You'll need to edit that manually or temporarily
disable the skill protection.
Which approach would you prefer?
```
### When Broad Refactoring Requested
```
📋 Release-Please Files Detected
I've identified several release-please managed files in the scope of this
refactoring:
**Protected files found:**
- plugins/dotfiles-core/CHANGELOG.md (hard block)
- plugins/dotfiles-toolkit/.claude-plugin/plugin.json (version field)
- [other files...]
**My approach:**
✅ I'll refactor all other files as requested
⚠️ I'll skip protected files and explain why
📝 I'll provide a summary of skipped changes
**If you need version/changelog updates:**
I'll generate appropriate conventional commit messages that will trigger
release-please to make those changes automatically.
Should I proceed with this approach?
```
## Conventional Commit Guide
The skill provides instant conventional commit templates based on the type of change:
### Feature Addition
```
feat(scope): brief description
Detailed explanation of what was added and why.
Can be multiple paragraphs.
Refs: #issue-number
```
### Bug Fix
```
fix(scope): brief description
Explanation of the bug and how it was fixed.
Fixes: #issue-number
```
### Breaking Change
```
feat(scope)!: brief description
BREAKING CHANGE: Explanation of what breaks and migration path.
Details about the new behavior.
Refs: #issue-number
```
### Chore (No Version Bump)
```
chore(scope): brief description
Maintenance work that doesn't affect functionality.
Examples: dependency updates, refactoring, docs.
```
## Integration with Other Skills
This skill works alongside:
- **Chezmoi Expert** - Ensures dotfiles templates don't manually edit versions
- **Git Workflow** - Enforces conventional commits before creating PRs
- **GitHub Actions** - Aware of release-please workflow configurations
## Skill Configuration
Located in `dot_claude/skills/release-please-protection/` (source) which becomes `~/.claude/skills/release-please-protection/` after chezmoi apply:
- `SKILL.md` - This file (skill definition)
- `patterns.md` - Protected file pattern reference
- `workflow.md` - Detailed release-please workflow guide
## Limitations
### What This Skill Cannot Prevent
1. **Explicit overrides** - If you explicitly instruct me to edit despite warnings
2. **Out-of-context files** - Files not in Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.