@appchy/jarvis 0.1.97 → 0.1.99
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 +11 -3
- package/dist/bin.js.map +1 -1
- package/dist/data/mcp.mjs +1 -1
- package/package.json +3 -3
package/dist/data/mcp.mjs
CHANGED
|
@@ -237,7 +237,7 @@ async function freshness(ctx) {
|
|
|
237
237
|
reason = `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\`.`;
|
|
238
238
|
} else if (originUnknown) {
|
|
239
239
|
verdict = "unknown";
|
|
240
|
-
reason = `cannot reach ${origin?.ref}, so whether this is current
|
|
240
|
+
reason = `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"}.`;
|
|
241
241
|
} else if (behindHead) {
|
|
242
242
|
verdict = "stale";
|
|
243
243
|
reason = `${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.`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appchy/jarvis",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.99",
|
|
4
4
|
"description": "Jarvis — local AI coding assistant CLI",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -56,13 +56,13 @@
|
|
|
56
56
|
"tsup": "^8.5.1",
|
|
57
57
|
"typescript": "^5.7.0",
|
|
58
58
|
"vitest": "^2.1.0",
|
|
59
|
+
"@jarvis/agents": "1.0.0",
|
|
59
60
|
"@jarvis/anthropic": "1.0.0",
|
|
60
61
|
"@jarvis/board": "0.1.0",
|
|
61
|
-
"@jarvis/agents": "1.0.0",
|
|
62
62
|
"@jarvis/data": "0.1.0",
|
|
63
63
|
"@jarvis/logger": "1.0.0",
|
|
64
|
-
"@jarvis/errors": "1.0.0",
|
|
65
64
|
"@jarvis/rpc": "1.0.0",
|
|
65
|
+
"@jarvis/errors": "1.0.0",
|
|
66
66
|
"@jarvis/types": "1.0.0",
|
|
67
67
|
"@jarvis/typescript-config": "1.0.0",
|
|
68
68
|
"@jarvis/ui": "0.1.0",
|