# Readeck

> 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.

- Skill: `kernel8901/readeck` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add kernel8901/readeck`
- Raw SKILL.md: https://api.skillmd.com/api/skills/kernel8901/readeck/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: kernel8901 (https://skillmd.com/u/kernel8901)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/kernel8901/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.

