@appchy/jarvis 0.1.71 → 0.1.72

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/bin.js CHANGED
@@ -10109,7 +10109,7 @@ import { createRequire as createRequire2 } from "module";
10109
10109
  var _require = createRequire2(import.meta.url);
10110
10110
  var VERSION2 = _require("../package.json").version ?? "0.0.0";
10111
10111
  var IS_DEV = String(_require("../package.json").name ?? "").endsWith("-dev");
10112
- var SHA = "bf811fb";
10112
+ var SHA = "4c7a0e0";
10113
10113
  var BUILT = "2026-09-10";
10114
10114
  var BUILD = SHA ?? "source";
10115
10115
  var BUILD_LABEL = `${SHA ? `${VERSION2} (${SHA}${BUILT ? ` ${BUILT}` : ""})` : `${VERSION2} (source)`}${IS_DEV ? " \u2014 development build" : ""}`;
@@ -334,7 +334,19 @@ def cmd_move(args) -> int:
334
334
  if dest.exists():
335
335
  die(f"{rel(dest, root)} already exists")
336
336
  dest.parent.mkdir(parents=True, exist_ok=True)
337
+
338
+ # The bucket is part of every path that names this task, so a status change
339
+ # moves the folder and breaks whatever pointed at it — and `move` fires on every
340
+ # pickup and every completion, far more often than `place`. One audited board
341
+ # had 16 of its 37 broken links from a bucket change alone.
342
+ before = links.snapshot(root.parent)
343
+ moved_from = task.folder.resolve()
337
344
  shutil.move(str(task.folder), str(dest))
345
+ repaired, unresolved = links.repair(before, {moved_from: dest.resolve()})
346
+ if repaired:
347
+ print(f" repaired {repaired} link(s) that pointed at it")
348
+ for line in unresolved:
349
+ print(f" COULD NOT PLACE {line}")
338
350
 
339
351
  def mutate(d):
340
352
  d["updated"] = date.today().isoformat()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appchy/jarvis",
3
- "version": "0.1.71",
3
+ "version": "0.1.72",
4
4
  "description": "Jarvis — local AI coding assistant CLI",
5
5
  "private": false,
6
6
  "type": "module",
@@ -57,16 +57,16 @@
57
57
  "typescript": "^5.7.0",
58
58
  "vitest": "^2.1.0",
59
59
  "@jarvis/agents": "1.0.0",
60
- "@jarvis/anthropic": "1.0.0",
61
60
  "@jarvis/board": "0.1.0",
62
61
  "@jarvis/data": "0.1.0",
63
- "@jarvis/errors": "1.0.0",
64
62
  "@jarvis/logger": "1.0.0",
65
63
  "@jarvis/rpc": "1.0.0",
66
- "@jarvis/types": "1.0.0",
67
64
  "@jarvis/typescript-config": "1.0.0",
68
65
  "@jarvis/ui": "0.1.0",
69
- "@jarvis/vitest-config": "1.0.0"
66
+ "@jarvis/vitest-config": "1.0.0",
67
+ "@jarvis/anthropic": "1.0.0",
68
+ "@jarvis/types": "1.0.0",
69
+ "@jarvis/errors": "1.0.0"
70
70
  },
71
71
  "scripts": {
72
72
  "dev": "tsx watch src/bin.ts start --foreground",