Skip to content

Docs: Fixes incorrect concurrency pricing on the limits page #2324

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 31, 2025
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
4 changes: 2 additions & 2 deletions docs/limits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import RateLimitHitUseBatchTrigger from "/snippets/rate-limit-hit-use-batchtrigg
| Hobby | 25 concurrent runs |
| Pro | 100+ concurrent runs |

Additional bundles above the Pro tier are available for $10/month per 100 concurrent runs. Contact us via [email](https://trigger.dev/contact) or [Discord](https://trigger.dev/discord) to request more.
Additional bundles above the Pro tier are available for $50/month per 50 concurrent runs. Contact us via [email](https://trigger.dev/contact) or [Discord](https://trigger.dev/discord) to request more.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Clarify bundle size vs. base allowance

The sentence introduces “$50/month per 50 concurrent runs” bundles, while the table directly above advertises “100+ concurrent runs” for Pro.
Readers might wonder whether the first 100 runs are included for free in the Pro tier and every additional 50-run increment costs $50, or whether the entire 100 is billable.

Consider explicitly stating something like:

Additional bundles *beyond the 100 runs included in the Pro tier* are available at…

to remove ambiguity.


🏁 Script executed:

#!/bin/bash
# Search the docs for older wording that may still reference "per 100 concurrent runs"
rg -n $'per 100 concurrent runs' docs | head

Length of output: 45


🏁 Script executed:

#!/bin/bash
# Show the table context around "concurrent runs"
rg -n -A2 -B2 'concurrent runs' docs/limits.mdx

# Verify the exact "100+ concurrent runs" string in the Pro tier row
grep -F -n '100+ concurrent runs' docs/limits.mdx

Length of output: 589


Clarify Pro tier inclusions vs. add-on bundles

The table shows the Pro tier includes 100 concurrent runs, but line 16’s current wording could be read as if all runs are billable. Let’s explicitly call out that the first 100 runs are included and only additional 50-run bundles cost $50/month.

• File: docs/limits.mdx, line 16

Additional bundles *beyond the 100 runs included in the Pro tier* are available at $50/month per 50 concurrent runs. Contact us via [email](https://trigger.dev/contact) or [Discord](https://trigger.dev/discord) to request more.
🤖 Prompt for AI Agents
In docs/limits.mdx at line 16, clarify that the Pro tier includes 100 concurrent
runs and only additional bundles beyond those 100 runs are billable. Update the
sentence to explicitly state that the first 100 runs are included in the Pro
tier and additional 50-run bundles cost $50/month, to avoid confusion about
billing.


## Rate limits

Expand Down Expand Up @@ -69,7 +69,7 @@ Additional bundles above the Pro tier are available for $10/month per preview br
| Hobby | 50 concurrent connections |
| Pro | 500+ concurrent connections |

Additional bundles are available for $10/month per 100 realtime connections. Contact us via [email](https://trigger.dev/contact) or [Discord](https://trigger.dev/discord) to request more.
Additional bundles are available for $10/month per 100 concurrent connections. Contact us via [email](https://trigger.dev/contact) or [Discord](https://trigger.dev/discord) to request more.

## Task payloads and outputs

Expand Down