@wipcomputer/wip-ai-devops-toolbox 1.9.56 → 1.9.57
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.
- package/CHANGELOG.md +21 -0
- package/SKILL.md +1 -1
- package/_trash/RELEASE-NOTES-v1-9-57.md +18 -0
- package/package.json +1 -1
- package/scripts/deploy-public.sh +3 -1
- package/tools/deploy-public/package.json +1 -1
- package/tools/post-merge-rename/package.json +1 -1
- package/tools/wip-branch-guard/package.json +1 -1
- package/tools/wip-file-guard/package.json +1 -1
- package/tools/wip-license-guard/package.json +1 -1
- package/tools/wip-license-hook/package.json +1 -1
- package/tools/wip-readme-format/package.json +1 -1
- package/tools/wip-release/package.json +1 -1
- package/tools/wip-repo-init/package.json +1 -1
- package/tools/wip-repo-permissions-hook/package.json +1 -1
- package/tools/wip-repos/package.json +1 -1
- package/tools/wip-universal-installer/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -31,6 +31,27 @@
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
34
|
+
|
|
35
|
+
## 1.9.57 (2026-03-29)
|
|
36
|
+
|
|
37
|
+
# Release Notes: wip-ai-devops-toolbox v1.9.57
|
|
38
|
+
|
|
39
|
+
**deploy-public.sh now excludes .worktrees/ and _worktrees/ from public repo syncs.**
|
|
40
|
+
|
|
41
|
+
## The story
|
|
42
|
+
|
|
43
|
+
v1.9.56 accidentally deployed worktree directories (containing embedded git repos) to the public repo. The deploy script's rsync excluded ai/, .git/, _trash/, and other dev artifacts but didn't exclude worktree directories. Added both .worktrees/ (new convention) and _worktrees/ (old convention) to the exclude list.
|
|
44
|
+
|
|
45
|
+
## Issues closed
|
|
46
|
+
|
|
47
|
+
- #228 (deploy-public.sh leaks .worktrees/ to public repo)
|
|
48
|
+
|
|
49
|
+
## How to verify
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
# Run deploy-public.sh --dry-run and confirm .worktrees/ is not synced
|
|
53
|
+
grep -n "worktrees" scripts/deploy-public.sh
|
|
54
|
+
```
|
|
34
55
|
|
|
35
56
|
## 1.9.56 (2026-03-29)
|
|
36
57
|
|
package/SKILL.md
CHANGED
|
@@ -5,7 +5,7 @@ license: MIT
|
|
|
5
5
|
interface: [cli, module, mcp, skill, hook, plugin]
|
|
6
6
|
metadata:
|
|
7
7
|
display-name: "WIP AI DevOps Toolbox"
|
|
8
|
-
version: "1.9.
|
|
8
|
+
version: "1.9.57"
|
|
9
9
|
homepage: "https://github.com/wipcomputer/wip-ai-devops-toolbox"
|
|
10
10
|
author: "Parker Todd Brooks"
|
|
11
11
|
category: dev-tools
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Release Notes: wip-ai-devops-toolbox v1.9.57
|
|
2
|
+
|
|
3
|
+
**deploy-public.sh now excludes .worktrees/ and _worktrees/ from public repo syncs.**
|
|
4
|
+
|
|
5
|
+
## The story
|
|
6
|
+
|
|
7
|
+
v1.9.56 accidentally deployed worktree directories (containing embedded git repos) to the public repo. The deploy script's rsync excluded ai/, .git/, _trash/, and other dev artifacts but didn't exclude worktree directories. Added both .worktrees/ (new convention) and _worktrees/ (old convention) to the exclude list.
|
|
8
|
+
|
|
9
|
+
## Issues closed
|
|
10
|
+
|
|
11
|
+
- #228 (deploy-public.sh leaks .worktrees/ to public repo)
|
|
12
|
+
|
|
13
|
+
## How to verify
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# Run deploy-public.sh --dry-run and confirm .worktrees/ is not synced
|
|
17
|
+
grep -n "worktrees" scripts/deploy-public.sh
|
|
18
|
+
```
|
package/package.json
CHANGED
package/scripts/deploy-public.sh
CHANGED
|
@@ -109,7 +109,7 @@ echo "Syncing files from private repo (excluding ai/, .git/)..."
|
|
|
109
109
|
# Remove all tracked files in public (except .git) so deleted files get removed
|
|
110
110
|
find "$TMPDIR/public" -mindepth 1 -maxdepth 1 ! -name .git -exec rm -rf {} +
|
|
111
111
|
|
|
112
|
-
# rsync from private, excluding ai
|
|
112
|
+
# rsync from private, excluding ai/, .git/, worktrees, and other dev artifacts
|
|
113
113
|
rsync -a \
|
|
114
114
|
--exclude='ai/' \
|
|
115
115
|
--exclude='_trash/' \
|
|
@@ -118,6 +118,8 @@ rsync -a \
|
|
|
118
118
|
--exclude='.wrangler/' \
|
|
119
119
|
--exclude='.claude/' \
|
|
120
120
|
--exclude='CLAUDE.md' \
|
|
121
|
+
--exclude='.worktrees/' \
|
|
122
|
+
--exclude='_worktrees/' \
|
|
121
123
|
"$PRIVATE_REPO/" "$TMPDIR/public/"
|
|
122
124
|
|
|
123
125
|
cd "$TMPDIR/public"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wipcomputer/universal-installer",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.57",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "The Universal Interface specification for agent-native software. Teaches your AI how to build repos with every interface: CLI, Module, MCP Server, OpenClaw Plugin, Skill, Claude Code Hook.",
|
|
6
6
|
"main": "detect.mjs",
|