From f324df7e2fe5d79949531bbe14a628100619d6b6 Mon Sep 17 00:00:00 2001 From: nihalnihalani <24360630+nihalnihalani@users.noreply.github.com> Date: Thu, 16 Jul 2026 22:30:49 +0530 Subject: [PATCH 1/2] docs: fix nonexistent 'rrext_store get_all_projects' CLI example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Python client README and client-python docs both showed 'rocketride rrext_store get_all_projects' in the CLI examples block, but no such command exists: the CLI registers the command as 'store' (rrext_store is the underlying wire command name), and its subcommands are dir, type, write, rm, mkdir, and stat — there is no 'get_all_projects' subcommand. Replace the line with 'rocketride store dir /', matching the store examples documented in packages/docs/content-static/cli.mdx. Co-Authored-By: Claude Fable 5 --- docs/README-python-client.md | 2 +- packages/client-python/docs/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/README-python-client.md b/docs/README-python-client.md index 37f79bf7a..ae43a7449 100644 --- a/docs/README-python-client.md +++ b/docs/README-python-client.md @@ -554,7 +554,7 @@ rocketride status --token # Monitor task progress rocketride stop --token # Terminate a running task rocketride list # List all active tasks rocketride events ALL --token # Stream task events -rocketride rrext_store get_all_projects # List stored projects +rocketride store dir / # List the root of the file store ``` All commands accept `--uri` and `--apikey` flags, or read from environment variables. diff --git a/packages/client-python/docs/index.md b/packages/client-python/docs/index.md index 14f9040e1..cf02714c2 100644 --- a/packages/client-python/docs/index.md +++ b/packages/client-python/docs/index.md @@ -636,7 +636,7 @@ rocketride status --token # Monitor task progress rocketride stop --token # Terminate a running task rocketride list # List all active tasks rocketride events ALL --token # Stream task events -rocketride rrext_store get_all_projects # List stored projects +rocketride store dir / # List the root of the file store ``` All commands accept `--uri` and `--apikey` flags, or read from environment variables. From b008188c502a221babb1704b404a0916cd72e583 Mon Sep 17 00:00:00 2001 From: nihalnihalani <24360630+nihalnihalani@users.noreply.github.com> Date: Fri, 17 Jul 2026 23:36:49 +0530 Subject: [PATCH 2/2] docs: list store sub-commands under the CLI examples (review follow-up) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Review on #1613 suggested a newcomer-facing note for the store example. The suggested wording ('store dir / is an alias of store list /') is not accurate — no 'store list' subcommand or alias exists — so instead add a correct note under the CLI block in both files listing the six real sub-commands (dir, type, write, rm, mkdir, stat) and pointing to 'rocketride store --help'. Co-Authored-By: Claude Fable 5 --- docs/README-python-client.md | 2 ++ packages/client-python/docs/index.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/docs/README-python-client.md b/docs/README-python-client.md index ae43a7449..11c8fc4dc 100644 --- a/docs/README-python-client.md +++ b/docs/README-python-client.md @@ -557,6 +557,8 @@ rocketride events ALL --token # Stream task events rocketride store dir / # List the root of the file store ``` +The `store` command's sub-commands are `dir`, `type`, `write`, `rm`, `mkdir`, and `stat` — run `rocketride store --help` for details. + All commands accept `--uri` and `--apikey` flags, or read from environment variables. ## Configuration diff --git a/packages/client-python/docs/index.md b/packages/client-python/docs/index.md index cf02714c2..12f0f8535 100644 --- a/packages/client-python/docs/index.md +++ b/packages/client-python/docs/index.md @@ -639,6 +639,8 @@ rocketride events ALL --token # Stream task events rocketride store dir / # List the root of the file store ``` +The `store` command's sub-commands are `dir`, `type`, `write`, `rm`, `mkdir`, and `stat` — run `rocketride store --help` for details. + All commands accept `--uri` and `--apikey` flags, or read from environment variables. ## Configuration