@wipcomputer/wip-ai-devops-toolbox 1.9.66 → 1.9.67
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 +37 -0
- package/SKILL.md +1 -1
- package/package.json +1 -1
- package/tools/deploy-public/package.json +1 -1
- package/tools/ldm-jobs/backup.sh +1 -1
- package/tools/post-merge-rename/package.json +1 -1
- package/tools/wip-branch-guard/package.json +1 -1
- package/tools/wip-branch-guard/test.sh +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,43 @@
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
34
|
+
|
|
35
|
+
## 1.9.67 (2026-03-31)
|
|
36
|
+
|
|
37
|
+
# Release Notes: wip-ai-devops-toolbox v1.9.67
|
|
38
|
+
|
|
39
|
+
**Date:** 2026-03-30
|
|
40
|
+
|
|
41
|
+
## What changed
|
|
42
|
+
|
|
43
|
+
### Hardcoded path removal
|
|
44
|
+
|
|
45
|
+
Two files in the devops toolbox had paths that assumed a specific username or iCloud layout.
|
|
46
|
+
|
|
47
|
+
**ldm-jobs/backup.sh** referenced `/Users/lesa/Library/Mobile Documents/.../ldm/bin/` to find the `ldm` binary for scheduled backup jobs. This iCloud path was fragile (iCloud sync delays, different usernames). The script now uses `$HOME/.ldm/bin/` which is the standard LDM install location and works on any machine (#301).
|
|
48
|
+
|
|
49
|
+
**test.sh** (the branch guard test harness) had `/Users/lesa` hardcoded for creating temp directories. It now uses `$HOME` so tests run correctly under any user account (#301).
|
|
50
|
+
|
|
51
|
+
### Earlier changes included in this release
|
|
52
|
+
|
|
53
|
+
**v1.9.66** added auto-combine for release notes from batched PRs (#237). When multiple PRs are merged between releases, their individual RELEASE-NOTES files are automatically combined into a single changelog entry.
|
|
54
|
+
|
|
55
|
+
**v1.9.65** fixed the scaffold-on-main issue (#223) where scaffolding left untracked files that blocked `git pull` on the main working tree.
|
|
56
|
+
|
|
57
|
+
## Why
|
|
58
|
+
|
|
59
|
+
The backup job is scheduled via LaunchAgent and runs unattended. If the path to `ldm` is wrong, backups silently fail. Moving to `$HOME/.ldm/bin/` aligns with the standard LDM install path and eliminates the iCloud dependency. The test fix ensures CI and local test runs work for all contributors.
|
|
60
|
+
|
|
61
|
+
## Issues closed
|
|
62
|
+
|
|
63
|
+
- #301
|
|
64
|
+
|
|
65
|
+
## How to verify
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
grep -r "/Users/lesa" ldm-jobs/ tools/wip-branch-guard/test.sh
|
|
69
|
+
# Should return zero results
|
|
70
|
+
```
|
|
34
71
|
|
|
35
72
|
## 1.9.66 (2026-03-30)
|
|
36
73
|
|
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.67"
|
|
9
9
|
homepage: "https://github.com/wipcomputer/wip-ai-devops-toolbox"
|
|
10
10
|
author: "Parker Todd Brooks"
|
|
11
11
|
category: dev-tools
|
package/package.json
CHANGED
package/tools/ldm-jobs/backup.sh
CHANGED
|
@@ -110,7 +110,7 @@ test_case "mkdir .worktrees" allow Bash "mkdir -p .worktrees/repo--branch"
|
|
|
110
110
|
|
|
111
111
|
echo ""
|
|
112
112
|
echo "--- Plan files (should ALLOW Write/Edit) ---"
|
|
113
|
-
test_case "Edit plan file" allow Edit "
|
|
113
|
+
test_case "Edit plan file" allow Edit "$HOME/.claude/plans/my-plan.md"
|
|
114
114
|
|
|
115
115
|
echo ""
|
|
116
116
|
echo "=== Results: $PASS passed, $FAIL failed, $SKIP skipped ==="
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wipcomputer/universal-installer",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.67",
|
|
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",
|