@wipcomputer/wip-ai-devops-toolbox 1.9.71-alpha.2 → 1.9.71-alpha.4

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
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.9.71-alpha.4 (2026-04-04)
4
+
5
+ Guard: allow cp/mv/mkdir hotfixes to deployed extensions
6
+
7
+ ## 1.9.71-alpha.3 (2026-04-04)
8
+
9
+ Guard: allow cp/mv/mkdir hotfixes to deployed extensions (.openclaw|.ldm)/extensions/, add .ldm/extensions/ to shared-state patterns for symmetry with .openclaw/extensions/
10
+
3
11
  ## 1.9.71-alpha.2 (2026-04-03)
4
12
 
5
13
  Guard: allow bootstrap in zero-commit repos
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-ai-devops-toolbox",
3
- "version": "1.9.71-alpha.2",
3
+ "version": "1.9.71-alpha.4",
4
4
  "type": "module",
5
5
  "description": "The complete AI DevOps toolkit for AI-assisted development teams.",
6
6
  "license": "MIT",
@@ -134,6 +134,9 @@ const ALLOWED_BASH_PATTERNS = [
134
134
  /\bldm\s+(install|init|doctor|stack|updates)\b/, // LDM OS commands modify ~/.ldm/, not the repo
135
135
  /\brm\s+.*\.ldm\/state\//, // cleaning LDM state files only, not repo files
136
136
  /\brm\s+.*\.(openclaw|ldm)\/extensions\//, // cleaning deployed extensions (managed by ldm install, not source code)
137
+ /\bcp\s+.*\.(openclaw|ldm)\/extensions\//, // hotfix deploy: cp plugin builds to extensions (ldm install is canonical)
138
+ /\bmv\s+.*\.(openclaw|ldm)\/extensions\//, // hotfix deploy: mv within extensions
139
+ /\bmkdir\s+.*\.(openclaw|ldm)\/extensions\//, // hotfix deploy: create extension dirs
137
140
  /\bclaude\s+mcp\b/, // MCP registration, not repo files
138
141
  /\bmkdir\s+.*\.worktrees\b/, // creating .worktrees/ directory is part of the process
139
142
  /\brm\s+.*\.trash-approved-to-rm/, // Parker's approved-for-deletion folder (only Parker moves files here, agents only rm)
@@ -455,6 +458,12 @@ This is a warning, not a block. If you need to create it here, retry.`);
455
458
  /\.ldm\/memory\/daily\/.*\.md$/,
456
459
  /\.ldm\/logs\//,
457
460
  /\.claude\/plans\//, // Claude Code plan files (plan mode)
461
+ /\.ldm\/shared\//, // Agent docs (deployed by installer)
462
+ /\.ldm\/messages\//, // Agent inbox (bridge messages)
463
+ /\.ldm\/templates\//, // Templates (deployed by installer)
464
+ /\.claude\/rules\//, // Deployed rules
465
+ /\.openclaw\/extensions\//, // Deployed OpenClaw extensions (runtime, not source)
466
+ /\.ldm\/extensions\//, // Deployed LDM extensions (runtime, not source; symmetry with openclaw)
458
467
  ];
459
468
 
460
469
  if (filePath && SHARED_STATE_PATTERNS.some(p => p.test(filePath))) {