@nomad-e/bluma-cli 0.0.79 → 0.0.82
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/config/native_tools.json +12 -12
- package/dist/main.js +7 -3
- package/package.json +1 -1
|
@@ -68,18 +68,6 @@
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
{
|
|
72
|
-
"type": "function",
|
|
73
|
-
"function": {
|
|
74
|
-
"name": "agent_end_turn",
|
|
75
|
-
"description": "End the current agent turn. This tool is a especial tool that is used to signal the end of the agent's turn. It does not require any parameters and does not return any value.",
|
|
76
|
-
"parameters": {
|
|
77
|
-
"type": "object",
|
|
78
|
-
"properties": {},
|
|
79
|
-
"required": []
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
},
|
|
83
71
|
{
|
|
84
72
|
"type": "function",
|
|
85
73
|
"function": {
|
|
@@ -201,6 +189,18 @@
|
|
|
201
189
|
]
|
|
202
190
|
}
|
|
203
191
|
}
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"type": "function",
|
|
195
|
+
"function": {
|
|
196
|
+
"name": "agent_end_turn",
|
|
197
|
+
"description": "This tool MUST be used to signal the system that the agent has ended its turn and should switch to idle mode. It takes no parameters.",
|
|
198
|
+
"parameters": {
|
|
199
|
+
"type": "object",
|
|
200
|
+
"properties": {},
|
|
201
|
+
"required": []
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
204
|
}
|
|
205
205
|
]
|
|
206
206
|
}
|
package/dist/main.js
CHANGED
|
@@ -1666,8 +1666,11 @@ You are an interactive CLI agent specializing in software engineering tasks. REM
|
|
|
1666
1666
|
---
|
|
1667
1667
|
|
|
1668
1668
|
<persistence>
|
|
1669
|
-
- Do not ask the
|
|
1670
|
-
|
|
1669
|
+
- Do not ask the user to confirm or validate assumptions; proceed and adjust later if needed.
|
|
1670
|
+
|
|
1671
|
+
- Choose the most reasonable assumption, proceed with it, and document it for the user in the final summary.
|
|
1672
|
+
|
|
1673
|
+
- When the user assigns a task, implement it end to end and deliver the final solution in a single response.
|
|
1671
1674
|
</persistence>
|
|
1672
1675
|
---
|
|
1673
1676
|
|
|
@@ -1811,6 +1814,7 @@ Ensure that each task contributes to a cohesive, functional, and visually appeal
|
|
|
1811
1814
|
</agent_end_turn_rules>
|
|
1812
1815
|
|
|
1813
1816
|
|
|
1817
|
+
|
|
1814
1818
|
---
|
|
1815
1819
|
|
|
1816
1820
|
<scope_and_limitations>
|
|
@@ -1993,7 +1997,7 @@ var BluMaAgent = class {
|
|
|
1993
1997
|
eventBus;
|
|
1994
1998
|
mcpClient;
|
|
1995
1999
|
feedbackSystem;
|
|
1996
|
-
maxContextTurns =
|
|
2000
|
+
maxContextTurns = 20;
|
|
1997
2001
|
// Limite de turns no contexto da API
|
|
1998
2002
|
todoListState = [];
|
|
1999
2003
|
isInterrupted = false;
|