fluxflow-cli 1.7.18 → 1.7.19
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/fluxflow.js +53 -13
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -362,18 +362,58 @@ var init_ChatLayout = __esm({
|
|
|
362
362
|
}
|
|
363
363
|
if (msg.isHelpRecord) {
|
|
364
364
|
const commandList = [
|
|
365
|
-
{ cmd: "/
|
|
366
|
-
{ cmd: "/
|
|
367
|
-
{ cmd: "/
|
|
368
|
-
{ cmd: "/
|
|
369
|
-
{ cmd: "/
|
|
370
|
-
{ cmd: "/
|
|
371
|
-
{
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
365
|
+
{ cmd: "/quit", desc: "Exit and shutdown Flux" },
|
|
366
|
+
{ cmd: "/help", desc: "Show all available commands" },
|
|
367
|
+
{ cmd: "/clear", desc: "Clear terminal screen" },
|
|
368
|
+
{ cmd: "/resume", desc: "Load previous session" },
|
|
369
|
+
{ cmd: "/save", desc: "Force save current chat" },
|
|
370
|
+
{ cmd: "/chats", desc: "List all chat sessions" },
|
|
371
|
+
{
|
|
372
|
+
cmd: "/mode",
|
|
373
|
+
desc: "Toggle Flux/Flow modes",
|
|
374
|
+
subs: [
|
|
375
|
+
{ cmd: "flux", desc: "Enable Dev toolset" },
|
|
376
|
+
{ cmd: "flow", desc: "Enable Chat mode" }
|
|
377
|
+
]
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
cmd: "/thinking",
|
|
381
|
+
desc: "Set AI reasoning depth",
|
|
382
|
+
subs: [
|
|
383
|
+
{ cmd: "low", desc: "Fastest reasoning" },
|
|
384
|
+
{ cmd: "medium", desc: "Balanced depth" },
|
|
385
|
+
{ cmd: "high", desc: "Complex coding" },
|
|
386
|
+
{ cmd: "max", desc: "Architectural depth" },
|
|
387
|
+
{ cmd: "show", desc: "Show full thoughts" },
|
|
388
|
+
{ cmd: "hide", desc: "Show concise thoughts" }
|
|
389
|
+
]
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
cmd: "/model",
|
|
393
|
+
desc: "Switch AI model",
|
|
394
|
+
subs: [
|
|
395
|
+
{ cmd: "gemma-4-31b-it", desc: "Standard Default (Free, Recommended)" },
|
|
396
|
+
{ cmd: "gemini-3.1-pro-preview", desc: "Most Capable (Paid)" },
|
|
397
|
+
{ cmd: "gemini-3-flash-preview", desc: "Fast & Lightweight (Paid, Free limited quota)" },
|
|
398
|
+
{ cmd: "gemini-3.1-flash-lite-preview", desc: "Ultra Fast (Paid, Free limited quota)" }
|
|
399
|
+
]
|
|
400
|
+
},
|
|
401
|
+
{ cmd: "/settings", desc: "Configure system prefs" },
|
|
402
|
+
{ cmd: "/key", desc: "Manage API keys" },
|
|
403
|
+
{ cmd: "/profile", desc: "Edit developer persona" },
|
|
404
|
+
{ cmd: "/memory", desc: "Manage agent memory" },
|
|
405
|
+
{ cmd: "/stats", desc: "Show session usage" },
|
|
406
|
+
{ cmd: "/reset", desc: "Wipe all project data" },
|
|
407
|
+
{ cmd: "/about", desc: "Project info & credits" },
|
|
408
|
+
{ cmd: "/changelog", desc: "View latest updates" },
|
|
409
|
+
{
|
|
410
|
+
cmd: "/update",
|
|
411
|
+
desc: "Check/Install updates",
|
|
412
|
+
subs: [
|
|
413
|
+
{ cmd: "check", desc: "Check for new version" },
|
|
414
|
+
{ cmd: "latest", desc: "Install latest release" }
|
|
415
|
+
]
|
|
416
|
+
}
|
|
377
417
|
];
|
|
378
418
|
return /* @__PURE__ */ React2.createElement(Box2, { marginBottom: 1, paddingX: 1, width: "100%" }, /* @__PURE__ */ React2.createElement(Box2, { flexDirection: "column", borderStyle: "round", borderColor: "magenta", paddingX: 2, paddingY: 1, width: "100%" }, /* @__PURE__ */ React2.createElement(Text2, { color: "magenta", bold: true, underline: true }, "\u{1F4DC} COMMAND REFERENCE"), /* @__PURE__ */ React2.createElement(Box2, { flexDirection: "column", marginTop: 1 }, commandList.map((c, i) => /* @__PURE__ */ React2.createElement(Box2, { key: i, flexDirection: "row" }, /* @__PURE__ */ React2.createElement(Box2, { width: 15 }, /* @__PURE__ */ React2.createElement(Text2, { color: "cyan", bold: true }, c.cmd)), /* @__PURE__ */ React2.createElement(Text2, { color: "gray" }, " - ", c.desc))))));
|
|
379
419
|
}
|
|
@@ -4733,7 +4773,7 @@ var init_app = __esm({
|
|
|
4733
4773
|
init_text();
|
|
4734
4774
|
SESSION_START_TIME = Date.now();
|
|
4735
4775
|
CHANGELOG_URL = "https://fluxflow-cli.onrender.com/changelog.html";
|
|
4736
|
-
versionFluxflow = "1.7.
|
|
4776
|
+
versionFluxflow = "1.7.19";
|
|
4737
4777
|
updatedOn = "2026-05-06";
|
|
4738
4778
|
ResolutionModal = ({ data, onResolve, onEdit }) => /* @__PURE__ */ React10.createElement(Box10, { flexDirection: "column", borderStyle: "round", borderColor: "magenta", paddingX: 2, paddingY: 1, width: "100%" }, /* @__PURE__ */ React10.createElement(Text10, { color: "magenta", bold: true, underline: true }, "\u{1F7E3} STEERING HINT RESOLUTION"), /* @__PURE__ */ React10.createElement(Text10, { marginTop: 1 }, "The agent already finished the task before your hint was consumed."), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1, backgroundColor: "#222", paddingX: 1, width: "100%" }, /* @__PURE__ */ React10.createElement(Text10, { italic: true, color: "gray" }, '"', data, '"')), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1 }, /* @__PURE__ */ React10.createElement(Text10, { color: "cyan" }, "How would you like to proceed?")), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1 }, /* @__PURE__ */ React10.createElement(
|
|
4739
4779
|
CommandMenu,
|