Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions scripts/build-manifest.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,15 @@ const manifest = {
configSchema: toolMetadata.configSchema,
activation: toolMetadata.activation ?? { onStartup: true },
channels: ["agentmail"],
// The Plugin Inspector emits a `channel-env-vars` deprecation warning whenever this field is
// present (it is unconditional — a setup entry does NOT suppress it). We keep it anyway: on our
// supported OpenClaw range (peerDependency floor >=2026.7.2-beta.3, currently the newest published
// release) `channelEnvVars` is still the only source OpenClaw reads to detect the channel as
// configured from AGENTMAIL_API_KEY in the environment (isStaticallyChannelConfigured) and to
// advertise expected env-shell keys. No setup-metadata replacement path has shipped in any release
// yet, so dropping this would regress env-driven setup with no upside.
// Remove this field (which clears the warning) only once our minimum supported OpenClaw version
// reads channel env names from the newer setup model instead — then also raise the floor to match.
channelEnvVars: {
agentmail: ["AGENTMAIL_API_KEY", "AGENTMAIL_WEBHOOK_SECRET"],
},
Expand Down
Loading