Use when the user asks about a Calibre ebook library or book collection: find books, search metadata or full text in EPUB/AZW3 files, or locate book paths via Calibre databases.
98
98%
Does it follow best practices?
Impact
99%
1.80xAverage score across 4 eval scenarios
Passed
No known issues
| Column | Type | Description |
|---|---|---|
| id | INTEGER | Primary key |
| title | TEXT | Book title |
| sort | TEXT | Sort key |
| path | TEXT | Relative path from library root |
| author_sort | TEXT | Author name for sorting |
| has_cover | BOOL | Cover image exists |
| uuid | TEXT | Unique identifier |
| Column | Type |
|---|---|
| id | INTEGER |
| name | TEXT |
| Column | Type |
|---|---|
| book | INTEGER |
| author | INTEGER |
| Column | Type | Description |
|---|---|---|
| id | INTEGER | Primary key |
| book | INTEGER | FK to books |
| format | TEXT | EPUB, PDF, AZW3, etc. |
| name | TEXT | Filename without extension |
series, books_series_link - Series infotags, books_tags_link - Tags/categoriespublishers, books_publishers_link - Publisherscomments - Book descriptionsidentifiers - ISBN, etc.| Column | Type | Description |
|---|---|---|
| id | INTEGER | Primary key |
| book | INTEGER | FK to metadata.db books |
| format | TEXT | Source format |
| searchable_text | TEXT | Full extracted text |
Uses Calibre's custom tokenizer - not usable outside Calibre.
Query books_text directly with LIKE for content search.
Full path to a book file:
{library_root}/{books.path}/{data.name}.{data.format.lower()}Example:
/path/to/Calibre Library/Ted Dunning/Practical Machine Learning (915)/Practical Machine Learning - Ted Dunning.pdfevals
scenario-1
scenario-2
scenario-3
scenario-4
references
sample-library
Arthur C. Clarke
Warp Drive Studies (993)
Bertrand Russell
The Problems of Philosophy (4)
The Problems of Philosophy (997)
Jules Verne
Leviathan Under the Pacific (998)
Twenty Thousand Leagues under the Sea (1)
Twenty Thousand Leagues under the Sea (999)
Karl Marx
The Communist Manifesto (6)
The Communist Manifesto (995)
The Prince of the Workers (994)
scripts