Auto-Updater Skill
一个面向 Other 场景的 Agent 技能。原始说明:Automatically update Clawdbot and all installed skills once daily. Runs via cron, checks for updates, applies them, and messages the user with a summary of what changed.
name: readeck
description: Save articles to Readeck (self-hosted read-it-later app). Use when the user wants to save an article for later reading, add something to their reading list, or send a page to Readeck.
Save articles to a self-hosted Readeck instance for later reading.
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.
{baseDir}/scripts/save.sh "<URL>"
Example:
{baseDir}/scripts/save.sh "https://example.com/interesting-article"
POST {READECK_URL}/api/bookmarks{"url": "..."}Returns {"status":202,"message":"Link submited"} on success.
Readeck will fetch and process the article content automatically.