@appchy/jarvis 0.1.110 → 0.1.112
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 +4 -2
- package/dist/bin.js.map +1 -1
- package/package.json +2 -2
package/dist/bin.js
CHANGED
|
@@ -2302,7 +2302,9 @@ Open Claude Code in a repo that has a work/ tree to see them.`);
|
|
|
2302
2302
|
|
|
2303
2303
|
// src/commands/init.ts
|
|
2304
2304
|
function register3(program) {
|
|
2305
|
-
program.command("init").description(
|
|
2305
|
+
program.command("init").description(
|
|
2306
|
+
"Set up this machine and the repo you are standing in; join an instance only if you name one"
|
|
2307
|
+
).option("--url <url>", "Also join the jarvis instance at this address").option("--skip-daemon", "Skip the background daemon install step").option("--force", "Re-ask all prompts even when config already has answers").action(async (opts) => {
|
|
2306
2308
|
const ok = await runInit({
|
|
2307
2309
|
url: opts.url,
|
|
2308
2310
|
skipDaemonInstall: opts.skipDaemon,
|
|
@@ -10282,7 +10284,7 @@ import { createRequire as createRequire2 } from "module";
|
|
|
10282
10284
|
var _require = createRequire2(import.meta.url);
|
|
10283
10285
|
var VERSION2 = _require("../package.json").version ?? "0.0.0";
|
|
10284
10286
|
var IS_DEV = String(_require("../package.json").name ?? "").endsWith("-dev");
|
|
10285
|
-
var SHA = "
|
|
10287
|
+
var SHA = "dd146f8";
|
|
10286
10288
|
var BUILT = "2026-09-12";
|
|
10287
10289
|
var BUILD = SHA ?? "source";
|
|
10288
10290
|
var BUILD_LABEL = `${SHA ? `${VERSION2} (${SHA}${BUILT ? ` ${BUILT}` : ""})` : `${VERSION2} (source)`}${IS_DEV ? " \u2014 development build" : ""}`;
|