返回 Skill 列表
extension
分类: 效率与办公需要 API Key

Readeck Save

将文章保存到 Readeck(自托管的稍后阅读应用)。当用户想要保存文章以便稍后阅读、添加内容到阅读列表或将页面发送到 Readeck 时使用。

person作者: nickianhubclawhub

Readeck

Save articles to a self-hosted Readeck instance for later reading.

Setup

Set these environment variables (in your shell profile or Clawdbot config):

export READECK_URL="https://your-readeck-instance.com"
export READECK_API_TOKEN="your-api-token"

To get your API token: Readeck → Settings → API tokens → Create new token.

Save an article

{baseDir}/scripts/save.sh "<URL>"

Example:

{baseDir}/scripts/save.sh "https://example.com/interesting-article"

API Details

  • Endpoint: POST {READECK_URL}/api/bookmarks
  • Auth: Bearer token
  • Body: {"url": "..."}

Response

Returns {"status":202,"message":"Link submited"} on success. Readeck will fetch and process the article content automatically.