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

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,8 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## 1.9.71-alpha.2 (2026-04-03)
3
+ ## 1.9.71-alpha.3 (2026-04-04)
4
4
 
5
- Guard: allow bootstrap in zero-commit repos
5
+ Guard: allow runtime paths + bootstrap zero-commit repos
6
+
7
+ ## 1.9.71-alpha.2 (2026-04-04)
8
+
9
+ Guard: allow runtime paths + bootstrap zero-commit repos
6
10
 
7
11
  ## 1.9.71-alpha.1 (2026-04-01)
8
12
 
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.3",
4
4
  "type": "module",
5
5
  "description": "The complete AI DevOps toolkit for AI-assisted development teams.",
6
6
  "license": "MIT",
@@ -455,6 +455,11 @@ This is a warning, not a block. If you need to create it here, retry.`);
455
455
  /\.ldm\/memory\/daily\/.*\.md$/,
456
456
  /\.ldm\/logs\//,
457
457
  /\.claude\/plans\//, // Claude Code plan files (plan mode)
458
+ /\.ldm\/shared\//, // Agent docs (deployed by installer)
459
+ /\.ldm\/messages\//, // Agent inbox (bridge messages)
460
+ /\.ldm\/templates\//, // Templates (deployed by installer)
461
+ /\.claude\/rules\//, // Deployed rules
462
+ /\.openclaw\/extensions\//, // Deployed extensions (runtime, not source)
458
463
  ];
459
464
 
460
465
  if (filePath && SHARED_STATE_PATTERNS.some(p => p.test(filePath))) {
@@ -1,23 +0,0 @@
1
- # Release Notes: wip-branch-guard v1.9.64
2
-
3
- **One-line summary of what this release does**
4
-
5
- Tell the story. What was broken or missing? What did we build? Why does the user care?
6
- Write at least one real paragraph of prose. Not just bullets. The release notes gate
7
- will block if there is no narrative. Bullets are fine for details, but the story comes first.
8
-
9
- ## The story
10
-
11
- (Write a paragraph here. What was the problem? What does this release fix? Why does it matter?
12
- This is what users read. Make it worth reading.)
13
-
14
- ## Issues closed
15
-
16
- - #296
17
- - #295
18
-
19
- ## How to verify
20
-
21
- ```bash
22
- # Commands to test the changes
23
- ```