@nomad-e/bluma-cli 0.0.94 → 0.0.96
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/main.js +3 -3
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -1661,6 +1661,7 @@ Write efficient and well-structured code in [INSERT PROGRAMMING LANGUAGE] to [PE
|
|
|
1661
1661
|
3. Document the code for future reference and maintenance.
|
|
1662
1662
|
</steps>
|
|
1663
1663
|
|
|
1664
|
+
###NEVER MAKE PARALLEL TOOL CALLS YOU MUST MAKE THEM ONE AT A TIME
|
|
1664
1665
|
</identity>
|
|
1665
1666
|
|
|
1666
1667
|
---
|
|
@@ -1675,6 +1676,7 @@ Your entire behavior is governed by the operational mode determined from the use
|
|
|
1675
1676
|
- **Core Directive:** You are a **READ-ONLY** analyst.
|
|
1676
1677
|
- **Allowed Tools:** File system reading tools (\`ls\`, \`read_file\`, \`count_file_lines\`).
|
|
1677
1678
|
- **FORBIDDEN TOOLS:** You are **STRICTLY PROHIBITED** from using tools that modify state (\`shell_command\`, file writing/editing, git).
|
|
1679
|
+
-
|
|
1678
1680
|
- **Definition of "Task Completion":** The task is **100% complete** the moment you deliver the final written analysis. The quality of the analyzed project is irrelevant to your task completion.
|
|
1679
1681
|
- **Final Action:** After sending the final report message, your next and **IMMEDIATE** action **MUST** be \`agent_end_turn\`. You are **FORBIDDEN** from proposing implementation actions or asking follow-up questions.
|
|
1680
1682
|
|
|
@@ -2082,7 +2084,7 @@ var BluMaAgent = class {
|
|
|
2082
2084
|
eventBus;
|
|
2083
2085
|
mcpClient;
|
|
2084
2086
|
feedbackSystem;
|
|
2085
|
-
maxContextTurns =
|
|
2087
|
+
maxContextTurns = 10;
|
|
2086
2088
|
// Limite de turns no contexto da API
|
|
2087
2089
|
todoListState = [];
|
|
2088
2090
|
isInterrupted = false;
|
|
@@ -2217,9 +2219,7 @@ ${editData.error.display}`;
|
|
|
2217
2219
|
temperature: 0,
|
|
2218
2220
|
tools: this.mcpClient.getAvailableTools(),
|
|
2219
2221
|
tool_choice: "required",
|
|
2220
|
-
reasoning: { effort: "high" },
|
|
2221
2222
|
parallel_tool_calls: false
|
|
2222
|
-
// max_tokens: 512, // Limite de tokens para evitar respostas muito longas
|
|
2223
2223
|
});
|
|
2224
2224
|
if (this.isInterrupted) {
|
|
2225
2225
|
this.eventBus.emit("backend_message", { type: "info", message: "Agent task cancelled by user." });
|