openclaw - 💡(How to fix) Fix Duplicate plugin warning when bundled channel is configured [1 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
openclaw/openclaw#73201Fetched 2026-04-29 06:22:15
View on GitHub
Comments
1
Participants
2
Timeline
2
Reactions
0
Timeline (top)
closed ×1commented ×1

Code Example

plugins.entries.feishu: plugin feishu: duplicate plugin id detected; global plugin will be overridden by bundled plugin
RAW_BUFFERClick to expand / collapse

Describe the bug When a bundled channel (e.g., feishu) is configured in channels.*, OpenClaw automatically enables the corresponding bundled plugin and adds it to plugins.entries at runtime. This causes a duplicate plugin ID warning:

plugins.entries.feishu: plugin feishu: duplicate plugin id detected; global plugin will be overridden by bundled plugin

To Reproduce

  1. Configure a bundled channel like feishu in channels.feishu.enabled = true
  2. Run any openclaw command that loads config (e.g., openclaw doctor, openclaw config.get)
  3. Observe the warning in output

Expected behavior No warning should appear, or the framework should handle this case more gracefully without generating a warning for a legitimate configuration pattern.

Additional context

  • This appears to be an internal design issue in the config normalization logic
  • The warning is triggered in config-normalization-shared.ts where isBundledChannelEnabledByChannelConfig automatically adds bundled channel plugins to plugins.entries
  • The user's workspace config does NOT explicitly include plugins.entries.feishu - it only has channels.feishu configured
  • The warning appears in runtimeConfig.plugins.entries but not in the original sourceConfig

Environment

  • OpenClaw version: 2026.3.13+
  • Channel: feishu (bundled)

extent analysis

TL;DR

The warning can be mitigated by explicitly adding the bundled plugin to the user's workspace config, allowing OpenClaw to recognize it as an intentional configuration.

Guidance

  • Review the config-normalization-shared.ts file to understand how isBundledChannelEnabledByChannelConfig adds bundled channel plugins to plugins.entries.
  • Consider adding plugins.entries.feishu to the user's workspace config to explicitly include the bundled plugin, potentially resolving the duplicate ID warning.
  • Investigate the runtimeConfig.plugins.entries and sourceConfig to understand why the warning appears in one but not the other.
  • Evaluate the impact of this warning on the overall functionality of OpenClaw and determine if it's a critical issue that needs to be addressed.

Example

No code snippet is provided as the issue does not imply a specific code change, but rather a configuration adjustment.

Notes

The provided information suggests an internal design issue in OpenClaw's config normalization logic. The solution may involve updating the configuration to explicitly include bundled plugins or modifying the logic to handle this scenario more gracefully.

Recommendation

Apply workaround: Explicitly add the bundled plugin to the user's workspace config, as this may allow OpenClaw to recognize the configuration as intentional and avoid the duplicate ID warning.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

openclaw - 💡(How to fix) Fix Duplicate plugin warning when bundled channel is configured [1 comments, 2 participants]