Skip to content

Commit e18b0e7

Browse files
committed
Simplify skill.md
1 parent 8e2f222 commit e18b0e7

File tree

11 files changed

+120
-168
lines changed

11 files changed

+120
-168
lines changed

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"name": "bibtools",
1414
"source": "./",
1515
"description": "A bibliography toolkit for LaTeX",
16-
"version": "1.7.5",
16+
"version": "1.7.6",
1717
"keywords": ["bibtex", "bibliography", "latex", "overleaf", "academic", "reference", "citation"],
1818
"category": "academic",
1919
"license": "MIT"

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bibtools",
33
"description": "A bibliography toolkit for LaTeX",
4-
"version": "1.7.5",
4+
"version": "1.7.6",
55
"author": {
66
"name": "Yunguan Fu"
77
},

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ Or in Claude Code, use the slash command: `/bibtidy refs.bib`
6363

6464
bibtidy verifies each entry against [Google Scholar](https://scholar.google.com/) and [CrossRef](https://search.crossref.org/), fixes errors, and upgrades stale preprints to published versions. Every change includes the original entry commented out above so you can compare or revert, plus one or more `% bibtidy:` URL lines for verification. We recommend using git to track changes. If using [Overleaf](https://www.overleaf.com/), this can be done with [git sync](https://docs.overleaf.com/integrations-and-add-ons/git-integration-and-github-synchronization). To remove bibtidy comments after review, ask your agent to remove all `bibtidy` comments from the file.
6565

66+
bibtidy's output is non-deterministic: the same `.bib` file can yield different fixes across runs, and Claude Code and Codex may reach different conclusions on the same entry. See the [FAQ](#bibtidy) for why, and always verify changes via the `% bibtidy:` URLs before accepting them.
67+
6668
Note that bibtidy assumes standard brace-style BibTeX like `@article{...}`. Parenthesized forms like `@article(...)` are not supported. Special blocks such as `@string`, `@preamble`, and `@comment` are ignored by the parser.
6769

6870
### How it works
@@ -408,6 +410,16 @@ bibtidy needs to search Google Scholar, CrossRef, and conference/journal sites.
408410

409411
You shouldn't, and that's by design. The point of bibtidy is to surface potential hallucinations and errors in your bibliography. For every changed entry, bibtidy includes a `% bibtidy:` URL so you can verify the correction yourself. Entries marked unchanged are very likely correct, but not guaranteed. Always check the provided links before accepting changes.
410412

413+
**Why do I get different results on different runs, or between Claude Code and Codex?**
414+
415+
bibtidy is non-deterministic. Running it twice on the same `.bib` file can produce different fixes, and Claude Code and Codex may reach different conclusions on the same entry. There are a few reasons for this:
416+
417+
- Search results vary between queries. Google Scholar and CrossRef can return slightly different candidate sets for the same title, and the web itself changes over time as new publications, DOIs, and venue pages appear.
418+
- Agent decisions depend on LLM sampling, which is stochastic. Given ambiguous evidence (e.g. a preprint with a near-match published version), different runs may land on `fix`, `review`, or `unchanged`.
419+
- Claude Code and Codex use different underlying models with different tool surfaces, so their web-search behavior and judgment thresholds differ.
420+
421+
This is why every change ships with `% bibtidy:` URLs: you should treat bibtidy's output as a reviewed first draft, not a final answer. Re-running on an already-tidied file is safe, and a second pass sometimes catches issues missed in the first.
422+
411423
**How does bibtidy compare to other tools?**
412424

413425
[CiteAudit](https://arxiv.org/abs/2602.23452) verifies bibliographic metadata but is a closed system. bibtidy is fully open-source, transparent (every change includes the original entry commented out and a source URL so you can verify exactly what changed and why), and it fixes issues (wrong authors, stale preprints, incorrect pages) directly in your .bib file rather than just flagging them.

docs/build.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,8 @@ def build_html(cards_html: str) -> str:
473473
<div class="container">
474474
<p class="intro">bibtidy cross-checks BibTeX entries against Google Scholar, CrossRef, and conference/journal sites. It upgrades arXiv/bioRxiv preprints to published versions (even when the title changed upon publication), corrects metadata (authors, pages, venues), and flags duplicate entries.</p>
475475
476+
<p class="intro"><strong>Note:</strong> bibtidy's output is non-deterministic. The same <code>.bib</code> file can yield different fixes across runs, and Claude Code and Codex may reach different conclusions on the same entry, due to variability in search results, LLM sampling, and differences between the two agents' underlying models. Every change ships with <code>% bibtidy:</code> URLs for verification &mdash; treat the output as a reviewed first draft, not a final answer.</p>
477+
476478
<div class="section">
477479
<div class="demo">
478480
<img src="bibtidy_demo.gif" alt="bibtidy demo" width="1600" height="1200">

docs/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,8 @@ <h1>bibtools</h1>
268268
<div class="container">
269269
<p class="intro">bibtidy cross-checks BibTeX entries against Google Scholar, CrossRef, and conference/journal sites. It upgrades arXiv/bioRxiv preprints to published versions (even when the title changed upon publication), corrects metadata (authors, pages, venues), and flags duplicate entries.</p>
270270

271+
<p class="intro"><strong>Note:</strong> bibtidy's output is non-deterministic. The same <code>.bib</code> file can yield different fixes across runs, and Claude Code and Codex may reach different conclusions on the same entry, due to variability in search results, LLM sampling, and differences between the two agents' underlying models. Every change ships with <code>% bibtidy:</code> URLs for verification &mdash; treat the output as a reviewed first draft, not a final answer.</p>
272+
271273
<div class="section">
272274
<div class="demo">
273275
<img src="bibtidy_demo.gif" alt="bibtidy demo" width="1600" height="1200">

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "bibtools"
3-
version = "1.7.5"
3+
version = "1.7.6"
44
description = "A bibliography toolkit for LaTeX, built as agent skills"
55
requires-python = ">=3.10"
66
license = "MIT"

0 commit comments

Comments
 (0)