Done. Here's what I found:
SKILL.md — Medical Library Skill
The skill instructs me to:
- Always use
query_library_db as the primary tool to discover books, sections, and file paths — never filesystem tools like ls or grep
- Classify queries as narrow (single fact/drug) or broad (clinical scenario) before searching
- Use
paragraphs_fts for specific facts and headings_fts for broad topics
- Read files using paths + line offsets returned from DB queries
- Always cite sources as: Book Title, p. XXX
Library Search Results — "Diabetes"
The search hit the Goldman-Cecil Medicine International Edition (2-volume set), which references diabetes mellitus extensively (pages 1536+). The index entries confirm it's a major topic covered across multiple blocks of the textbook.
For a more targeted result, I would refine the search — for example:
SELECT title, book_title, '/textbooks/' || block_file_path AS file_path,
line_number, para_line_ranges
FROM headings_fts WHERE headings_fts MATCH '"diabetes mellitus"' ORDER BY rank LIMIT 10
This would find dedicated section headings on diabetes for comprehensive coverage. Would you like me to drill deeper into a specific aspect — e.g., classification, pathophysiology, treatment, or complications?