@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 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.30"
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-ai-devops-toolbox",
3
- "version": "1.9.30",
3
+ "version": "1.9.31",
4
4
  "type": "module",
5
5
  "description": "The complete AI DevOps toolkit for AI-assisted development teams.",
6
6
  "license": "MIT",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/deploy-public",
3
- "version": "1.9.30",
3
+ "version": "1.9.31",
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.30",
3
+ "version": "1.9.31",
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"
@@ -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/wip-branch-guard",
3
- "version": "1.9.30",
3
+ "version": "1.9.31",
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.30",
3
+ "version": "1.9.31",
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.30",
3
+ "version": "1.9.31",
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.30",
3
+ "version": "1.9.31",
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.30",
3
+ "version": "1.9.31",
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.30",
3
+ "version": "1.9.31",
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.30",
3
+ "version": "1.9.31",
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.30",
3
+ "version": "1.9.31",
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.30",
3
+ "version": "1.9.31",
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.30",
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",