Wiki Frontmatter
Every wiki note in ~/crossmem/wiki/ starts with YAML frontmatter between --- delimiters.
Fields
| Field | Type | Required | Description |
|---|---|---|---|
cite_key | string | yes | DSL-generated citation key. Example: vaswani2017attention |
title | string | yes | Paper title |
authors | list[string] | yes | List of author names |
year | integer | yes | Publication year |
arxiv_id | string | yes (arXiv) | arXiv identifier, e.g. 1706.03762 |
doi | string | no | DOI (may be preprint DOI) |
doi_preprint | string | no | Preprint DOI (e.g. 10.48550/arXiv.1706.03762) |
doi_published | string | no | Published version DOI (if paper was published in a journal) |
captured_at | string | yes | Unix timestamp of capture |
raw | string | yes | Path to the raw PDF file |
pdf_sha256 | string | yes | SHA-256 hash of the raw PDF bytes |
parser | string | yes | Parser used: marker, pdftotext |
chunks | integer | yes | Number of chunks in the document |
meta.sources | list[string] | yes | Metadata sources used: arxiv, crossref, openalex |
meta.reconciled | boolean | yes | Whether metadata was cross-verified across sources |
meta.warnings | list[string] | no | Warnings from metadata reconciliation |
Example
---
cite_key: vaswani2017attention
title: "Attention Is All You Need"
authors:
- "Ashish Vaswani"
- "Noam Shazeer"
- "Niki Parmar"
year: 2017
arxiv_id: "1706.03762"
doi: "10.48550/arXiv.1706.03762"
captured_at: "1776227254"
raw: "~/crossmem/raw/1776227254_vaswani2017attention.pdf"
pdf_sha256: "9a8f3b..."
parser: "marker"
chunks: 47
meta:
sources: ["arxiv", "crossref", "openalex"]
reconciled: true
warnings: []
---
Citations section
After the frontmatter, the wiki body starts with a title heading and a ## Citations section containing five subsections:
# Attention Is All You Need
## Citations
### APA
Vaswani, A., & Shazeer, N. (2017). Attention Is All You Need. arXiv preprint arXiv:1706.03762.
### MLA
Vaswani, Ashish, et al. "Attention Is All You Need" arXiv preprint arXiv:1706.03762 (2017).
### Chicago
Vaswani, Ashish, and Noam Shazeer. "Attention Is All You Need" arXiv preprint arXiv:1706.03762 (2017).
### IEEE
A. Vaswani et al., "Attention Is All You Need" arXiv preprint arXiv:1706.03762, 2017.
### BibTeX
```bibtex
@article{vaswani2017attention,
title={Attention Is All You Need},
author={Ashish Vaswani and Noam Shazeer},
year={2017}
}