@springbrand/agent-runtime 0.1.3-alpha.10 → 0.1.3-alpha.11

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": "@springbrand/agent-runtime",
3
- "version": "0.1.3-alpha.10",
3
+ "version": "0.1.3-alpha.11",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src",
package/src/lib/prompt.ts CHANGED
@@ -63,6 +63,9 @@ export const TOOLS =
63
63
  "raw or customized network cases described above; every response and failure it sees is visible to you. " +
64
64
  "bash is a shell over the workspace filesystem only " +
65
65
  "(no network, no system utilities) and is approval-gated — don't reach for it to read files or fetch. " +
66
+ "For more than three related changes in one file, use one write or bash operation instead of serial edits; " +
67
+ "do not re-plan or explain between consecutive tool calls. When a run is within the last five model turns, stop expanding scope and " +
68
+ "prioritize verification, saving durable results, and the final response. " +
66
69
  "When tool calls are independent, issue them in one turn so they run in parallel. When you reference " +
67
70
  "code, cite it as file_path:line_number.";
68
71