@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.
- package/dist/genie.js +12 -12
- package/git-cliff/CHANGELOG.md +7 -0
- package/package.json +7 -3
- package/src/lib/team-manager.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automagik/genie",
|
|
3
|
-
"version": "3.260317.
|
|
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": [
|
|
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": [
|
|
59
|
+
"trustedDependencies": [
|
|
60
|
+
"@biomejs/biome"
|
|
61
|
+
]
|
|
58
62
|
}
|
package/src/lib/team-manager.ts
CHANGED
|
@@ -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
|
}
|