@wipcomputer/post-merge-rename 1.9.15 → 1.9.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +29 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ ###### WIP Computer
2
+
3
+ # Post-Merge Branch Naming
4
+
5
+ Cleans up after itself. Merged branches get renamed with dates automatically.
6
+
7
+ ## What it does
8
+
9
+ - Scans for merged branches that haven't been renamed
10
+ - Appends `--merged-YYYY-MM-DD` to preserve history
11
+ - We never delete branches. We rename them.
12
+
13
+ ## Usage
14
+
15
+ ```bash
16
+ bash post-merge-rename.sh
17
+ ```
18
+
19
+ ## Requirements
20
+
21
+ - git
22
+ - bash
23
+
24
+ ## Interfaces
25
+
26
+ - **CLI**: Shell script
27
+ - **Skill**: SKILL.md for agent instructions
28
+
29
+ ## Part of [AI DevOps Toolbox](https://github.com/wipcomputer/wip-ai-devops-toolbox)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/post-merge-rename",
3
- "version": "1.9.15",
3
+ "version": "1.9.17",
4
4
  "description": "Post-merge branch renaming. Appends --merged-YYYY-MM-DD to preserve history.",
5
5
  "bin": {
6
6
  "post-merge-rename": "./post-merge-rename.sh"