fluxflow-cli 3.4.9 → 3.4.11

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 CHANGED
@@ -5112,7 +5112,7 @@ var init_StatusBar = __esm({
5112
5112
  paddingX: 1,
5113
5113
  width: "100%"
5114
5114
  },
5115
- /* @__PURE__ */ React5.createElement(Box4, null, /* @__PURE__ */ React5.createElement(Box4, { marginRight: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: "white", bold: true }, mode.toUpperCase())), /* @__PURE__ */ React5.createElement(Text5, { color: "gray", dimColor: true }, "\u2503"), /* @__PURE__ */ React5.createElement(Box4, { marginX: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: "white", bold: true }, thinkingLevel.toUpperCase())), /* @__PURE__ */ React5.createElement(Text5, { color: "gray", dimColor: true }, "\u2503"), /* @__PURE__ */ React5.createElement(Box4, { marginX: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: "gray", bold: true }, "MEM: "), /* @__PURE__ */ React5.createElement(Text5, { color: "white", bold: true }, isMemoryEnabled ? "ON" : "OFF"))),
5115
+ /* @__PURE__ */ React5.createElement(Box4, null, /* @__PURE__ */ React5.createElement(Box4, { marginRight: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: "white", bold: true }, mode.toUpperCase())), /* @__PURE__ */ React5.createElement(Text5, { color: "gray", dimColor: true }, "\u2503"), /* @__PURE__ */ React5.createElement(Box4, { marginX: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: "white", bold: true }, thinkingLevel.toUpperCase())), isMemoryEnabled && /* @__PURE__ */ React5.createElement(Box4, null, /* @__PURE__ */ React5.createElement(Text5, { color: "gray", dimColor: true }, "\u2503"), /* @__PURE__ */ React5.createElement(Box4, { marginX: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: "gray", bold: true }, "MEM: "), /* @__PURE__ */ React5.createElement(Text5, { color: "white", bold: true }, isMemoryEnabled ? "ON" : "OFF")))),
5116
5116
  /* @__PURE__ */ React5.createElement(Box4, { flexGrow: 1, justifyContent: "center", paddingX: 2 }, /* @__PURE__ */ React5.createElement(Text5, { color: "white", italic: true }, truncatePath(process.cwd(), 35))),
5117
5117
  /* @__PURE__ */ React5.createElement(Box4, null, isProcessing ? /* @__PURE__ */ React5.createElement(Box4, { marginRight: 0 }, /* @__PURE__ */ React5.createElement(Text5, { color: dotColor }, "\u25CF")) : /* @__PURE__ */ React5.createElement(Text5, null, " "), /* @__PURE__ */ React5.createElement(Box4, { marginX: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: "white" }, formatTokens(tokensTotal), " ", (() => {
5118
5118
  const pct = tokens / maxLimit * 100;
@@ -6750,6 +6750,7 @@ Check these first; These Files > Training Data. Safety rules apply
6750
6750
  return `${nameStr}${nicknameStr}${userInstrStr}=== SYSTEM PROMPT ===
6751
6751
  Identity: Flux Flow (by Kushal Roy Chowdhury). ${mode === "Flux" ? "Sassy" : "Conversational, Sassy, Friendly, Humorous, Sarcastic"}, CLI Agent
6752
6752
  Mode: ${mode}${thinkingLevel !== "Fast" ? "" : ""}. ${mode === "Flux" ? "Logical, Highly Detailed, Task-Driven. Prioritizes scalable file/folder structures, modular architecture, clean code abstractions, step-by-step execution. Industry standard latest coding practices/libraries, clean code, Double Check Imports, Run tests where needed to verify" : "Concise"}
6753
+ - ONLY VALID TOOL CALL SCHEMA IS THE ONE PROVIDED IN SYSTEM PROMPT
6753
6754
 
6754
6755
  -- MARKERS --
6755
6756
  - TOOL SYSTEM: [TOOL RESULT]
@@ -6764,7 +6765,7 @@ CRITICAL THINKING POLICY
6764
6765
  ${TOOL_PROTOCOL(mode, osDetected, aiProvider.toLowerCase() === "deepseek" ? false : isMultiModal, aiProvider, systemSettings?.advanceRollback)}
6765
6766
  ${projectContextBlock}
6766
6767
  -- MEMORY RULES --
6767
- - ${isMemoryEnabled ? "Subtly Personalize ONLY WITH RELEVENT & CONTEXTUAL MEMORIES. Auto Saves" : "OFF. Decline Saving Memories"}
6768
+ - ${isMemoryEnabled ? "Subtly Personalize ONLY WITH RELEVENT & CONTEXTUAL MEMORIES. Auto Saves" : "DISABLED. Decline Remembering Memories"}
6768
6769
  - Temporal Awareness: RELATIVE TIME REFERENCE eg. few mins ago
6769
6770
 
6770
6771
  -- SECURITY RULES --${systemSettings.allowExternalAccess ? "" : "\n- ACCESS CONTROL: CWD only"}
@@ -11271,7 +11272,7 @@ var init_ai = __esm({
11271
11272
  "High": "high",
11272
11273
  "xHigh": "high"
11273
11274
  };
11274
- const BYTEDANCE_THINKING_LEVELS = {
11275
+ const BYTEDANCE_THINKING_BUDGETS = {
11275
11276
  "Fast": "64",
11276
11277
  "Low": "64",
11277
11278
  "Medium": "4096",
@@ -11279,7 +11280,7 @@ var init_ai = __esm({
11279
11280
  "High": "16384",
11280
11281
  "xHigh": "16384"
11281
11282
  };
11282
- const maxTokens = isMinimax || isDeepSeek ? 16384 : 32768;
11283
+ const maxTokens = isMinimax || isDeepSeek || isPoolside || isThinkingmachines ? 16384 : 32768;
11283
11284
  const body = {
11284
11285
  model,
11285
11286
  messages,
@@ -11322,7 +11323,7 @@ var init_ai = __esm({
11322
11323
  } else if (isBytedance) {
11323
11324
  if (isThinking) {
11324
11325
  body.extra_body = {
11325
- thinking_budget: parseInt(BYTEDANCE_THINKING_LEVELS[apiLevel] ?? "4096")
11326
+ thinking_budget: parseInt(BYTEDANCE_THINKING_BUDGETS[apiLevel] ?? "4096")
11326
11327
  };
11327
11328
  }
11328
11329
  } else if (isPoolside) {
@@ -15275,7 +15276,7 @@ Error Log can be found in ${path22.join(LOGS_DIR, "agent", "error.log")}`);
15275
15276
  "ask": `- [tool:functions.Ask(question="...", optionA="option::description", ...MAX 4)]. Ambiguity Resolution. Mandatory Triggers: Path Divergence, Security, Risk Mitigation. ask >> finish/guess. Suggest best options; don't ask for preferences. 'option' SHOULD be short`
15276
15277
  };
15277
15278
  const providedToolsSection = `-- TOOL DEFINITIONS (path = relative to CWD, path separator: '/') --
15278
- To call tools USE THIS EXACT SYNTAX: [tool:functions.ToolName(args)]. **NO OTHER SYNTAX/MARKERS/BOUNDARY ALLOWED**
15279
+ To call tools USE THIS EXACT SYNTAX: [tool:functions.ToolName(args)]. **NO OTHER SYNTAX/MARKERS/BOUNDARY ALLOWED, ONLY VALID TOOL CALL SCHEMA IS THE ONE PROVIDED IN SYSTEM PROMPT**
15279
15280
  TOOL POLICY:
15280
15281
  - MAX 3 TOOL CALLS PER TURN. Next Turn, verify tool results, plan next
15281
15282
  - USE multiple search & replace on patch tool if editing same file/path with many changes \u2190 HIGHLY RECOMMENDED
package/model_config.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": 0,
2
+ "version": 1,
3
3
  "release": 20260719,
4
4
  "fallbacks": {
5
5
  "janitor_default": "gemini-3.1-flash-lite",
@@ -382,24 +382,6 @@
382
382
  "cmd": "bytedance/seed-oss-36b-instruct",
383
383
  "multimodal": false,
384
384
  "desc": "Text Only"
385
- },
386
- {
387
- "cmd": "\n--- Poolside Models ---",
388
- "desc": ""
389
- },
390
- {
391
- "cmd": "poolside/laguna-xs-2.1",
392
- "multimodal": false,
393
- "desc": "Text Only"
394
- },
395
- {
396
- "cmd": "\n--- Thinking Machines Models ---",
397
- "desc": ""
398
- },
399
- {
400
- "cmd": "thinkingmachines/inkling",
401
- "multimodal": false,
402
- "desc": "Text Only (Reasoning Model)"
403
385
  }
404
386
  ],
405
387
  "Paid": [
@@ -546,24 +528,6 @@
546
528
  "cmd": "bytedance/seed-oss-36b-instruct",
547
529
  "multimodal": false,
548
530
  "desc": "Text Only"
549
- },
550
- {
551
- "cmd": "\n--- Poolside Models ---",
552
- "desc": ""
553
- },
554
- {
555
- "cmd": "poolside/laguna-xs-2.1",
556
- "multimodal": false,
557
- "desc": "Text Only"
558
- },
559
- {
560
- "cmd": "\n--- Thinking Machines Models ---",
561
- "desc": ""
562
- },
563
- {
564
- "cmd": "thinkingmachines/inkling",
565
- "multimodal": false,
566
- "desc": "Text Only (Reasoning Model)"
567
531
  }
568
532
  ]
569
533
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluxflow-cli",
3
- "version": "3.4.9",
3
+ "version": "3.4.11",
4
4
  "date": "2026-07-19",
5
5
  "description": "A High-Fidelity Agentic CLI with Sub-Agents for the Flux Era.",
6
6
  "keywords": [