Skip to content

v0.12.190 — /imagegen → /cr-imagegen (Telegram collision fix)

Choose a tag to compare

@1bcMax 1bcMax released this 13 May 05:56
· 36 commits to main since this release

Fix

Renames the /imagegen slash command to /cr-imagegen to resolve a collision with Telegram channel commands.

OpenClaw runtime previously emitted:

Plugin command "/imagegen" conflicts with an existing Telegram command

because Telegram channels reserve /imagegen for their own image-gen bots (HuggingFace Spaces et al.). The OpenClaw command registry can't claim the same prefix without inconsistent routing behavior in Telegram.

What changed

  • src/index.ts:1768api.registerCommand({ name: "imagegen" })name: "cr-imagegen"
  • src/proxy.ts:3472 — chat-prefix interceptor accepts both /cr-imagegen and /imagegen (backward compatibility for muscle memory; legacy form still works in chat)
  • README, docs/image-generation.md, skills/imagegen/SKILL.md updated to lead with /cr-imagegen and note the legacy form still works in chat
  • /videogen deliberately untouched — no field reports of collision

Migration

  • Slash command in Telegram/Discord/Slack picker: use /cr-imagegen (the new registered name)
  • Typing in chat: both /cr-imagegen <prompt> and /imagegen <prompt> continue to work

Install

npm install -g @blockrun/clawrouter@0.12.190

Closes #165.