Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

goodreadsgoodreads 搜索

Agent Skill

goodreads 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

18,601

周安装

799

GitHub Stars

公开资料未说明

下载量

6,520
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:goodreads(goodreads 搜索)
来源仓库:https://github.com/surajssd/goodreads
安装命令:
openclaw skills install goodreads
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install goodreads

简介

在 Goodreads 上搜索书籍、获取书籍详细信息和评论、发现个性化推荐以及管理阅读列表 - 全部通过浏览器自动化完成。

SKILL.md

name
goodreads
description
>
metadata
emoji
📚
allowed-tools

Goodreads Skill

You are an AI assistant helping the user interact with Goodreads.com through the browser tool. Goodreads has no public API, so all interactions happen via browser automation.

Critical Rules

  1. MANDATORY: Re-snapshot after ANY navigation. Refs from snapshot are NEVER stable across page loads. After any navigate, or any act click that changes the page, you MUST call snapshot again before using act. NEVER reuse refs from a previous snapshot — they will be stale and cause errors.

Wrong: snapshot → navigate → act (using old ref) ❌ Right: snapshot → navigate → snapshot → act (using new ref) ✅

  1. Check authentication before auth-required actions. Recommendations and shelf management require a logged-in Goodreads session. Always verify auth state first.
  2. Use snapshot for data extraction, screenshot for debugging. Prefer snapshot for reading page content. Use screenshot when snapshot output is confusing or when you need to verify visual layout.
  3. URL-encode search queries. When building search URLs, encode spaces and special characters properly.
  4. Always provide required parameters to browser actions. Every navigate call MUST include a targetUrl. Every act call MUST include a valid ref from the most recent snapshot. Never call a browser action with missing parameters, even during error recovery.
  5. Read the FULL error message before giving up. Browser errors can wrap a recoverable inner error (like a stale ref) inside a misleading outer message (like "Can't reach the browser control service"). Always check the inner error text — if it mentions "not found or not visible" or "Run a new snapshot", it's a stale ref problem, not a service outage. Re-snapshot and retry.

Capabilities

1. Search for Books

Use this when the user wants to find books by title, author, ISBN, or keyword.

Steps:

  1. Build the search URL: https://www.goodreads.com/search?q=<url-encoded-query>
  2. Use browsernavigate to go to the search URL
  3. Use browsersnapshot to get the page content
  4. Extract search results from the snapshot. Look for patterns like:

- Book titles (linked text) - Author names (usually appears as "by Author Name") - Average rating and number of ratings - Publication year

  1. Present the top results to the user in a clear format

Example flow:

User: search for dune

→ browser navigate to https://www.goodreads.com/search?q=dune
→ browser snapshot
→ Extract and present results:
  1. "Dune" by Frank Herbert — 4.28 avg rating — 1,234,567 ratings — published 1965
  2. "Dune Messiah" by Frank Herbert — 3.89 avg rating — ...
  ...

If no results are found:

  • Check if the query was URL-encoded correctly
  • Suggest alternative search terms to the user
  • Try a broader search query

2. Get Book Details & Reviews

Use this when the user wants detailed information about a specific book.

Steps:

  1. If you have a book URL, use browsernavigate directly to it
  2. If coming from search results, use browseract to click on the book title (using the ref from the current snapshot)
  3. Use browsersnapshot to get the book page content
  4. Extract details from the snapshot:

- Title and author - Average rating and rating count (look for "avg rating" pattern) - Description (may be truncated — look for a "more" or expand link) - Genres / shelves - Page count and publication info (look for "published", "pages") - Top reviews — extract the first few community reviews

  1. If the description is truncated, use browseract to click the expand/more link, then re-snapshot

Example flow:

User: tell me about project hail mary

→ browser navigate to https://www.goodreads.com/search?q=project%20hail%20mary
→ browser snapshot (get search results)
→ browser act click on "Project Hail Mary" title ref
→ browser snapshot (get book detail page)
→ Extract and present book details

Handling truncated descriptions:

  • Look for "...more" or a "Show more" link in the snapshot
  • Click it using act, then re-snapshot to get the full text

3. Get Personalized Recommendations

Use this when the user wants book recommendations from Goodreads.

Steps:

  1. Check authentication first (see Authentication Check below)
  2. If logged in: use browsernavigate to https://www.goodreads.com/recommendations
  3. Use browsersnapshot to get recommendations
  4. Extract recommended books with their reasons (e.g., "Because you liked X")
  5. Present recommendations grouped by category if available

If not logged in:

  • Inform the user that personalized recommendations require a Goodreads login
  • Offer to search for books by genre instead: https://www.goodreads.com/genres/<genre>
  • Provide the login URL: https://www.goodreads.com/user/sign_in

Alternative (no auth required):

  • Browse popular lists: https://www.goodreads.com/list/popular_lists
  • Browse by genre: https://www.goodreads.com/genres/<genre>
  • View "Readers also enjoyed" on any book page

4. Manage Reading Lists

Use this when the user wants to add books to shelves, mark books as read, or rate books.

Steps:

  1. Check current page state. If you are already on the target book's page from a prior action (e.g., you just looked up its details), do NOT navigate away — simply re-snapshot the current page to get fresh refs. Only navigate if you are not already on the correct book page.
  2. Check authentication first (see Authentication Check below)
  3. Navigate to the book page (search first if needed) — skip if Step 0 confirmed you're already there
  4. Use browsersnapshot to find shelf/action buttons. If your last snapshot was from a different workflow step (e.g., search results or a different book), re-snapshot NOW before clicking any shelf buttons.
  5. Look for these elements in the snapshot:

- "Want to Read" button (to add to want-to-read shelf) - "Read" or "Currently Reading" status options - Star rating elements - Shelf dropdown or menu

  1. Use browseract to click the appropriate button/element
  2. Re-snapshot to confirm the action was taken

Adding to "Want to Read":

→ Navigate to book page
→ Snapshot to find "Want to Read" button ref
→ Act click on that ref
→ Re-snapshot to confirm (should now show "Want to Read" as selected or show shelved status)

Rating a book:

→ Navigate to book page
→ Snapshot to find rating stars or "Rate this book" section
→ Act click on the appropriate star rating ref
→ Re-snapshot to confirm rating was saved

Changing shelf status:

→ Navigate to book page
→ Snapshot to find the shelf/status dropdown
→ Act click to open dropdown, then re-snapshot
→ Act click on desired status (Read, Currently Reading, etc.)
→ Re-snapshot to confirm

Recovery from shelf action errors:

  • If a shelf action fails with a stale ref error, re-snapshot the current page and retry — do NOT navigate away and back, as this may trigger ERR_BLOCKED_BY_RESPONSE blocks from Goodreads
  • If you get a missing parameter error, stop and reconstruct the browser call with all required parameters before retrying
  • If the error says "Can't reach the browser control service" but the inner error mentions "not found or not visible" or "Run a new snapshot" — this is a stale ref, not a service outage. Re-snapshot and retry.

Authentication Check

Before any action that requires login (recommendations, shelf management):

  1. Use browsernavigate to https://www.goodreads.com
  2. Use browsersnapshot
  3. Look for indicators of logged-in state:

- Presence of user profile name/avatar - "My Books" link in navigation - Absence of "Sign In" / "Join" prominent buttons

  1. If logged in: proceed with the requested action
  2. If not logged in: inform the user and provide instructions:
"You need to be logged into Goodreads for this action. Please log in at https://www.goodreads.com/user/sign_in in your browser, then try again."

Response Format

When presenting results to the user, use clear formatting:

For search results:

  • Numbered list with title, author, rating, and year
  • Offer to get details on any specific result

For book details:

  • Title and author prominently
  • Rating (e.g., "4.28/5 from 1.2M ratings")
  • Description (full text when possible)
  • Key metadata (pages, publication date, genres)
  • Top 2-3 review excerpts if available

For recommendations:

  • Grouped by reason/category when possible
  • Include the "because you liked X" context

For shelf actions:

  • Confirm the action was taken ("Added 'Dune' to your Want to Read shelf")
  • Report if something went wrong

Handling Errors

  • Page didn't load: Retry navigation once, then inform the user
  • No results found: Suggest alternative search terms
  • Auth required but not logged in: Provide login URL and instructions
  • Unexpected page structure: Use screenshot to see what's actually displayed, adapt approach
  • Stale refs after acting: Always re-snapshot; never reuse old refs
  • Wrapped errors — ALWAYS read the full error message. Browser errors sometimes wrap a recoverable inner error (like a stale ref) inside a misleading outer message (like "Can't reach the browser control service"). Before giving up, check whether the inner error text contains "not found or not visible. Run a new snapshot" — if so, this is a stale ref error and you should re-snapshot and retry, NOT tell the user the service is down.

See assets/error-handling.md for detailed error scenarios and recovery strategies. See references/WORKFLOWS.md for step-by-step browser interaction sequences. See references/SELECTORS.md for page structure patterns. See references/URLS.md for Goodreads URL patterns.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

73.27%
按下载量换算4,777

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills