fluxflow-cli 1.14.2 → 1.14.3
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 +7 -7
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -1029,18 +1029,18 @@ var init_thinking_prompts = __esm({
|
|
|
1029
1029
|
thinking_prompts_default = {
|
|
1030
1030
|
xHigh: `EFFORT_LEVEL: HIGHEST
|
|
1031
1031
|
Think in a continuous, fluid analytical monologue within the <think>...</think> block. Do NOT use headings, bullet points, or artificial sections. Engage in a rigorous "Stream of Consciousness" that aggressively interrogates the problem:
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1032
|
+
Deconstruct requirements, trace implicit assumptions, and evaluate system-wide implications.
|
|
1033
|
+
Formulate solutions focusing on extreme modularity, DRY principles, and clean abstractions. Mentally simulate the architecture.
|
|
1034
|
+
Actively try to break your own logic. Search for edge cases, race conditions, memory leaks, and security flaws. If a flaw is found, pivot immediately.
|
|
1035
|
+
Map out a granular, step-by-step operational plan before writing code or using tools.
|
|
1036
1036
|
RULES:
|
|
1037
1037
|
- NO HEADINGS. Maintain a dense, unbroken analytical monologue.
|
|
1038
1038
|
- Be exhaustive. Detail the exact 'why' behind architectural choices and algorithm selections.
|
|
1039
1039
|
- Question your own logic ruthlessly as you go.
|
|
1040
1040
|
- MANDATORY THINKING: You MUST engage in full reasoning regardless of simplicity, even for greetings`,
|
|
1041
|
-
High: "EFFORT_LEVEL: HIGH\nThink in a stable, analytical monologue within the <think>...</think> block. Avoid headings or structured formatting. Your thinking should be a continuous stream of logical deduction:\
|
|
1042
|
-
Medium: "EFFORT_LEVEL: MEDIUM\nThink in a concise, stable monologue within the <think>...</think> block. Focus on the core logic required to solve the task efficiently:\
|
|
1043
|
-
Minimal: "EFFORT_LEVEL: LOW\nThink in a brief, focused monologue within the <think>...</think> block. Just a quick mental check before acting:\
|
|
1041
|
+
High: "EFFORT_LEVEL: HIGH\nThink in a stable, analytical monologue within the <think>...</think> block. Avoid headings or structured formatting. Your thinking should be a continuous stream of logical deduction:\nBreak the objective down into atomic, executable steps.\nMentally execute your planned code/actions. Identify missing dependencies or potential failure states.\nEnsure your approach adheres to good folder structures, modularity, and clean code practices.\nRULES:\n- NO HEADINGS. Maintain a fluid monologue style.\n- Be detailed and rigorous in self-correction.\n- Focus heavily on technical correctness, clean abstractions, and edge-case prevention.\n- MANDATORY THINKING: You MUST enter reasoning to verify the path forward, even for greeting.",
|
|
1042
|
+
Medium: "EFFORT_LEVEL: MEDIUM\nThink in a concise, stable monologue within the <think>...</think> block. Focus on the core logic required to solve the task efficiently:\nDetermine the most straightforward solution that meets the requirements.\nBriefly review the chosen approach against obvious anti-patterns or missing imports.\nOutline the exact files and functions to modify.\nRULES:\n- NO HEADINGS. Keep it as a simple, logical stream.\n- Be efficient but deliberate. Spend energy primarily on actionable steps.\n- MANDATORY THINKING: Engage in a baseline mental check for all technical tasks, even for greeting",
|
|
1043
|
+
Minimal: "EFFORT_LEVEL: LOW\nThink in a brief, focused monologue within the <think>...</think> block. Just a quick mental check before acting:\nConfirm what the user is asking.\nNote the specific tool or file to target.\nRULES:\n- NO HEADINGS. Keep it to a few lines of clear, linear thought.\n- Use minimal thinking suitable for simple or conversational requests, even for greetings.",
|
|
1044
1044
|
Off: "EFFORT_LEVEL: FAST\nNo internal thinking required. Respond directly"
|
|
1045
1045
|
};
|
|
1046
1046
|
}
|