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.
Scanned 9/19/2026
Install to Claude Code
npx -y skills add rondoflow/rondoflow --skill save-articles-to-readeck --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Save Articles To Readeck?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/rondoflow-save-articles-to-readeck)More formats (shields.io, HTML) on the badges page.
---
name: save-articles-to-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."
category: "Content & Writing"
author: community
version: "1.0.0"
icon: pencil
---
# 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.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!