fix(cli): add plan-gated property warnings to construct references#1266
Open
thebiglabasky wants to merge 2 commits intomainfrom
Open
fix(cli): add plan-gated property warnings to construct references#1266thebiglabasky wants to merge 2 commits intomainfrom
thebiglabasky wants to merge 2 commits intomainfrom
Conversation
The #1 cause of first-setup failures: agents copy retryStrategy, runParallel, and higher frequencies from example code without checking entitlements. - Every monitor/check configure reference now includes a plan-gated properties warning before the example code - manage.md adds a lookup table mapping check properties to their entitlement key patterns with --search examples - Agents are told to omit disabled properties (Checkly applies safe defaults) and share upgradeUrl when users need a feature Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
JSON output with --disabled, --type, or --search was returning a bare entitlements array without locations, plan info, or upgrade URLs. Now all JSON output includes the full plan context so agents always have locations.all and upgrade URLs regardless of filters applied. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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.
Summary
Addresses the systematic issue where agents use
retryStrategy,runParallel, and higher frequencies from example code without checking entitlements — the #1 cause of first-setup failures on Hobby plans.Changes
6 configure references updated (URL, DNS, TCP, ICMP monitors + API checks + Browser checks):
UPTIME_CHECKS_*)npx checkly skills managefor full referencemanage.mdupdated:retryStrategy/runParallel/frequency/locations/privateLocationmapped to entitlement key patterns--searchexamples for narrowing 90+ entitlements to relevant onesRoot cause
The example URL monitor (
gen/resources/url-monitors/example-url-monitor.check.ts) usesRetryStrategyBuilder.linearStrategyandrunParallel: true— both unavailable on Hobby. Agents copied the example verbatim. The warnings now appear right before the example in the rendered configure reference.Test plan
npm run preparegenerates all references correctly🤖 Generated with Claude Code