Make provider import state converge safely#163
Draft
luca-ctx wants to merge 4 commits into
Draft
Conversation
luca-ctx
marked this pull request as ready for review
July 14, 2026 00:33
luca-ctx
force-pushed
the
ctx/import-state-resilience
branch
from
July 14, 2026 07:23
4636b39 to
273b431
Compare
luca-ctx
force-pushed
the
ctx/import-state-resilience
branch
from
July 15, 2026 03:31
273b431 to
89a7e1b
Compare
luca-ctx
marked this pull request as draft
July 17, 2026 18:28
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Why
Provider import state could previously remain ambiguous after mixed rejection, parser changes, or overlapping source scans. An older in-flight scan could also report against a newer observation. This change makes every durable result conditional on the exact current source observation without rewriting unchanged catalog rows.
Validation
cargo test -p ctx-history-store catalog::tests(34 passed)cargo test -p ctx-history-store schema::tests(29 passed)cargo test -p ctx-history-capture codex(44 passed, 1 ignored manual benchmark)cargo test -p ctx-history-capture retained_existing_contentcargo test -p ctx commands::import::native::tests(8 passed)cargo test -p ctx --test native_provider_rejections(16 passed)cargo clippy -p ctx-history-store -p ctx-history-capture -p ctx --all-targets -- -D warningscargo fmt --all -- --checkThis is the first PR in a stacked import-indexing resilience series. It is ready for CI and review, but will be held from merge until the combined stack passes cross-platform and real-corpus validation.