fix(docs): correct provenance CLI command names in README (D-01)

Audit D-01 (2026-06-15): README documented `provenance sync` and
`provenance export-bib` but cli.py:161/195 defines `scan` and `bib`.
Fix: update both occurrences (prose + CLI reference block).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Tarik Moussa
2026-06-15 00:49:50 +02:00
parent 1bec18ae82
commit b12789a47f

View File

@@ -81,8 +81,8 @@ Maps C++ symbols (qualified names or `file.cpp:line` references) to the
papers they implement. The workflow:
1. Tag C++ source with `@cite <bibkey>` in Doxygen comments.
2. Run `codex provenance sync --lib-path <path>` to scan and resolve tags.
3. Run `codex provenance export-bib <out.bib>` to generate a `.bib` file
2. Run `codex provenance scan --lib-path <path>` to scan and resolve tags.
3. Run `codex provenance bib <out.bib>` to generate a `.bib` file
containing **only the cited subset** of your collection.
The exported `.bib` is a derived view of the master catalogue — regenerate
@@ -97,8 +97,8 @@ codex ingest <id> # ingest one paper by arXiv ID or DOI
codex ingest-file <ids.txt> # bulk ingest from a file of IDs
codex search "<query>" [--hybrid]
codex discover leads
codex provenance sync --lib-path <path>
codex provenance export-bib <out.bib>
codex provenance scan --lib-path <path>
codex provenance bib <out.bib>
codex ask "<question>" # optional LLM Q&A via Ollama
```