@canonmsg/codex-plugin 0.23.0 → 0.23.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.
@@ -41,8 +41,6 @@ function nativeHandle(method, params) {
41
41
  const approvalId = readString(params, ['approvalId']);
42
42
  const pluginId = readString(params, ['pluginId']);
43
43
  const sessionKey = readString(params, ['sessionKey', 'sessionId']);
44
- const cwd = readString(params, ['cwd', 'workingDirectory']);
45
- const model = readString(params, ['model']);
46
44
  if (requestId)
47
45
  native.requestId = requestId;
48
46
  if (provider)
@@ -67,10 +65,6 @@ function nativeHandle(method, params) {
67
65
  native.pluginId = pluginId;
68
66
  if (sessionKey)
69
67
  native.sessionKey = sessionKey;
70
- if (cwd)
71
- native.cwd = cwd;
72
- if (model)
73
- native.model = model;
74
68
  return native;
75
69
  }
76
70
  function commandRisk(command) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@canonmsg/codex-plugin",
3
- "version": "0.23.0",
3
+ "version": "0.23.1",
4
4
  "description": "Canon host integration for Codex CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -29,9 +29,9 @@
29
29
  "prepack": "npm run build"
30
30
  },
31
31
  "dependencies": {
32
- "@canonmsg/agent-sdk": "^6.0.0",
32
+ "@canonmsg/agent-sdk": "^7.0.0",
33
33
  "@canonmsg/coding-agent-host": "^0.2.2",
34
- "@canonmsg/core": "^6.0.0"
34
+ "@canonmsg/core": "^7.0.0"
35
35
  },
36
36
  "engines": {
37
37
  "node": ">=18.0.0"