feat(loader): per-document metadata sidecar → instance frontmatter#202
Merged
Conversation
A document corpus loaded offline carried no per-doc metadata, so instances had hash-slug titles and no facetable fields. Thread caller-supplied extra frontmatter through the document ingest path so the loader can set nummer/titel/wp/doctype/stand/… at materialize time. - escurel-index: DocumentIngestWorker::ingest + document_overlay gain an `extra: &Value` param, rendered as top-level instance frontmatter (a `titel`/`title` also wins the body heading). Server `/ingest/upload` passes Null (unchanged behaviour). - escurel-loader: `LoaderBuilder::with_metadata(map)` + `build --metadata <sidecar.json>` — a JSON object keyed by source file name → that file's extra frontmatter, merged verbatim into the instance. Test (real DuckDB, no mocks): tests/enrich.rs — a sidecar sets wp/doctype/titel/ nummer; the materialised instance's frontmatter carries them; a file without a sidecar entry still materialises. Existing loader/document_rebuild tests updated for the new arg and pass. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
Thread caller-supplied extra frontmatter through the document ingest path so the offline loader can set nummer/titel/wp/doctype/stand at materialize time (
--metadata <sidecar.json>, keyed by file name). Server /ingest/upload unchanged (passes Null). Test: tests/enrich.rs asserts the sidecar lands in instance frontmatter.🤖 Generated with Claude Code