Claude-skill-registry livelib-reading-list-search

Search https://www.livelib.ru/reader/<username>/reading for a mentioned book and return the best matching LiveLib book URL.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/livelib-reading-list-search" ~/.claude/skills/majiayu000-claude-skill-registry-livelib-reading-list-search && rm -rf "$T"
manifest: skills/data/livelib-reading-list-search/SKILL.md
source content

Goal

Given a

username
and
book_title
, find the best matching book in the user's LiveLib reading list and return a canonical
https://www.livelib.ru/book/...
URL.

Inputs

  • username
    (string)
  • book_title
    (string)

Output

  • book_url
    (string | null)
  • candidates
    (list)

Notes

  • Prefer exact title matches; otherwise choose the closest candidate.
  • If no candidate is found, return
    book_url = null
    .

See references in

references/
.