From b12789a47fd471b59dff48227a1214b8e85ef529 Mon Sep 17 00:00:00 2001 From: Tarik Moussa Date: Mon, 15 Jun 2026 00:49:50 +0200 Subject: [PATCH] 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 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 35b441f..a68202e 100644 --- a/README.md +++ b/README.md @@ -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 ` in Doxygen comments. -2. Run `codex provenance sync --lib-path ` to scan and resolve tags. -3. Run `codex provenance export-bib ` to generate a `.bib` file +2. Run `codex provenance scan --lib-path ` to scan and resolve tags. +3. Run `codex provenance 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 # ingest one paper by arXiv ID or DOI codex ingest-file # bulk ingest from a file of IDs codex search "" [--hybrid] codex discover leads -codex provenance sync --lib-path -codex provenance export-bib +codex provenance scan --lib-path +codex provenance bib codex ask "" # optional LLM Q&A via Ollama ``` -- 2.49.1