Readeck integration for saving and managing articles. Supports adding URLs, listing entries, and managing bookmarks via Readeck's API. Configure custom URL and API key per request or via environment variables READECK_URL and READECK_API_KEY.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install readeck或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install readeck⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/readeck/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: readeck description: Readeck integration for saving and managing articles. Supports adding URLs, listing entries, and managing bookmarks via Readeck's API. Configure custom URL and API key per request or via environment variables READECK_URL and READECK_API_KEY. ---
Configure Readeck access via:
url and apiKeyREADECK_URL and READECK_API_KEYAdd a URL to Readeck for parsing and saving:
curl -X POST "$READECK_URL/api/bookmarks" \
-H "Authorization: Bearer $READECK_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com/article"}'
Response includes id, url, and title.
Fetch saved articles:
curl "$READECK_URL/api/bookmarks?limit=20" \
-H "Authorization: Bearer $READECK_API_KEY"
Query parameters: page, limit, status, search.
curl "$READECK_URL/api/bookmarks/$ID" \
-H "Authorization: Bearer $READECK_API_KEY"
curl -X DELETE "$READECK_URL/api/bookmarks/$ID" \
-H "Authorization: Bearer $READECK_API_KEY"
curl -X PUT "$READECK_URL/api/bookmarks/$ID/status" \
-H "Authorization: Bearer $READECK_API_KEY" \
-H "Content-Type: application/json" \
-d '{"status": "read"}'
Save with tags:
{"url": "https://example.com", "tags": ["tech", "readlater"]}
Save to specific collection:
{"url": "https://example.com", "collection": "my-collection"}
Filter by status: unread, read, archived
401: Invalid API key404: Entry not found422: Invalid URL or request body安装 Readeck 后,可以对 AI 说这些话来触发它
Help me get started with Readeck
Explains what Readeck does, walks through the setup, and runs a quick demo based on your current project
Use Readeck to readeck integration for saving and managing articles
Invokes Readeck with the right parameters and returns the result directly in the conversation
What can I do with Readeck in my marketing & growth workflow?
Lists the top use cases for Readeck, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/readeck/ 目录(个人级,所有项目可用),或 .claude/skills/readeck/(项目级)。重启 AI 客户端后,用 /readeck 主动调用,或让 AI 根据上下文自动发现并使用。
Readeck 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Readeck 可免费安装使用。请查阅仓库了解许可证信息。
Readeck integration for saving and managing articles. Supports adding URLs, listing entries, and managing bookmarks via Readeck's API. Configure custom URL and API key per request or via environment variables READECK_URL and READECK_API_KEY.
Readeck 属于「Marketing & Growth」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my marketing & growth tasks using Readeck
Identifies repetitive steps in your workflow and sets up Readeck to handle them automatically