@wipcomputer/wip-ai-devops-toolbox 1.9.47 → 1.9.48

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,31 @@
31
31
 
32
32
 
33
33
 
34
+
35
+ ## 1.9.48 (2026-03-20)
36
+
37
+ # Release Notes: wip-ai-devops-toolbox v1.9.48
38
+
39
+ **Document wip-repos claude command in SKILL.md and TECHNICAL.md.**
40
+
41
+ ## What changed
42
+
43
+ - SKILL.md: added `wip-repos claude` commands to the wip-repos section
44
+ - TECHNICAL.md: full documentation of how the ecosystem generator works, template locations, delimiter convention
45
+
46
+ ## Why
47
+
48
+ v1.9.47 shipped the `wip-repos claude` command without updating technical docs. Now documented.
49
+
50
+ ## Issues closed
51
+
52
+ - #212 (docs portion)
53
+
54
+ ## How to verify
55
+
56
+ ```bash
57
+ grep "wip-repos claude" SKILL.md TECHNICAL.md
58
+ ```
34
59
 
35
60
  ## 1.9.47 (2026-03-20)
36
61
 
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.47"
8
+ version: "1.9.48"
9
9
  homepage: "https://github.com/wipcomputer/wip-ai-devops-toolbox"
10
10
  author: "Parker Todd Brooks"
11
11
  category: dev-tools
@@ -89,7 +89,7 @@ If the user already has the toolbox installed (check `ldm status` or look for `w
89
89
 
90
90
  **Repo Management**
91
91
  4. **Repo Visibility Guard** ... blocks repos from going public without a -private counterpart. Prevents accidental exposure.
92
- 5. **Repo Manifest Reconciler** ... one source of truth for folder structure. Drift detection and auto-sync.
92
+ 5. **Repo Manifest Reconciler** ... one source of truth for folder structure. Drift detection, auto-sync, and cross-repo CLAUDE.md generation.
93
93
  6. **Repo Init** ... scaffolds the standard ai/ directory. Plans, notes, dev updates, todos. One command.
94
94
  7. **README Formatter** ... generates READMEs following the standard format. Staging, review, deploy.
95
95
  8. **Forced Git Worktrees** ... agents never edit on main. Isolated copies, PRs to merge back.
@@ -583,6 +583,10 @@ wip-repos sync # move repos to match manifest
583
583
  wip-repos add <org/repo> <category> # add a repo to the manifest
584
584
  wip-repos move <org/repo> <new-category> # move a repo in the manifest
585
585
  wip-repos tree # show the manifest as a tree
586
+ wip-repos claude # regenerate CLAUDE.md ecosystem sections for all repos
587
+ wip-repos claude <repo> # regenerate one repo's CLAUDE.md
588
+ wip-repos claude --init # create CLAUDE.md for repos missing one
589
+ wip-repos claude --dry-run # preview changes
586
590
  ```
587
591
 
588
592
  **What it does:**
@@ -590,6 +594,7 @@ wip-repos tree # show the manifest as a tree
590
594
  - Compares against the actual filesystem
591
595
  - `check` reports drift (repos in wrong locations, missing repos, unknown repos)
592
596
  - `sync` moves repos to match the manifest
597
+ - `claude` generates cross-repo ecosystem context in CLAUDE.md files. Each repo gets a list of related repos with their interfaces, CLI commands, and descriptions. Agents can't read sibling repos at runtime, so this pre-generates the context they need.
593
598
 
594
599
  **MCP tools:** `repos_check`, `repos_sync_plan`, `repos_add`, `repos_move`, `repos_tree`
595
600
 
package/TECHNICAL.md CHANGED
@@ -189,7 +189,7 @@ bash scripts/deploy-public.sh /path/to/private-repo wipcomputer/public-repo
189
189
 
190
190
  ### wip-repos
191
191
 
192
- Repo manifest reconciler. Makes `repos-manifest.json` the single source of truth for repo organization. Like prettier for folder structure. Move folders around all day; on sync, everything snaps back to where the manifest says.
192
+ Repo manifest reconciler. Makes `repos-manifest.json` the single source of truth for repo organization. Like prettier for folder structure. Move folders around all day; on sync, everything snaps back to where the manifest says. Also generates cross-repo CLAUDE.md ecosystem sections.
193
193
 
194
194
  ```bash
195
195
  # Check for drift
@@ -206,9 +206,27 @@ wip-repos move ldm-os/utilities/my-tool --to ldm-os/devops/my-tool
206
206
 
207
207
  # Generate directory tree
208
208
  wip-repos tree
209
+
210
+ # Generate cross-repo CLAUDE.md ecosystem sections
211
+ wip-repos claude # all repos
212
+ wip-repos claude my-repo # one repo
213
+ wip-repos claude --init # create CLAUDE.md for repos missing one
214
+ wip-repos claude --dry-run # preview
209
215
  ```
210
216
 
211
- **Source:** Pure JavaScript, no build step. [`tools/wip-repos/core.mjs`](tools/wip-repos/core.mjs) (logic), [`tools/wip-repos/cli.mjs`](tools/wip-repos/cli.mjs) (CLI). Zero dependencies.
217
+ **How `wip-repos claude` works:**
218
+
219
+ Agents can't read sibling repos at runtime. This command solves that by pre-generating cross-repo context into each repo's CLAUDE.md.
220
+
221
+ 1. Reads all repos from `repos-manifest.json`
222
+ 2. Extracts metadata from each: `package.json` (name, version, bin, exports), `SKILL.md` (interfaces), directory structure
223
+ 3. For each repo, determines relevant siblings (same category + core repos)
224
+ 4. Generates an `## Ecosystem` section between `<!-- wip-repos:start -->` / `<!-- wip-repos:end -->` delimiter comments
225
+ 5. Hand-written CLAUDE.md content outside the delimiters is never touched
226
+
227
+ Templates at `templates/global-claude-md.md` (for `~/.claude/CLAUDE.md`) and `templates/repo-claude-md.template` (for per-repo starter).
228
+
229
+ **Source:** Pure JavaScript, no build step. [`tools/wip-repos/core.mjs`](tools/wip-repos/core.mjs) (manifest logic), [`tools/wip-repos/claude.mjs`](tools/wip-repos/claude.mjs) (ecosystem generator), [`tools/wip-repos/cli.mjs`](tools/wip-repos/cli.mjs) (CLI). Zero dependencies.
212
230
 
213
231
  [README](tools/wip-repos/README.md)
214
232
 
@@ -0,0 +1,22 @@
1
+ # Release Notes: wip-ai-devops-toolbox v1.9.48
2
+
3
+ **Document wip-repos claude command in SKILL.md and TECHNICAL.md.**
4
+
5
+ ## What changed
6
+
7
+ - SKILL.md: added `wip-repos claude` commands to the wip-repos section
8
+ - TECHNICAL.md: full documentation of how the ecosystem generator works, template locations, delimiter convention
9
+
10
+ ## Why
11
+
12
+ v1.9.47 shipped the `wip-repos claude` command without updating technical docs. Now documented.
13
+
14
+ ## Issues closed
15
+
16
+ - #212 (docs portion)
17
+
18
+ ## How to verify
19
+
20
+ ```bash
21
+ grep "wip-repos claude" SKILL.md TECHNICAL.md
22
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-ai-devops-toolbox",
3
- "version": "1.9.47",
3
+ "version": "1.9.48",
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.47",
3
+ "version": "1.9.48",
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.47",
3
+ "version": "1.9.48",
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.47",
3
+ "version": "1.9.48",
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.47",
3
+ "version": "1.9.48",
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.47",
3
+ "version": "1.9.48",
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.47",
3
+ "version": "1.9.48",
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.47",
3
+ "version": "1.9.48",
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.47",
3
+ "version": "1.9.48",
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.47",
3
+ "version": "1.9.48",
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.47",
3
+ "version": "1.9.48",
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.47",
3
+ "version": "1.9.48",
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.47",
3
+ "version": "1.9.48",
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",