@wipcomputer/wip-ai-devops-toolbox 1.9.32 → 1.9.33
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 +23 -0
- package/SKILL.md +1 -1
- package/_trash/RELEASE-NOTES-v1-9-32.md +18 -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/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 +2 -6
package/CHANGELOG.md
CHANGED
|
@@ -31,6 +31,29 @@
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
34
|
+
|
|
35
|
+
## 1.9.33 (2026-03-15)
|
|
36
|
+
|
|
37
|
+
# --version on all CLIs + issue cleanup
|
|
38
|
+
|
|
39
|
+
**Date:** 2026-03-15
|
|
40
|
+
**Closes:** #190, #191, #169, #123, #119
|
|
41
|
+
|
|
42
|
+
## What changed
|
|
43
|
+
|
|
44
|
+
All 7 CLI tools now support `--version` and `-v`. Each reads its own `package.json` and prints the version. Previously, `wip-release --version` printed the help text instead of a version number.
|
|
45
|
+
|
|
46
|
+
Tools updated: wip-release, wip-repos, wip-license-guard, wip-repo-permissions, wip-repo-init, wip-readme-format, wip-file-guard, wip-branch-guard.
|
|
47
|
+
|
|
48
|
+
wip-license-guard also got a proper README (#169) with all commands, config format, and integration docs.
|
|
49
|
+
|
|
50
|
+
## Issues closed
|
|
51
|
+
|
|
52
|
+
- #190: wip-release --version should work
|
|
53
|
+
- #191: enforce --version on all CLI tools
|
|
54
|
+
- #169: wip-license-guard needs its own README
|
|
55
|
+
- #123: Merge/Deploy/Install conflated (enforced across v1.9.25-v1.9.30)
|
|
56
|
+
- #119: All destructive tools must have --dry-run (all confirmed)
|
|
34
57
|
|
|
35
58
|
## 1.9.32 (2026-03-15)
|
|
36
59
|
|
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.33"
|
|
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.32
|
|
2
|
+
|
|
3
|
+
Remove wip-install binary from toolbox. It lives in LDM OS now.
|
|
4
|
+
|
|
5
|
+
## What changed
|
|
6
|
+
|
|
7
|
+
The `wip-install` CLI binary has been removed from `@wipcomputer/universal-installer`. It now ships with `@wipcomputer/wip-ldm-os` (v0.4.1+). This prevents the EEXIST collision that blocked `npm install -g @wipcomputer/wip-ldm-os` when both packages tried to own the same binary.
|
|
8
|
+
|
|
9
|
+
## Issues closed
|
|
10
|
+
|
|
11
|
+
- Closes wipcomputer/wip-ldm-os#46
|
|
12
|
+
|
|
13
|
+
## How to verify
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install -g @wipcomputer/wip-ldm-os@0.4.1 # no EEXIST error
|
|
17
|
+
which wip-install # points to LDM OS, not toolbox
|
|
18
|
+
```
|
package/package.json
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wipcomputer/universal-installer",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.33",
|
|
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",
|
|
7
|
-
"bin": {
|
|
8
|
-
"wip-install": "install.js"
|
|
9
|
-
},
|
|
10
7
|
"exports": {
|
|
11
8
|
".": "./detect.mjs",
|
|
12
|
-
"./detect": "./detect.mjs"
|
|
13
|
-
"./install": "./install.js"
|
|
9
|
+
"./detect": "./detect.mjs"
|
|
14
10
|
},
|
|
15
11
|
"scripts": {
|
|
16
12
|
"test": "node install.js --help"
|