feat(onboard): auto-detect messaging platform for cron delivery - #111
Merged
Merged
Conversation
The weekly stats cron job always used local delivery (Hermes) /
--no-deliver (OpenClaw) so the report went to a log file nobody
checks. Now clawshell onboard probes for a configured messaging
platform and delivers the stats report there instead.
Hermes: read ~/.hermes/.env for DISCORD_BOT_TOKEN,
TELEGRAM_BOT_TOKEN, or SLACK_BOT_TOKEN. First non-empty match
adds --deliver <platform> to `hermes cron create`.
OpenClaw: run `openclaw config get channels --json` and iterate
[telegram, discord, slack, mattermost] in priority order. First
platform whose config exists and isn't {enabled: false} replaces
--no-deliver with --announce --channel <platform>.
Both fall back to the previous no-delivery behavior when no
platform is detected. Step 6 now prints the detected target
(e.g. "deliver: discord" or "deliver: log only").
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The weekly stats cron job always used local delivery (Hermes) / --no-deliver (OpenClaw) so the report went to a log file nobody checks. Now clawshell onboard probes for a configured messaging platform and delivers the stats report there instead.
Hermes: read ~/.hermes/.env for DISCORD_BOT_TOKEN, TELEGRAM_BOT_TOKEN, or SLACK_BOT_TOKEN. First non-empty match adds --deliver to
hermes cron create.OpenClaw: run
openclaw config get channels --jsonand iterate [telegram, discord, slack, mattermost] in priority order. First platform whose config exists and isn't {enabled: false} replaces --no-deliver with --announce --channel .Both fall back to the previous no-delivery behavior when no platform is detected. Step 6 now prints the detected target (e.g. "deliver: discord" or "deliver: log only").