From 9edee2d7d58eab95e4f3a202b1a5612edb7dad4e Mon Sep 17 00:00:00 2001 From: HAL 9000 Date: Sat, 9 May 2026 22:58:33 +0000 Subject: [PATCH] docs: fix inaccurate fast-path claim in CLI basics documentation The version, info, and diagnostics commands were incorrectly stated as being on the fast-path. Only --help and --version are eager exit options that skip subcommand module loading. ISSUES CLOSED: #7592 --- docs/showcase/cli-tools/cleveragents-cli-basics.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/showcase/cli-tools/cleveragents-cli-basics.md b/docs/showcase/cli-tools/cleveragents-cli-basics.md index c81645953..a609799b0 100644 --- a/docs/showcase/cli-tools/cleveragents-cli-basics.md +++ b/docs/showcase/cli-tools/cleveragents-cli-basics.md @@ -460,9 +460,7 @@ based on code analysis. Exact values depend on your local environment.* - **`--format`** is a global flag that must come **before** the subcommand. - **`diagnostics --check`** is CI-friendly: exits non-zero only when there are actual `ERROR`-level checks (missing API keys are `WARN`, not `ERROR`). -- All three introspection commands (`version`, `info`, `diagnostics`) are - **lightweight** — they're in the fast-path that avoids loading heavy - subcommand modules. +- Both --help and --version use a fast-path eager exit that avoids loading subcommand modules, resulting in instant response times. The version, info, and diagnostics commands are lightweight introspection tools but do not benefit from the fast-path optimization. ## Try It Yourself