Claude Code Claude Opus 4.6 commited on
Commit
18cd6a4
·
1 Parent(s): fd0440c

Fix OpenClaw crash: Add coding-agent plugin to allow list

Browse files

The registerSubCliByName error was caused by the coding-agent extension
not being in the plugins.allow list in openclaw.json. Added
'coding-agent' to the allow list and enabled it in entries.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

Files changed (1) hide show
  1. openclaw.json +4 -1
openclaw.json CHANGED
@@ -38,13 +38,16 @@
38
  }
39
  },
40
  "plugins": {
41
- "allow": ["telegram", "whatsapp"],
42
  "entries": {
43
  "telegram": {
44
  "enabled": true
45
  },
46
  "whatsapp": {
47
  "enabled": true
 
 
 
48
  }
49
  }
50
  },
 
38
  }
39
  },
40
  "plugins": {
41
+ "allow": ["telegram", "whatsapp", "coding-agent"],
42
  "entries": {
43
  "telegram": {
44
  "enabled": true
45
  },
46
  "whatsapp": {
47
  "enabled": true
48
+ },
49
+ "coding-agent": {
50
+ "enabled": true
51
  }
52
  }
53
  },