@wipcomputer/wip-ai-devops-toolbox 1.9.30 → 1.9.31
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 +29 -0
- package/SKILL.md +1 -1
- package/_trash/RELEASE-NOTES-v1-9-31.md +26 -0
- package/package.json +1 -1
- package/tools/deploy-public/package.json +1 -1
- package/tools/post-merge-rename/package.json +1 -1
- package/tools/wip-branch-guard/guard.mjs +2 -2
- 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,35 @@
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
34
|
+
|
|
35
|
+
## 1.9.31 (2026-03-15)
|
|
36
|
+
|
|
37
|
+
# Release Notes: wip-ai-devops-toolbox v1.9.31
|
|
38
|
+
|
|
39
|
+
Branch guard no longer blocks global npm operations on main.
|
|
40
|
+
|
|
41
|
+
## What changed
|
|
42
|
+
|
|
43
|
+
Moved `npm install -g` and `npm link` from BLOCKED_BASH_PATTERNS to ALLOWED_BASH_PATTERNS in `wip-branch-guard/guard.mjs`. Global npm operations modify `/opt/homebrew/`, not the repo. Local `npm install` (no -g flag) remains blocked.
|
|
44
|
+
|
|
45
|
+
## Why
|
|
46
|
+
|
|
47
|
+
During LDM OS v0.4.0 dogfood, a CC session couldn't run `npm install -g @wipcomputer/wip-ldm-os@0.4.0` even after Parker explicitly said "install." The guard was too aggressive. Original intent (issue #137) was to block repo writes on main, not system-level package installs.
|
|
48
|
+
|
|
49
|
+
## Issues closed
|
|
50
|
+
|
|
51
|
+
- Closes #188 (branch guard blocks npm install -g)
|
|
52
|
+
- Cross-ref: wipcomputer/wip-ldm-os#44
|
|
53
|
+
|
|
54
|
+
## How to verify
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
# On main branch, these should now succeed:
|
|
58
|
+
npm install -g @wipcomputer/wip-ldm-os@0.4.0
|
|
59
|
+
npm link
|
|
60
|
+
# This should still be blocked on main:
|
|
61
|
+
npm install
|
|
62
|
+
```
|
|
34
63
|
|
|
35
64
|
## 1.9.30 (2026-03-15)
|
|
36
65
|
|
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.31"
|
|
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,26 @@
|
|
|
1
|
+
# Release Notes: wip-ai-devops-toolbox v1.9.31
|
|
2
|
+
|
|
3
|
+
Branch guard no longer blocks global npm operations on main.
|
|
4
|
+
|
|
5
|
+
## What changed
|
|
6
|
+
|
|
7
|
+
Moved `npm install -g` and `npm link` from BLOCKED_BASH_PATTERNS to ALLOWED_BASH_PATTERNS in `wip-branch-guard/guard.mjs`. Global npm operations modify `/opt/homebrew/`, not the repo. Local `npm install` (no -g flag) remains blocked.
|
|
8
|
+
|
|
9
|
+
## Why
|
|
10
|
+
|
|
11
|
+
During LDM OS v0.4.0 dogfood, a CC session couldn't run `npm install -g @wipcomputer/wip-ldm-os@0.4.0` even after Parker explicitly said "install." The guard was too aggressive. Original intent (issue #137) was to block repo writes on main, not system-level package installs.
|
|
12
|
+
|
|
13
|
+
## Issues closed
|
|
14
|
+
|
|
15
|
+
- Closes #188 (branch guard blocks npm install -g)
|
|
16
|
+
- Cross-ref: wipcomputer/wip-ldm-os#44
|
|
17
|
+
|
|
18
|
+
## How to verify
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
# On main branch, these should now succeed:
|
|
22
|
+
npm install -g @wipcomputer/wip-ldm-os@0.4.0
|
|
23
|
+
npm link
|
|
24
|
+
# This should still be blocked on main:
|
|
25
|
+
npm install
|
|
26
|
+
```
|
package/package.json
CHANGED
|
@@ -49,8 +49,6 @@ const BLOCKED_BASH_PATTERNS = [
|
|
|
49
49
|
/\brm\s+/,
|
|
50
50
|
/\bmkdir\s+/,
|
|
51
51
|
/\btouch\s+/,
|
|
52
|
-
/\bnpm\s+link\b/,
|
|
53
|
-
/\bnpm\s+install\s+-g\b/,
|
|
54
52
|
/>\s/, // redirects
|
|
55
53
|
/\btee\s+/,
|
|
56
54
|
/\bsed\s+-i/,
|
|
@@ -77,6 +75,8 @@ const ALLOWED_BASH_PATTERNS = [
|
|
|
77
75
|
/--dry-run/,
|
|
78
76
|
/--help/,
|
|
79
77
|
/\bwip-release\b.*--dry-run/,
|
|
78
|
+
/\bnpm\s+install\s+-g\b/, // global installs modify /opt/homebrew/, not the repo
|
|
79
|
+
/\bnpm\s+link\b/, // global operation, not repo-local
|
|
80
80
|
];
|
|
81
81
|
|
|
82
82
|
function deny(reason) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wipcomputer/universal-installer",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.31",
|
|
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",
|