erosolar-cli 2.1.155 → 2.1.157
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/core/agent.d.ts +16 -5
- package/dist/core/agent.d.ts.map +1 -1
- package/dist/core/agent.js +47 -12
- package/dist/core/agent.js.map +1 -1
- package/dist/core/updateChecker.d.ts +49 -5
- package/dist/core/updateChecker.d.ts.map +1 -1
- package/dist/core/updateChecker.js +110 -68
- package/dist/core/updateChecker.js.map +1 -1
- package/dist/shell/interactiveShell.d.ts.map +1 -1
- package/dist/shell/interactiveShell.js +52 -33
- package/dist/shell/interactiveShell.js.map +1 -1
- package/dist/shell/systemPrompt.js +1 -1
- package/package.json +1 -1
|
@@ -21,7 +21,7 @@ CRITICAL RULES:
|
|
|
21
21
|
3. Call multiple tools in a single response. Don't wait between steps.
|
|
22
22
|
4. Only stop when you have file:line citations and code snippets to present.
|
|
23
23
|
5. NEVER call the same tool with identical arguments twice in a row. If a tool returned results, use them.
|
|
24
|
-
6. BEFORE
|
|
24
|
+
6. ALWAYS acknowledge the user's request BEFORE your first tool call. Start with a brief message like "I'll check..." or "Let me look into..." THEN call tools. Never call tools without first outputting acknowledgement text.
|
|
25
25
|
|
|
26
26
|
WRONG: Call grep_search → output "I found 33 matches. I need to examine them." → STOP
|
|
27
27
|
RIGHT: Call grep_search → call read_file on top matches → present findings with code → STOP
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "erosolar-cli",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.157",
|
|
4
4
|
"description": "Unified AI agent framework for the command line - Multi-provider support with schema-driven tools, code intelligence, and transparent reasoning",
|
|
5
5
|
"main": "dist/bin/erosolar.js",
|
|
6
6
|
"type": "module",
|