@wipcomputer/wip-ai-devops-toolbox 1.9.38 → 1.9.39
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/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 +8 -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/tools/wip-license-guard/{hook.mjs → guard.mjs} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -31,6 +31,35 @@
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
34
|
+
|
|
35
|
+
## 1.9.39 (2026-03-16)
|
|
36
|
+
|
|
37
|
+
# Wire license-guard as Claude Code PreToolUse hook
|
|
38
|
+
|
|
39
|
+
**Date:** 2026-03-16
|
|
40
|
+
**Closes:** #130
|
|
41
|
+
|
|
42
|
+
## What changed
|
|
43
|
+
|
|
44
|
+
license-guard now registers as a Claude Code PreToolUse hook on install. Previously the hook code existed (hook.mjs) but was never wired into the deploy system. Now:
|
|
45
|
+
|
|
46
|
+
- Renamed hook.mjs to guard.mjs (matches file-guard/branch-guard convention that LDM OS deploy.mjs expects)
|
|
47
|
+
- Added `claudeCode.hook` config to package.json (event: PreToolUse, matcher: Bash, timeout: 5)
|
|
48
|
+
- On next `ldm install`, the hook auto-registers in ~/.claude/settings.json
|
|
49
|
+
|
|
50
|
+
The hook blocks git commit and git push when license compliance fails:
|
|
51
|
+
- LICENSE file missing
|
|
52
|
+
- Copyright doesn't match .license-guard.json config
|
|
53
|
+
- CLA.md missing
|
|
54
|
+
- README.md missing ## License section
|
|
55
|
+
- MIT+AGPL config but LICENSE or README only mentions MIT
|
|
56
|
+
|
|
57
|
+
Repos without .license-guard.json are not affected (the hook silently passes).
|
|
58
|
+
|
|
59
|
+
## Also done
|
|
60
|
+
|
|
61
|
+
- Updated plan statuses: license guard Phase 1 complete, bootstrap LDM OS complete
|
|
62
|
+
- Bootstrap LDM OS was already shipped in install.js (lines 740-812)
|
|
34
63
|
|
|
35
64
|
## 1.9.38 (2026-03-16)
|
|
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.39"
|
|
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
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wipcomputer/wip-license-guard",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.39",
|
|
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": {
|
|
7
7
|
"wip-license-guard": "./cli.mjs"
|
|
8
8
|
},
|
|
9
|
+
"claudeCode": {
|
|
10
|
+
"hook": {
|
|
11
|
+
"event": "PreToolUse",
|
|
12
|
+
"matcher": "Bash",
|
|
13
|
+
"timeout": 5
|
|
14
|
+
}
|
|
15
|
+
},
|
|
9
16
|
"license": "MIT AND AGPL-3.0-or-later",
|
|
10
17
|
"repository": {
|
|
11
18
|
"type": "git",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wipcomputer/universal-installer",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.39",
|
|
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",
|
|
File without changes
|