From 4c45323c8501b3fa6f2b008e91463b89eab6112d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Labas?= <431257+thebiglabasky@users.noreply.github.com> Date: Mon, 6 Apr 2026 23:15:09 +0200 Subject: [PATCH 1/2] Correct 'NO_RETRY' to 'NO_RETRIES' in documentation --- packages/cli/src/ai-context/references/manage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/ai-context/references/manage.md b/packages/cli/src/ai-context/references/manage.md index a14aca25a..97decd436 100644 --- a/packages/cli/src/ai-context/references/manage.md +++ b/packages/cli/src/ai-context/references/manage.md @@ -27,7 +27,7 @@ Entitlement keys follow the pattern `{CHECK_TYPE}_{FEATURE}` — match them to t | Check property | Entitlement pattern to search | What to do if disabled | |---|---|---| -| `retryStrategy` | `*_RETRY_STRATEGY_*` and `*_MAX_RETRIES_*` for your check type | Omit `retryStrategy` entirely, or use only `NO_RETRY` | +| `retryStrategy` | `*_RETRY_STRATEGY_*` and `*_MAX_RETRIES_*` for your check type | Omit `retryStrategy` entirely, or use only `NO_RETRIES` | | `runParallel` | `*_SCHEDULING_STRATEGY_PARALLEL` for your check type | Omit `runParallel` or set to `false` (use round-robin) | | `frequency` | `*_FREQ_*` for your check type | Use only frequencies where the entitlement is enabled | | `locations` | `locations.all` array | Use only locations where `available` is `true` | From 4f22e834ce9fd59474c704bc003f3bd2c0eee033 Mon Sep 17 00:00:00 2001 From: Herve Labas Date: Tue, 7 Apr 2026 11:24:06 +0200 Subject: [PATCH 2/2] docs: use RetryStrategyBuilder.noRetries() in manage.md Reference the proper construct instead of pointing readers to a constant name. Co-Authored-By: Claude Opus 4.6 (1M context) --- packages/cli/src/ai-context/references/manage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/ai-context/references/manage.md b/packages/cli/src/ai-context/references/manage.md index 97decd436..90e62998e 100644 --- a/packages/cli/src/ai-context/references/manage.md +++ b/packages/cli/src/ai-context/references/manage.md @@ -27,7 +27,7 @@ Entitlement keys follow the pattern `{CHECK_TYPE}_{FEATURE}` — match them to t | Check property | Entitlement pattern to search | What to do if disabled | |---|---|---| -| `retryStrategy` | `*_RETRY_STRATEGY_*` and `*_MAX_RETRIES_*` for your check type | Omit `retryStrategy` entirely, or use only `NO_RETRIES` | +| `retryStrategy` | `*_RETRY_STRATEGY_*` and `*_MAX_RETRIES_*` for your check type | Omit `retryStrategy` entirely, or use `RetryStrategyBuilder.noRetries()` | | `runParallel` | `*_SCHEDULING_STRATEGY_PARALLEL` for your check type | Omit `runParallel` or set to `false` (use round-robin) | | `frequency` | `*_FREQ_*` for your check type | Use only frequencies where the entitlement is enabled | | `locations` | `locations.all` array | Use only locations where `available` is `true` |