Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions devtools/command_catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,18 +589,18 @@ def to_dict(self) -> dict[str, object]:
),
),
CommandSpec(
"workspace index-v37-fast-forward",
"workspace index-fast-forward",
"workspace",
"Clone-forward index v36 to v37 by retiring derived caches without raw replay.",
"devtools.index_v37_fast_forward",
"Plan and prove a declared index fast-forward against retained raw replay.",
"devtools.index_fast_forward",
use_when=(
"Advance a stopped exact-shape v36 index to v37. The actuator reflink-clones the active generation, "
"drops only the three retired run-projection caches, proves surviving schema and row-count parity, "
"then separately atomically activates the proven generation."
"Advance a stopped index generation across a declared clone-safe schema gap. The actuator clones the "
"active generation, applies lifecycle operations, proves a deterministic retained-raw sample through "
"the production parser/materializer route, then atomically activates the proven generation."
),
examples=(
"devtools workspace index-v37-fast-forward prepare --archive-root /path/to/archive --receipt /path/to/receipt.json",
"devtools workspace index-v37-fast-forward activate --receipt /path/to/receipt.json",
"devtools workspace index-fast-forward prepare --archive-root /path/to/archive --receipt /path/to/receipt.json",
"devtools workspace index-fast-forward activate --receipt /path/to/receipt.json",
),
),
CommandSpec(
Expand Down
Loading