From 2f2b99362bfd0e4dd7a500576f86ba1cbc244e43 Mon Sep 17 00:00:00 2001 From: jwbron <8340608+jwbron@users.noreply.github.com> Date: Sat, 21 Feb 2026 16:41:13 +0000 Subject: [PATCH 1/2] docs: Document --checkpoint-repo flag in checkpoint guide --- docs/guides/checkpoint-access.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/guides/checkpoint-access.md b/docs/guides/checkpoint-access.md index e843e30858..a78f6e2621 100644 --- a/docs/guides/checkpoint-access.md +++ b/docs/guides/checkpoint-access.md @@ -2,6 +2,13 @@ Checkpoints capture agent session context (transcripts, tool calls, files touched, token usage) as versioned JSON on the `egg/checkpoints/v2` git branch. In multi-agent pipelines, checkpoints enable agents to discover what other agents did, what files they touched, and how many tokens they used. +## Global Options + +All `egg-checkpoint` commands support these top-level options: + +- `--repo-path PATH` — Repository path (defaults to `EGG_REPO_PATH` or current directory) +- `--checkpoint-repo OWNER/REPO` — External checkpoint repository in `owner/repo` format. Overrides auto-detection from repository settings. Use this when querying checkpoints from a different repository than the current one. + ## When to Use Checkpoints - **Reviewing another agent's work**: See what a coder agent did before writing tests From 69795aa004d4ccb486a598dfe6b450ab67e0fdda Mon Sep 17 00:00:00 2001 From: "egg-reviewer[bot]" <261018737+egg-reviewer[bot]@users.noreply.github.com> Date: Sat, 21 Feb 2026 16:46:24 +0000 Subject: [PATCH 2/2] docs: Improve checkpoint-repo bullet formatting per review --- docs/guides/checkpoint-access.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/guides/checkpoint-access.md b/docs/guides/checkpoint-access.md index a78f6e2621..5db4b20b4a 100644 --- a/docs/guides/checkpoint-access.md +++ b/docs/guides/checkpoint-access.md @@ -7,7 +7,8 @@ Checkpoints capture agent session context (transcripts, tool calls, files touche All `egg-checkpoint` commands support these top-level options: - `--repo-path PATH` — Repository path (defaults to `EGG_REPO_PATH` or current directory) -- `--checkpoint-repo OWNER/REPO` — External checkpoint repository in `owner/repo` format. Overrides auto-detection from repository settings. Use this when querying checkpoints from a different repository than the current one. +- `--checkpoint-repo OWNER/REPO` — External checkpoint repository in `owner/repo` format. Overrides auto-detection from repository settings. + Use this when querying checkpoints from a different repository than the current one. ## When to Use Checkpoints