@wipcomputer/wip-ai-devops-toolbox 1.9.20 → 1.9.21
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 +4 -0
- package/SKILL.md +20 -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 +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
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.21"
|
|
9
9
|
homepage: "https://github.com/wipcomputer/wip-ai-devops-toolbox"
|
|
10
10
|
author: "Parker Todd Brooks"
|
|
11
11
|
category: dev-tools
|
|
@@ -74,6 +74,25 @@ The tools in this toolbox use different capabilities. Check what you have and te
|
|
|
74
74
|
|
|
75
75
|
**You are an AI agent helping a user install AI DevOps Toolbox. Walk them through the process step by step. Ask questions, explain what you're doing, and let them make choices.**
|
|
76
76
|
|
|
77
|
+
### Already installed? Show what they have.
|
|
78
|
+
|
|
79
|
+
If the user already has the toolbox installed (check `ldm status` or look for `wip-release` on PATH), show them what they have with descriptions. Don't just list versions. Explain what each tool does:
|
|
80
|
+
|
|
81
|
+
- **wip-release** ... one-command releases (version bump, changelog, npm publish, GitHub release)
|
|
82
|
+
- **wip-license-hook** ... catches license changes in dependencies before they ship
|
|
83
|
+
- **wip-license-guard** ... enforces your own repo's copyright, LICENSE file, CLA
|
|
84
|
+
- **wip-file-guard** ... blocks destructive edits to identity files (CLAUDE.md, SOUL.md, MEMORY.md)
|
|
85
|
+
- **wip-repo-permissions-hook** ... blocks repos from going public without a -private counterpart
|
|
86
|
+
- **wip-repos** ... one source of truth for repo folder structure
|
|
87
|
+
- **wip-repo-init** ... scaffolds the standard ai/ directory in any repo
|
|
88
|
+
- **wip-readme-format** ... generates READMEs following a standard format
|
|
89
|
+
- **wip-branch-guard** ... blocks all writes on main branch (forces worktrees/branches)
|
|
90
|
+
- **deploy-public** ... syncs private repos to public mirrors
|
|
91
|
+
- **post-merge-rename** ... renames merged branches with dates for cleanup
|
|
92
|
+
- **universal-installer** ... detects and deploys tool interfaces
|
|
93
|
+
|
|
94
|
+
Show the version next to each. If an update is available, tell the user and offer to update via `ldm install wipcomputer/wip-ai-devops-toolbox`.
|
|
95
|
+
|
|
77
96
|
### Step 0: Check for LDM OS
|
|
78
97
|
|
|
79
98
|
LDM OS is the shared infrastructure that manages tool installation across all your AIs. Check if it's installed:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wipcomputer/universal-installer",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.21",
|
|
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",
|