@wipcomputer/wip-ai-devops-toolbox 1.9.32 → 1.9.34

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,46 @@
31
31
 
32
32
 
33
33
 
34
+
35
+ ## 1.9.34 (2026-03-16)
36
+
37
+ # GitHub Packages publish from public repo
38
+
39
+ **Date:** 2026-03-16
40
+ **Closes:** #193
41
+
42
+ ## What changed
43
+
44
+ `deploy-public.sh` now publishes to GitHub Packages from the public repo clone after the npm publish step. Previously, GitHub Packages were only published from the private repo during `wip-release`, so they showed on the private repo's Packages tab. Users couldn't see them.
45
+
46
+ Now packages show on the public repo's Packages tab where users expect to find them. Uses `gh auth token` for authentication (already available from the gh CLI).
47
+
48
+ ## Why
49
+
50
+ The Packages tab on public repos was empty. Users visiting wipcomputer/wip-ldm-os or wipcomputer/wip-ai-devops-toolbox saw no packages even though they were published. The packages existed but were linked to the private repo.
51
+
52
+ ## 1.9.33 (2026-03-15)
53
+
54
+ # --version on all CLIs + issue cleanup
55
+
56
+ **Date:** 2026-03-15
57
+ **Closes:** #190, #191, #169, #123, #119
58
+
59
+ ## What changed
60
+
61
+ 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.
62
+
63
+ Tools updated: wip-release, wip-repos, wip-license-guard, wip-repo-permissions, wip-repo-init, wip-readme-format, wip-file-guard, wip-branch-guard.
64
+
65
+ wip-license-guard also got a proper README (#169) with all commands, config format, and integration docs.
66
+
67
+ ## Issues closed
68
+
69
+ - #190: wip-release --version should work
70
+ - #191: enforce --version on all CLI tools
71
+ - #169: wip-license-guard needs its own README
72
+ - #123: Merge/Deploy/Install conflated (enforced across v1.9.25-v1.9.30)
73
+ - #119: All destructive tools must have --dry-run (all confirmed)
34
74
 
35
75
  ## 1.9.32 (2026-03-15)
36
76
 
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.32"
8
+ version: "1.9.34"
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-ai-devops-toolbox",
3
- "version": "1.9.32",
3
+ "version": "1.9.34",
4
4
  "type": "module",
5
5
  "description": "The complete AI DevOps toolkit for AI-assisted development teams.",
6
6
  "license": "MIT",
@@ -285,7 +285,40 @@ if [[ -n "${VERSION:-}" ]]; then
285
285
  done
286
286
  fi
287
287
 
288
- cd - > /dev/null
288
+ # Publish to GitHub Packages from public repo (#193)
289
+ echo "Publishing to GitHub Packages from public repo..."
290
+ GH_TOKEN=$(gh auth token 2>/dev/null || echo "")
291
+ if [[ -n "$GH_TOKEN" ]]; then
292
+ cd "$NPM_TMPDIR/public"
293
+
294
+ # Root package
295
+ if [[ "$IS_PRIVATE" != "true" ]]; then
296
+ echo "//npm.pkg.github.com/:_authToken=${GH_TOKEN}" > .npmrc
297
+ npm publish --registry https://npm.pkg.github.com/ --access public 2>/dev/null && echo " ✓ Published root to GitHub Packages" || echo " ✗ Root GitHub Packages publish failed (non-fatal)"
298
+ rm -f .npmrc
299
+ fi
300
+
301
+ # Sub-tools
302
+ if [[ -d "tools" ]]; then
303
+ for TOOL_DIR in tools/*/; do
304
+ if [[ -f "${TOOL_DIR}package.json" ]]; then
305
+ TOOL_PRIVATE=$(node -p "require('./${TOOL_DIR}package.json').private || false" 2>/dev/null)
306
+ if [[ "$TOOL_PRIVATE" != "true" ]]; then
307
+ TOOL_NAME=$(node -p "require('./${TOOL_DIR}package.json').name" 2>/dev/null)
308
+ echo "//npm.pkg.github.com/:_authToken=${GH_TOKEN}" > "${TOOL_DIR}.npmrc"
309
+ (cd "$TOOL_DIR" && npm publish --registry https://npm.pkg.github.com/ --access public 2>/dev/null) && echo " ✓ Published $TOOL_NAME to GitHub Packages" || echo " ✗ GitHub Packages failed for $TOOL_NAME (non-fatal)"
310
+ rm -f "${TOOL_DIR}.npmrc"
311
+ fi
312
+ fi
313
+ done
314
+ fi
315
+
316
+ cd - > /dev/null
317
+ else
318
+ echo " ! gh auth token not found. Skipping GitHub Packages publish."
319
+ fi
320
+
321
+ cd - > /dev/null 2>/dev/null || true
289
322
  else
290
323
  echo " ! npm Token not found in 1Password. Skipping npm publish."
291
324
  fi
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/deploy-public",
3
- "version": "1.9.32",
3
+ "version": "1.9.34",
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.32",
3
+ "version": "1.9.34",
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"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-branch-guard",
3
- "version": "1.9.32",
3
+ "version": "1.9.34",
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.32",
3
+ "version": "1.9.34",
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.32",
3
+ "version": "1.9.34",
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.32",
3
+ "version": "1.9.34",
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.32",
3
+ "version": "1.9.34",
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.32",
3
+ "version": "1.9.34",
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.32",
3
+ "version": "1.9.34",
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.32",
3
+ "version": "1.9.34",
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.32",
3
+ "version": "1.9.34",
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,16 +1,12 @@
1
1
  {
2
2
  "name": "@wipcomputer/universal-installer",
3
- "version": "1.9.32",
3
+ "version": "1.9.34",
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"