@mono-agent/agent-runtime 0.6.0 → 0.6.1

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": "@mono-agent/agent-runtime",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Agent runtime supporting Claude SDK, Claude CLI, Codex CLI, and PI SDK out of the box",
5
5
  "type": "module",
6
6
  "license": "GPL-3.0-only",
@@ -116,8 +116,7 @@ function sandboxForPermissionMode(permissionMode) {
116
116
 
117
117
  function approvalPolicyForPermissionMode(permissionMode) {
118
118
  if (permissionMode === "bypassPermissions") return "never";
119
- if (permissionMode === "plan") return "on-request";
120
- return "on-failure";
119
+ return "on-request";
121
120
  }
122
121
 
123
122
  function codexMcpConfig(mcpServers = {}) {