@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 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.56"
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-ai-devops-toolbox",
3
- "version": "1.9.56",
3
+ "version": "1.9.57",
4
4
  "type": "module",
5
5
  "description": "The complete AI DevOps toolkit for AI-assisted development teams.",
6
6
  "license": "MIT",
@@ -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/ and .git/
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/deploy-public",
3
- "version": "1.9.56",
3
+ "version": "1.9.57",
4
4
  "description": "Private-to-public repo sync. Excludes ai/ folder, creates PR, merges, cleans up branches.",
5
5
  "bin": {
6
6
  "deploy-public": "./deploy-public.sh"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/post-merge-rename",
3
- "version": "1.9.56",
3
+ "version": "1.9.57",
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"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-branch-guard",
3
- "version": "1.9.56",
3
+ "version": "1.9.57",
4
4
  "description": "PreToolUse hook that blocks all writes on main branch. Forces agents to work on branches or worktrees.",
5
5
  "type": "module",
6
6
  "main": "guard.mjs",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-file-guard",
3
- "version": "1.9.56",
3
+ "version": "1.9.57",
4
4
  "type": "module",
5
5
  "description": "Hook that blocks destructive edits to protected identity files. For Claude Code CLI and OpenClaw.",
6
6
  "main": "guard.mjs",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-license-guard",
3
- "version": "1.9.56",
3
+ "version": "1.9.57",
4
4
  "description": "License compliance for your own repos. Ensures correct copyright, dual-license blocks, and LICENSE files.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-license-hook",
3
- "version": "1.9.56",
3
+ "version": "1.9.57",
4
4
  "description": "License rug-pull detection and dependency license compliance for open source projects",
5
5
  "type": "module",
6
6
  "main": "dist/cli/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-readme-format",
3
- "version": "1.9.56",
3
+ "version": "1.9.57",
4
4
  "description": "Reformat any repo's README to follow the WIP Computer standard. Agent-first, human-readable.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-release",
3
- "version": "1.9.56",
3
+ "version": "1.9.57",
4
4
  "type": "module",
5
5
  "description": "One-command release pipeline. Bumps version, updates changelog + SKILL.md, publishes to npm + GitHub.",
6
6
  "main": "core.mjs",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-repo-init",
3
- "version": "1.9.56",
3
+ "version": "1.9.57",
4
4
  "description": "Scaffold the standard ai/ directory structure in any repo",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-repo-permissions-hook",
3
- "version": "1.9.56",
3
+ "version": "1.9.57",
4
4
  "type": "module",
5
5
  "description": "Repo visibility guard. Blocks repos from going public without a -private counterpart.",
6
6
  "main": "core.mjs",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-repos",
3
- "version": "1.9.56",
3
+ "version": "1.9.57",
4
4
  "type": "module",
5
5
  "description": "Repo manifest reconciler. Single source of truth for repo organization. Like prettier for folder structure.",
6
6
  "main": "core.mjs",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/universal-installer",
3
- "version": "1.9.56",
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",