doer-agent 0.6.1 → 0.6.2

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.
Files changed (2) hide show
  1. package/dist/agent.js +3 -1
  2. package/package.json +1 -1
package/dist/agent.js CHANGED
@@ -118,7 +118,9 @@ function formatCodexAppNotificationParams(params) {
118
118
  }
119
119
  }
120
120
  function shouldForwardCodexAppNotification(method) {
121
- return method !== "item/agentMessage/delta";
121
+ return (method !== "item/agentMessage/delta" &&
122
+ method !== "item/commandExecution/outputDelta" &&
123
+ method !== "item/plan/delta");
122
124
  }
123
125
  const runtimeEnvHelpers = createRuntimeEnvHelpers({
124
126
  resolveWorkspaceRoot,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "doer-agent",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Reverse-polling agent runtime for doer",
5
5
  "type": "module",
6
6
  "main": "dist/agent.js",