claude-code - 💡(How to fix) Fix Max plan only allows 1 sub-daily scheduled trigger despite $200/mo tier [1 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
anthropics/claude-code#47757Fetched 2026-04-15 06:43:06
View on GitHub
Comments
0
Participants
1
Timeline
2
Reactions
0
Participants
Timeline (top)
labeled ×2

Error Message

"error": { 2. Document the limit clearly on the scheduled tasks page and the Max plan comparison. Currently the only way to discover the limit is to hit the error.

Root Cause

On the Max tier users are actively building agentic workflows. A realistic setup:

  • Board Sync — runs hourly, moves merged PR issues to "In Review"
  • Autofix — picks up Ready issues from the project board, creates PRs

Both are lightweight and idempotent. The per-run usage is well within Max's normal session quota. But the plan's hard cap of one sub-daily trigger forces an artificial tradeoff: you either get timely PR board updates OR timely auto-fix runs, but not both.

Code Example

{
  "error": {
    "message": "Your plan gets 1 hourly cloud scheduled session. Disable or delete an existing schedule to continue.",
    "reason": "trigger_limit_reached",
    "type": "invalid_request_error"
  }
}
RAW_BUFFERClick to expand / collapse

Problem

On the Claude Max ($200/mo) plan, attempting to create a second scheduled trigger with any sub-daily cadence returns:

{
  "error": {
    "message": "Your plan gets 1 hourly cloud scheduled session. Disable or delete an existing schedule to continue.",
    "reason": "trigger_limit_reached",
    "type": "invalid_request_error"
  }
}

This limit applies to any cron expression that fires more than once per day — tested and rejected:

  • 0 * * * * (hourly)
  • 0 */2 * * * (every 2h)
  • 0 */4 * * * (every 4h)
  • 0 9,13,17 * * * (3 fixed times)
  • 0 9,17 * * * (2 fixed times)

Only 0 9 * * * (once daily) works for a second trigger.

Why this matters

On the Max tier users are actively building agentic workflows. A realistic setup:

  • Board Sync — runs hourly, moves merged PR issues to "In Review"
  • Autofix — picks up Ready issues from the project board, creates PRs

Both are lightweight and idempotent. The per-run usage is well within Max's normal session quota. But the plan's hard cap of one sub-daily trigger forces an artificial tradeoff: you either get timely PR board updates OR timely auto-fix runs, but not both.

Request

One of:

  1. Raise the limit on Max — e.g. 3-5 sub-daily triggers. This would align with the value proposition of the tier.
  2. Document the limit clearly on the scheduled tasks page and the Max plan comparison. Currently the only way to discover the limit is to hit the error.
  3. Surface the limit in the UI when scheduling via claude.ai/code — at least show how many slots are remaining.

Related: #40124 covers the documentation aspect. This issue is about the actual limit being too restrictive for the Max tier use case.

Environment

  • Plan: Claude Max ($200/mo)
  • Feature: Cloud scheduled tasks via `POST /v1/code/triggers`
  • Date: April 2026

extent analysis

TL;DR

The most likely fix is to raise the limit on sub-daily triggers for the Claude Max plan or provide clear documentation and UI indication of the existing limit.

Guidance

  • Verify the current limit by attempting to create multiple sub-daily triggers and observing the error message.
  • Consider documenting the limit clearly on the scheduled tasks page and the Max plan comparison to set user expectations.
  • Surface the limit in the UI when scheduling via claude.ai/code to provide transparency and avoid unexpected errors.
  • Evaluate the feasibility of raising the limit on sub-daily triggers for the Max tier, considering the value proposition and typical use cases.

Example

No code snippet is provided as it is not necessary for this issue.

Notes

The issue is specific to the Claude Max plan and the cloud scheduled tasks feature. The limit applies to any cron expression that fires more than once per day.

Recommendation

Apply a workaround by documenting the limit clearly and surfacing it in the UI, as raising the limit may require further evaluation and discussion. This approach provides a temporary solution to improve user experience and transparency.

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