@miller-tech/uap 1.96.4 → 1.96.5

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": "@miller-tech/uap",
3
- "version": "1.96.4",
3
+ "version": "1.96.5",
4
4
  "description": "Autonomous AI agent memory system with CLAUDE.md protocol enforcement",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -305,6 +305,13 @@ _WRITE_TOOL_CLASS = frozenset({
305
305
  "write", "edit", "multiedit", "notebookedit",
306
306
  "str_replace", "str_replace_editor", "str_replace_based_edit_tool",
307
307
  "create_file", "applypatch", "apply_patch",
308
+ # OpenAI-style tool-loop names (uap deliver's agentic executor and other
309
+ # OpenAI-compat agents). Without these, every agentic round that WRITES
310
+ # files still counted as a no-write turn, the recon-convergence streak
311
+ # grew unbounded, and the proxy injected "stop exploring, synthesize"
312
+ # directives into a loop that was mid-build — observed live at
313
+ # no_write_streak=62 with the model then emitting files as plain text.
314
+ "write_file", "edit_file", "save_file",
308
315
  })
309
316
 
310
317
  PROXY_GUARDRAIL_RETRY = os.environ.get("PROXY_GUARDRAIL_RETRY", "on").lower() not in {