-
Notifications
You must be signed in to change notification settings - Fork 0
Learning Crossref Literature Context
github-actions[bot] edited this page Jun 23, 2026
·
2 revisions
Beginner to advanced.
Research engineers, students, technical writers, and agent developers adding literature metadata to simulation context.
By the end, you can:
- attach deterministic mocked CrossRef metadata to a case;
- export BibTeX references;
- explain metadata-only limitations; and
- prevent agents from claiming full-paper review or validation from CrossRef records.
examples/crossref_context/sample_case.jsonexamples/crossref_context/mock_crossref_response.json- Architecture: CrossRef
caereflex crossref attach examples/crossref_context/sample_case.json \
--mock-response examples/crossref_context/mock_crossref_response.json \
--out caereflex.with_literature.json
caereflex export bibtex caereflex.with_literature.json --out references.bibReview the outputs:
python -m json.tool caereflex.with_literature.json | head -120
sed -n '1,120p' references.bib- The mock response keeps the exercise deterministic and offline.
- CrossRef records are bibliographic metadata and available abstracts when provided.
- Metadata can guide review, but it does not validate the simulation or prove that full papers were read.
A representative enriched case using examples/crossref_context/mock_crossref_response.json should contain deterministic literature metadata:
{
"case_id": "case_sample_crossref",
"literature_evidence": [
{
"doi": "10.0000/example.cavity.1",
"title": "A benchmark study of incompressible lid-driven cavity flow",
"evidence_status": "abstract_available",
"trace": {"source_kind": "external_metadata", "adapter": "crossref"}
},
{
"doi": "10.0000/example.openfoam.2",
"title": "Finite volume methods for cavity flow examples",
"evidence_status": "metadata_only"
}
],
"literature_context": {
"records_used": ["10.0000/example.cavity.1", "10.0000/example.openfoam.2"],
"summary": "CrossRef literature context generated from 2 metadata record(s); 1 record(s) included available abstracts."
}
}A representative BibTeX export should contain entries keyed from the deterministic fixture DOIs:
@article{ref1,
title = {A benchmark study of incompressible lid-driven cavity flow},
doi = {10.0000/example.cavity.1}
}Interpret the output as follows:
- Extracted evidence: DOI, title, year, author, publisher metadata, and any provided abstract come from the mocked CrossRef response file.
- Inferred context: relevance scores, generated queries, and the summary are CaeReflex context-building outputs for review prioritization.
- Warnings:
literature_context.limitationsanddo_not_claimare mandatory guardrails, especially formetadata_onlyrecords. - Provenance:
crossref_attachedand each record trace identify CrossRef as external metadata, not a local simulation source. - Unsafe claims to avoid: do not claim that CaeReflex read full papers, that metadata validates the simulation, that the cited work proves this case is correct, or that bibliography export is peer review.
Find one title, DOI, or bibliographic field in the enriched case.
Write a short literature-context paragraph that says what metadata was attached and what must not be concluded from it.
Inspect the CrossRef architecture and answer:
- How does CaeReflex distinguish metadata-only records from abstract-available records?
- Why should live network calls be optional in tests and teaching?
- What language should an agent use when citing CrossRef metadata?
- The learner used the mock CrossRef response.
- The learner exported BibTeX.
- The learner avoided saying CaeReflex read full papers or validated the simulation.
- Home
- Architecture
- Developer-Guide
- Learning
- Reference
- Releases
- User-Guide
Synced from /wiki/docs in the main CaeReflex repository.