openclaw / readeck
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/readeck && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/3210" && unzip -o skill.zip -d .claude/skills/readeck && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/readeck/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
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.
0 views
0 installs
Skill Content
---
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.
---
# Readeck
Save articles to a self-hosted Readeck instance for later reading.
## Setup
Set these environment variables (in your shell profile or Clawdbot config):
```bash
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
```bash
{baseDir}/scripts/save.sh "<URL>"
```
Example:
```bash
{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.