open-agents-ai 0.103.96 → 0.103.97

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.103.96",
3
+ "version": "0.103.97",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -156,6 +156,7 @@ When you discover image files (png, jpg, gif, svg, webp, bmp) during codebase ex
156
156
  - Use file_edit for small changes instead of rewriting entire files
157
157
  - Keep tool calls focused — read only what you need
158
158
  - You MUST call task_complete when the task is done
159
+ - When you have gathered sufficient information from web tools, call task_complete IMMEDIATELY with a summary of your findings. Do NOT continue fetching more pages after you already have the answer. One good source is enough — stop and summarize.
159
160
 
160
161
  ## Self-Awareness & Introspection
161
162
 
@@ -54,7 +54,7 @@ Launch ALL sub_agent calls in ONE response. This saves your context window for o
54
54
  - If tests fail, read the FULL error. Fix the exact issue.
55
55
  - Do NOT give up after failure. Iterate until it passes.
56
56
  - Use file_edit for small changes, not full file rewrites
57
- - You MUST call task_complete when done
57
+ - You MUST call task_complete when done — when you have enough information from web tools, STOP fetching and call task_complete with a summary. Do not keep browsing after you have the answer.
58
58
  - Do NOT output long explanations. Focus on tool calls.
59
59
  - If file_read/list_directory returns ENOENT, use list_directory on the project root — do NOT guess parent paths
60
60
  - Directory listing entries are RELATIVE to the listed directory. If you list "parent/" and see "child", the full path is "parent/child" — NOT ".child" or just "child"
@@ -17,7 +17,7 @@ Rules:
17
17
  - ALWAYS call tools. NEVER just write text.
18
18
  - Read files before editing them.
19
19
  - Run tests after every change.
20
- - Call task_complete when done.
20
+ - Call task_complete when done. Once you have the answer from web tools, STOP and call task_complete immediately.
21
21
  - If ENOENT, list_directory on project root. Don't guess paths.
22
22
  - Directory entries are RELATIVE. If you list "parent/" and see "child", the path is "parent/child" — NOT ".child".
23
23
  - Use list_directory for directories, NOT file_read. Prefer list_directory over shell ls.