@appchy/jarvis 0.1.97 → 0.1.98
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 +2 -2
- package/dist/bin.js.map +1 -1
- package/dist/data/mcp.mjs +1 -1
- package/package.json +3 -3
package/dist/bin.js
CHANGED
|
@@ -7118,7 +7118,7 @@ async function freshness(ctx) {
|
|
|
7118
7118
|
reason2 = `this checkout is ${origin?.behindBy} commit(s) behind ${origin?.ref} \u2014 the map and the board both describe an older world than the origin's. Pull, then \`jarvis build graph\`.`;
|
|
7119
7119
|
} else if (originUnknown) {
|
|
7120
7120
|
verdict = "unknown";
|
|
7121
|
-
reason2 = `cannot reach ${origin?.ref}, so whether this is current
|
|
7121
|
+
reason2 = `cannot reach ${origin?.ref}, so I cannot tell whether this is current \u2014 UNKNOWN rather than out of date, and rebuilding cannot answer it${origin?.lastSyncedIso ? `. Last heard from a remote at ${origin.lastSyncedIso}` : ", and this clone has never fetched"}.`;
|
|
7122
7122
|
} else if (behindHead) {
|
|
7123
7123
|
verdict = "stale";
|
|
7124
7124
|
reason2 = `${graphRel} is ${describeBehind(behindHeadBy, behindHeadForMs)} \u2014 run \`jarvis build graph\` (the incremental update \u2014 it re-extracts in place), then traces and impact are trustworthy again. \`--rebuild\` re-extracts from scratch and relabels; it is for a graph still wrong after a plain build, not for ordinary drift.`;
|
|
@@ -10252,7 +10252,7 @@ import { createRequire as createRequire2 } from "module";
|
|
|
10252
10252
|
var _require = createRequire2(import.meta.url);
|
|
10253
10253
|
var VERSION2 = _require("../package.json").version ?? "0.0.0";
|
|
10254
10254
|
var IS_DEV = String(_require("../package.json").name ?? "").endsWith("-dev");
|
|
10255
|
-
var SHA = "
|
|
10255
|
+
var SHA = "43aad76";
|
|
10256
10256
|
var BUILT = "2026-09-11";
|
|
10257
10257
|
var BUILD = SHA ?? "source";
|
|
10258
10258
|
var BUILD_LABEL = `${SHA ? `${VERSION2} (${SHA}${BUILT ? ` ${BUILT}` : ""})` : `${VERSION2} (source)`}${IS_DEV ? " \u2014 development build" : ""}`;
|