@wipcomputer/wip-ldm-os 0.4.59 → 0.4.60
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/SKILL.md +1 -1
- package/bin/ldm.js +5 -5
- package/catalog.json +1 -1
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -9,7 +9,7 @@ license: MIT
|
|
|
9
9
|
compatibility: Requires git, npm, node. Node.js 18+.
|
|
10
10
|
metadata:
|
|
11
11
|
display-name: "LDM OS"
|
|
12
|
-
version: "0.4.
|
|
12
|
+
version: "0.4.60"
|
|
13
13
|
homepage: "https://github.com/wipcomputer/wip-ldm-os"
|
|
14
14
|
author: "Parker Todd Brooks"
|
|
15
15
|
category: infrastructure
|
package/bin/ldm.js
CHANGED
|
@@ -2727,7 +2727,7 @@ async function main() {
|
|
|
2727
2727
|
|
|
2728
2728
|
if (sub === '--help' || sub === '-h') {
|
|
2729
2729
|
console.log(`
|
|
2730
|
-
ldm worktree add <branch> Create worktree in
|
|
2730
|
+
ldm worktree add <branch> Create worktree in .worktrees/ (auto-detects repo)
|
|
2731
2731
|
ldm worktree list List all worktrees across repos
|
|
2732
2732
|
ldm worktree clean Prune worktrees for merged branches
|
|
2733
2733
|
ldm worktree remove <path> Remove a specific worktree
|
|
@@ -2756,7 +2756,7 @@ async function main() {
|
|
|
2756
2756
|
|
|
2757
2757
|
const repoName = basename(repoRoot);
|
|
2758
2758
|
const branchSuffix = branchName.replace(/\//g, '--');
|
|
2759
|
-
const worktreesDir = join(dirname(repoRoot), '
|
|
2759
|
+
const worktreesDir = join(dirname(repoRoot), '.worktrees');
|
|
2760
2760
|
const worktreePath = join(worktreesDir, `${repoName}--${branchSuffix}`);
|
|
2761
2761
|
|
|
2762
2762
|
mkdirSync(worktreesDir, { recursive: true });
|
|
@@ -2801,14 +2801,14 @@ async function main() {
|
|
|
2801
2801
|
}
|
|
2802
2802
|
} catch {}
|
|
2803
2803
|
|
|
2804
|
-
// Also check
|
|
2805
|
-
const worktreesDir = join(dirname(process.cwd()), '
|
|
2804
|
+
// Also check .worktrees/ dir
|
|
2805
|
+
const worktreesDir = join(dirname(process.cwd()), '.worktrees');
|
|
2806
2806
|
if (existsSync(worktreesDir)) {
|
|
2807
2807
|
try {
|
|
2808
2808
|
const entries = readdirSync(worktreesDir, { withFileTypes: true })
|
|
2809
2809
|
.filter(d => d.isDirectory());
|
|
2810
2810
|
if (entries.length > 0) {
|
|
2811
|
-
console.log(`
|
|
2811
|
+
console.log(` .worktrees/:`);
|
|
2812
2812
|
for (const d of entries) {
|
|
2813
2813
|
console.log(` ${d.name}`);
|
|
2814
2814
|
}
|
package/catalog.json
CHANGED
|
@@ -286,7 +286,7 @@
|
|
|
286
286
|
"id": "tavily",
|
|
287
287
|
"name": "Tavily",
|
|
288
288
|
"description": "Web search and content extraction via Tavily API.",
|
|
289
|
-
"npm": "tavily",
|
|
289
|
+
"npm": "@wipcomputer/openclaw-tavily",
|
|
290
290
|
"repo": "wipcomputer/openclaw-tavily",
|
|
291
291
|
"registryMatches": [
|
|
292
292
|
"tavily"
|