← Back to library

升级到 v2026.2.14 后的两条高复用实操:Telegram Poll + Cron 定向直投

问题/场景:发布后需要快速落地“用户互动收集”和“定时输出可靠送达”。前置条件:已升级到 v2026.2.14(或包含同等修复)。实施步骤:先验证 `message poll` 可发送投票,再为关键 cron 配置 `delivery.to` 做文本直投,最后回归频道权限和路由日志。关键命令:`openclaw message poll`、`openclaw cron runs`。验证:投票可见且 cron 输出完整直达目标。风险:旧配置键与新 alias 混用时要跑 doctor 迁移。

GITHUBDiscovered 2026-02-15Author steipete
Prerequisites
  • Gateway is upgraded to release v2026.2.14 (or newer with the same changes).
  • Telegram channel is connected and cron jobs are already in use.
Steps
  1. Send a Telegram poll via CLI to verify poll pipeline (duration/silent/anonymity options as needed).
  2. Pick one critical cron job and set explicit recipient targeting (`delivery.to`) for direct text delivery.
  3. Run job manually and compare delivered message body with run output for truncation/summary drift.
  4. Run post-upgrade checks (`doctor --fix` if needed) for DM policy aliases and routing diagnostics.
Commands
openclaw message poll --help
openclaw cron runs --id <jobId>
openclaw doctor --fix
Verify

Telegram poll is delivered with expected options, and cron text output arrives directly at the configured recipient.

Caveats
  • Release notes are authoritative for feature availability; verify exact CLI syntax on your installed build(需验证).
  • Do not batch too many post-upgrade config changes in one step; isolate regressions.
Source attribution

This tip is aggregated from community/public sources and preserved with attribution.

Open original source ↗
Visit original post