@automagik/genie 3.260317.12 → 3.260317.13

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.
@@ -0,0 +1,7 @@
1
+
2
+
3
+ ### 🐛 Bug Fixes
4
+ - **core:** add core.bare safety to pruneStaleWorktrees too ([`19c724d`](https://github.com/automagik-dev/genie/commit/19c724debae2a86f531c052ce66ebb52bf587601))
5
+
6
+ ### 👥 Contributors
7
+ - Test
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automagik/genie",
3
- "version": "3.260317.12",
3
+ "version": "3.260317.13",
4
4
  "description": "Collaborative terminal toolkit for human + AI workflows",
5
5
  "type": "module",
6
6
  "bin": {
@@ -46,7 +46,9 @@
46
46
  "url": "git+https://github.com/automagik-dev/genie.git"
47
47
  },
48
48
  "openclaw": {
49
- "extensions": ["./plugins/genie/index.ts"]
49
+ "extensions": [
50
+ "./plugins/genie/index.ts"
51
+ ]
50
52
  },
51
53
  "engines": {
52
54
  "bun": ">=1.3.10"
@@ -54,5 +56,7 @@
54
56
  "publishConfig": {
55
57
  "access": "public"
56
58
  },
57
- "trustedDependencies": ["@biomejs/biome"]
59
+ "trustedDependencies": [
60
+ "@biomejs/biome"
61
+ ]
58
62
  }
@@ -392,6 +392,7 @@ export async function pruneStaleWorktrees(repoPath: string): Promise<void> {
392
392
  // Clean git's worktree tracking
393
393
  try {
394
394
  await $`git -C ${repoPath} worktree prune`.quiet();
395
+ await $`git -C ${repoPath} config core.bare false`.quiet();
395
396
  } catch {
396
397
  // Best-effort
397
398
  }