@appchy/jarvis 0.1.107 → 0.1.108
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 -5
- package/dist/bin.js.map +1 -1
- package/package.json +4 -4
package/dist/bin.js
CHANGED
|
@@ -2325,14 +2325,14 @@ function register4(program) {
|
|
|
2325
2325
|
});
|
|
2326
2326
|
}
|
|
2327
2327
|
async function runInit(options = {}) {
|
|
2328
|
-
const url = options.url
|
|
2328
|
+
const url = options.url;
|
|
2329
2329
|
const prompts = options.prompts ?? defaultPrompts();
|
|
2330
2330
|
try {
|
|
2331
2331
|
console.log("\n Jarvis setup");
|
|
2332
2332
|
console.log(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n");
|
|
2333
2333
|
await setUpThisMachine(prompts);
|
|
2334
2334
|
if (!url) {
|
|
2335
|
-
|
|
2335
|
+
reportSetUp(loadConfig()?.url);
|
|
2336
2336
|
return true;
|
|
2337
2337
|
}
|
|
2338
2338
|
console.log(` \u25B8 Pairing this machine [${url}]`);
|
|
@@ -2468,13 +2468,19 @@ function putItOnPath(dir) {
|
|
|
2468
2468
|
export PATH="${dir}:$PATH"
|
|
2469
2469
|
`;
|
|
2470
2470
|
}
|
|
2471
|
-
function
|
|
2471
|
+
function reportSetUp(joined) {
|
|
2472
2472
|
console.log(" \u2714 Done. This machine works in any repo that has a work/ tree:");
|
|
2473
2473
|
console.log(" the board, the map, the session block, the rules that arrive on edit,");
|
|
2474
2474
|
console.log(" and 'jarvis serve' for any agent that speaks MCP.\n");
|
|
2475
2475
|
console.log(" In a repo you have cloned: jarvis repo init");
|
|
2476
2476
|
console.log(" jarvis build graph");
|
|
2477
2477
|
console.log(" jarvis work list\n");
|
|
2478
|
+
if (joined) {
|
|
2479
|
+
console.log(` It joined ${joined} before, and still has it \u2014 setup does not`);
|
|
2480
|
+
console.log(" renew that standing, so nothing here went near it:");
|
|
2481
|
+
console.log(" jarvis pair renew this machine when a token expires\n");
|
|
2482
|
+
return;
|
|
2483
|
+
}
|
|
2478
2484
|
console.log(" It has joined no jarvis instance, so it has no web surface and cannot");
|
|
2479
2485
|
console.log(" start sessions on other machines. Both need one:");
|
|
2480
2486
|
console.log(" jarvis init --url <address>\n");
|
|
@@ -10281,8 +10287,8 @@ import { createRequire as createRequire2 } from "module";
|
|
|
10281
10287
|
var _require = createRequire2(import.meta.url);
|
|
10282
10288
|
var VERSION2 = _require("../package.json").version ?? "0.0.0";
|
|
10283
10289
|
var IS_DEV = String(_require("../package.json").name ?? "").endsWith("-dev");
|
|
10284
|
-
var SHA = "
|
|
10285
|
-
var BUILT = "2026-09-
|
|
10290
|
+
var SHA = "80c44b6";
|
|
10291
|
+
var BUILT = "2026-09-12";
|
|
10286
10292
|
var BUILD = SHA ?? "source";
|
|
10287
10293
|
var BUILD_LABEL = `${SHA ? `${VERSION2} (${SHA}${BUILT ? ` ${BUILT}` : ""})` : `${VERSION2} (source)`}${IS_DEV ? " \u2014 development build" : ""}`;
|
|
10288
10294
|
|