@wipcomputer/wip-ai-devops-toolbox 1.9.71-alpha.1 → 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,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.9.71-alpha.3 (2026-04-04)
|
|
4
|
+
|
|
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
|
|
10
|
+
|
|
3
11
|
## 1.9.71-alpha.1 (2026-04-01)
|
|
4
12
|
|
|
5
13
|
File guard: allow harness memory writes, guard v1.9.69
|
package/package.json
CHANGED
|
@@ -413,6 +413,14 @@ This is a warning, not a block. If you need to create it here, retry.`);
|
|
|
413
413
|
process.exit(0);
|
|
414
414
|
}
|
|
415
415
|
|
|
416
|
+
// Allow everything in repos with zero commits (bootstrap)
|
|
417
|
+
try {
|
|
418
|
+
const hasCommits = execSync('git rev-parse HEAD', { cwd: repoDir, stdio: 'pipe' });
|
|
419
|
+
} catch {
|
|
420
|
+
// No commits yet. Allow the first commit so the repo can be bootstrapped.
|
|
421
|
+
process.exit(0);
|
|
422
|
+
}
|
|
423
|
+
|
|
416
424
|
if (branch !== 'main' && branch !== 'master' && worktree) {
|
|
417
425
|
// On a branch AND in a worktree. Correct workflow. Allow.
|
|
418
426
|
process.exit(0);
|
|
@@ -447,6 +455,11 @@ This is a warning, not a block. If you need to create it here, retry.`);
|
|
|
447
455
|
/\.ldm\/memory\/daily\/.*\.md$/,
|
|
448
456
|
/\.ldm\/logs\//,
|
|
449
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)
|
|
450
463
|
];
|
|
451
464
|
|
|
452
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
|
-
```
|