skills$openclaw/readeck
nickian7.8k

by nickian

readeck – OpenClaw Skill

readeck is an OpenClaw Skills integration for coding workflows. 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.

7.8k stars4.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namereadeck
descriptionSave 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. OpenClaw Skills integration.
ownernickian
repositorynickian/readeck-save
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @nickian/readeck-save
last updatedFeb 7, 2026

Maintainer

nickian

nickian

Maintains readeck in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
save.sh
1.1 KB
_meta.json
277 B
SKILL.md
999 B
SKILL.md

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):

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.

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install readeck?

Run openclaw add @nickian/readeck-save in your terminal. This installs readeck into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/nickian/readeck-save. Review commits and README documentation before installing.