AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Ester

skill-taivop-marketplace-ester · by taivop

Searches the Estonian library catalog ESTER (ester.ee) to find books, check availability, and locate them in specific library branches. USE WHEN user asks to find a book in Estonian libraries, check if a book is available, find where to pick up a library book, search ESTER, or mentions Estonian library branches like Kalamaja, Keskraamatukogu, Tartu, etc.

No reviews yet
0 installs
23 views
0.0% view→install

Install

$ agentstack add skill-taivop-marketplace-ester

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-taivop-marketplace-ester)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Ester? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

ESTER Library Catalog Search

Search the Estonian unified library catalog (ESTER) to find books and check their availability at specific branches. No public API — uses curl + HTML parsing.

Parser scripts are in this skill directory (relative to SKILL.md).

Workflow

1. Search for books

curl -s "https://www.ester.ee/search~S1*est/X?searchtype=X&searcharg=QUERY&searchscope=SCOPE&SORT=DZ&extended=0&SUBMIT=OTSI" \
  | python3 SKILL_DIR/parse_search.py

Replace QUERY with URL-encoded search terms (ä=%C3%A4, ö=%C3%B6, ü=%C3%BC, õ=%C3%B5, spaces=+).

Search types (replace X in both URL path and searchtype=):

| Code | Field | |------|-------| | X | Keyword (all fields) — default | | i | ISBN/ISSN |

Use keyword (X) for title and author queries too — it handles them well. Do not use searchtype=t (title) or searchtype=a (author): ESTER returns a browse-heading index page for those, not a results list, and the parser will report 0 results even when matches exist.

searchscope values:

| Scope | Library | |-------|---------| | 1 | All libraries (default) | | 7 | Eesti Rahvusraamatukogu (National Library) | | 8 | Tallinna Raamatukogud / TlnRK (all Tallinn public library branches) | | 15 | TLÜ Akadeemiline Raamatukogu | | 55 | Tartu Linnaraamatukogu | | 58 | Tartu Ülikooli raamatukogud |

Output: JSON with total count and results array of {id, title}. If an ISBN search redirects directly to a record page, output includes "direct_record": true.

Pagination: 50 results per page. Add &startnum=51 for page 2.

2. Get holdings for a book

Step 1 — Fetch the record page and check for truncation:

curl -s "https://www.ester.ee/record=b{RECORD_ID}~S1*est" \
  | python3 SKILL_DIR/parse_record.py

Step 2 — If output contains "truncated": true, fetch the full holdings using the full_holdings_url from the output:

curl -s "FULL_HOLDINGS_URL" \
  | python3 SKILL_DIR/parse_record.py

The record page only shows the first 10 holdings. Always check for truncation — popular books often have 30-50+ copies across branches.

Output: JSON with title, author, published, isbn, holdings array of {location, call_number, status, notes}, and optionally truncated/full_holdings_url.

Status values:

  • KOHAL — available on shelf
  • TÄHTAEG DD.MM.YY — checked out, due date
  • TÖÖTLUSES — being processed, not yet available
  • KOHALKASUTUS — in-library use only
  • ARHIIVEKSEMPLAR — archive copy
  • EI LAENUTATA — non-circulating
  • REMONDI AJAKS PAKITUD — packed away during renovation
  • +N JÄRJEKORRAS — N people in queue (appended to due date)

3. Present results

For each book, show:

  • Title, author, year
  • Holdings filtered to user's preferred branch(es), with status and call number
  • ESTER link: https://www.ester.ee/record=b{RECORD_ID}~S1*est

For multiple books, show a summary table of availability per branch.

Tallinn public library branches (TlnRK)

| User says | ESTER location contains | |-----------|------------------------| | Kalamaja | TlnRK Kalamaja | | Keskraamatukogu / main | TlnRK Keskraamatukogu | | Südalinn / city center | TlnRK Südalinna | | Liivalaia | TlnRK Liivalaia | | Pelgulinn / Pelguranna | TlnRK Pelguranna | | Nõmme | TlnRK Nõmme | | Mustamäe | TlnRK Mustamäe | | Õismäe | TlnRK Väike-Õismäe | | Pirita | TlnRK Pirita | | Kadriorg | TlnRK Kadrioru | | Pääsküla | TlnRK Pääsküla |

Children's sections are listed separately with "lastekirjandus" suffix. Children's books have call numbers starting with L-.

Extra metadata (age group, description, price)

For info not in ESTER (age group, description, price, series), use WebSearch for the book title + author with allowed_domains: ["rahvaraamat.ee", "apollo.ee"]. Use title + author, not ISBN — ISBN search is unreliable on these stores.

Tips

  • Keyword search (searchtype=X) is forgiving with word order — use it for all freetext queries.
  • Boolean operators work: AND, OR, NOT.
  • For multiple books, batch all searches first, then fetch records for matches.
  • searchscope filters search results but the record/holdings page always shows ALL libraries' copies. Filter the holdings JSON by location to show only relevant branches.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.