lazyclaw 3.99.18 → 3.99.20
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/cli.mjs +8 -0
- package/package.json +1 -1
package/cli.mjs
CHANGED
|
@@ -4444,6 +4444,14 @@ async function cmdLauncher() {
|
|
|
4444
4444
|
try { process.stdin.pause(); } catch (_) {}
|
|
4445
4445
|
try { process.stdin.unref(); } catch (_) {}
|
|
4446
4446
|
}
|
|
4447
|
+
// User reached the end of the launcher session — Quit / Esc / q /
|
|
4448
|
+
// /exit / /quit / Ctrl-C, or a failed first-run setup. Skip the
|
|
4449
|
+
// natural-exit wait and terminate now: a previously imported
|
|
4450
|
+
// subcommand (ollama auto-start probe, registry caches, retry timers,
|
|
4451
|
+
// etc.) may have registered an interval or socket that keeps the
|
|
4452
|
+
// event loop alive for several seconds. Ctrl-C exits immediately;
|
|
4453
|
+
// /exit and Quit should feel the same.
|
|
4454
|
+
process.exit(0);
|
|
4447
4455
|
}
|
|
4448
4456
|
|
|
4449
4457
|
async function _quickPrompt(label) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lazyclaw",
|
|
3
|
-
"version": "3.99.
|
|
3
|
+
"version": "3.99.20",
|
|
4
4
|
"description": "Lazy, elegant terminal CLI for chatting with Claude / OpenAI / Gemini / Ollama and orchestrating multi-step LLM workflows. Banner-on-launch, slash-command ghost autocomplete, persistent sessions, local HTTP gateway.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|