@wu529778790/open-im 1.11.9-beta.2 → 1.11.9-beta.3

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.
@@ -181,9 +181,8 @@ function buildCompletionNote(result, sessionManager, ctx) {
181
181
  return parts.join(' | ');
182
182
  }
183
183
  function buildRunOptions(config, sessionManager, ctx, aiCommand, toolAdapter) {
184
- const defaultSkipPermissions = toolAdapter.interactionMode === 'native'
185
- ? (config.skipPermissions ?? true)
186
- : (config.skipPermissions ?? true);
184
+ // 权限 hook 尚未接入 IM,暂时全局跳过
185
+ const defaultSkipPermissions = true;
187
186
  return {
188
187
  model: aiCommand === 'claude'
189
188
  ? (sessionManager.getModel(ctx.userId, ctx.threadId) ?? config.claudeModel)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wu529778790/open-im",
3
- "version": "1.11.9-beta.2",
3
+ "version": "1.11.9-beta.3",
4
4
  "description": "Your AI coding assistant, in every chat app. Multi-platform IM bridge for Claude Code, Codex, and CodeBuddy.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",