openclaw - 💡(How to fix) Fix Cron classifier can mark successful runs as error based on denial-token substring matching in the summary

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…

Cron status classification appears to scan the final natural-language summary for denial tokens. This can produce false errors when a successful run includes a benign phrase such as did not run in a non-failure context.

Error Message

A run completed successfully, wrote its expected outputs, and explicitly reported success, but the recorded cron status was still error because the summary also included a sentence saying: A successful run should not be marked error based on substring matching inside a free-form summary. Outcome classification should use structured signals, not incidental wording. 3. Observe the cron run being classified as error because of denial-token matching

Root Cause

Natural-language summaries routinely contain phrases like:

  • did not run
  • not requested
  • did not need to
  • was not required

Those phrases are too ambiguous to drive final job status. The result is false negatives that make operators distrust the cron ledger.

RAW_BUFFERClick to expand / collapse

Summary

Cron status classification appears to scan the final natural-language summary for denial tokens. This can produce false errors when a successful run includes a benign phrase such as did not run in a non-failure context.

Actual behavior

A run completed successfully, wrote its expected outputs, and explicitly reported success, but the recorded cron status was still error because the summary also included a sentence saying:

  • I did not run a separate HTML validator in this cron turn.

That benign verification note triggered the denial-token classifier even though the job itself had succeeded.

Expected behavior

A successful run should not be marked error based on substring matching inside a free-form summary. Outcome classification should use structured signals, not incidental wording.

Why this matters

Natural-language summaries routinely contain phrases like:

  • did not run
  • not requested
  • did not need to
  • was not required

Those phrases are too ambiguous to drive final job status. The result is false negatives that make operators distrust the cron ledger.

Minimal repro

  1. Run a skill successfully so that expected outputs are written
  2. Include a benign sentence in the final summary such as I did not run a separate validator
  3. Observe the cron run being classified as error because of denial-token matching

Expected fix direction

  • derive final status from explicit structured outcome fields
  • treat the summary as human-readable explanation only
  • avoid substring-based denial-token classification for final success or failure

Environment

  • OpenClaw 2026.5.19
  • Linux

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…

FAQ

Expected behavior

A successful run should not be marked error based on substring matching inside a free-form summary. Outcome classification should use structured signals, not incidental wording.

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 Cron classifier can mark successful runs as error based on denial-token substring matching in the summary