hardcover
Query reading lists and book data from Hardcover.app via GraphQL API. Triggers when user mentions Hardcover, asks about their reading list/library, wants book progress, searches for books/authors/series, or references "currently reading", "want to read", or "books I've read". Also use for syncing reading data to other systems (Obsidian, etc.) or tracking reading goals.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install hardcover或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install hardcover⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/hardcover/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: hardcover description: Query reading lists and book data from Hardcover.app via GraphQL API. Triggers when user mentions Hardcover, asks about their reading list/library, wants book progress, searches for books/authors/series, or references "currently reading", "want to read", or "books I've read". Also use for syncing reading data to other systems (Obsidian, etc.) or tracking reading goals. homepage: https://hardcover.app metadata: { "openclaw": { "emoji": "📚", "requires": { "env": ["HARDCOVER_API_TOKEN"] }, }, } ---
Query your reading library, book metadata, and search Hardcover's catalog.
HARDCOVER_API_TOKEN from https://hardcover.app/settingshttps://api.hardcover.app/v1/graphqlAll queries require Authorization: Bearer {token} header (token from settings, add Bearer prefix):
curl -X POST https://api.hardcover.app/v1/graphql \
-H "Authorization: Bearer $HARDCOVER_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"query": "query { me { id username } }"}'
```graphql query { me { id username } } ```
status_id filter: - 1 = Want to Read - 2 = Currently Reading - 3 = Read - 4 = Paused - 5 = Did Not Finish
limit/offset, add distinct_on: book_idquery {
me {
user_books(where: { status_id: { _eq: 2 } }) {
user_book_reads { progress_pages }
book {
title
pages
image { url }
contributions { author { name } }
}
}
}
}
query ($userId: Int!, $status: Int!) {
user_books(
where: { user_id: { _eq: $userId }, status_id: { _eq: $status } }
limit: 25
offset: 0
distinct_on: book_id
) {
book {
id
title
pages
image { url }
contributions { author { name } }
}
}
}
query ($q: String!, $type: String!) {
search(query: $q, query_type: $type, per_page: 10, page: 1) {
results
}
}
query_type: Book, Author, Series, Character, List, Publisher, User
query {
editions(where: { title: { _eq: "Oathbringer" } }) {
title
pages
isbn_13
edition_format
publisher { name }
book {
slug
contributions { author { name } }
}
}
}
_like, _ilike, _regex)For detailed field documentation on Books, Editions, Authors, Series, User Books, Activities, Lists, Goals, and other entities, see references/entities.md.
| Code | Meaning | |------|---------| | 200 | Success | | 401 | Invalid/expired token | | 429 | Rate limited |
安装 Hardcover.app skill for tracking books you're reading, reading goal, and finding books you'd love to read 后,可以对 AI 说这些话来触发它
Help me get started with Hardcover.app skill for tracking books you're reading, reading goal, and finding books you'd love to read
Explains what Hardcover.app skill for tracking books you're reading, reading goal, and finding books you'd love to read does, walks through the setup, and runs a quick demo based on your current project
Use Hardcover.app skill for tracking books you're reading, reading goal, and finding books you'd love to read to query reading lists and book data from Hardcover
Invokes Hardcover.app skill for tracking books you're reading, reading goal, and finding books you'd love to read with the right parameters and returns the result directly in the conversation
What can I do with Hardcover.app skill for tracking books you're reading, reading goal, and finding books you'd love to read in my data & analytics workflow?
将技能文件夹放到 ~/.claude/skills/hardcover/ 目录(个人级,所有项目可用),或 .claude/skills/hardcover/(项目级)。重启 AI 客户端后,用 /hardcover 主动调用,或让 AI 根据上下文自动发现并使用。
Hardcover.app skill for tracking books you're reading, reading goal, and finding books you'd love to read 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Hardcover.app skill for tracking books you're reading, reading goal, and finding books you'd love to read 可免费安装使用。请查阅仓库了解许可证信息。
Lists the top use cases for Hardcover.app skill for tracking books you're reading, reading goal, and finding books you'd love to read, with example commands for each scenario
Automate my data & analytics tasks using Hardcover.app skill for tracking books you're reading, reading goal, and finding books you'd love to read
Identifies repetitive steps in your workflow and sets up Hardcover.app skill for tracking books you're reading, reading goal, and finding books you'd love to read to handle them automatically
Query reading lists and book data from Hardcover.app via GraphQL API. Triggers when user mentions Hardcover, asks about their reading list/library, wants book progress, searches for books/authors/series, or references "currently reading", "want to read", or "books I've read". Also use for syncing reading data to other systems (Obsidian, etc.) or tracking reading goals.
Hardcover.app skill for tracking books you're reading, reading goal, and finding books you'd love to read 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。