# Send reMarkable Cloud to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "remarkable",
    "name": "reMarkable Cloud",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/nickian/remarkable",
    "canonicalUrl": "https://clawhub.ai/nickian/remarkable",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/remarkable",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remarkable",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/article2ebook.py",
      "scripts/remarkable.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "remarkable",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T03:22:54.282Z",
      "expiresAt": "2026-05-09T03:22:54.282Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remarkable",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remarkable",
        "contentDisposition": "attachment; filename=\"remarkable-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "remarkable"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/remarkable"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/remarkable",
    "downloadUrl": "https://openagent3.xyz/downloads/remarkable",
    "agentUrl": "https://openagent3.xyz/skills/remarkable/agent",
    "manifestUrl": "https://openagent3.xyz/skills/remarkable/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/remarkable/agent.md"
  }
}
```
## Documentation

### reMarkable Cloud

Send documents and web articles to a reMarkable tablet via the cloud API. Uses rmapi for cloud access.

### Setup

Install rmapi (Go required):

cd /tmp && git clone --depth 1 https://github.com/ddvk/rmapi.git
cd rmapi && go build -o /usr/local/bin/rmapi .

First run will prompt for a one-time code from https://my.remarkable.com/device/browser?showOtp=true

Python dependencies (for article conversion): readability-lxml, ebooklib, requests, beautifulsoup4, lxml.

### Send a web article to the device

{baseDir}/scripts/remarkable.sh send-article --url "https://example.com/article" --dir /Articles
{baseDir}/scripts/remarkable.sh send-article --url "https://example.com/article" --format pdf --dir /
{baseDir}/scripts/remarkable.sh send-article --url "https://example.com/article" --title "Custom Title" --dir /Articles

Fetches article, extracts readable content, converts to EPUB (default) or PDF, uploads to reMarkable cloud. Device syncs automatically.

### List files

{baseDir}/scripts/remarkable.sh ls /
{baseDir}/scripts/remarkable.sh ls /Articles
{baseDir}/scripts/remarkable.sh ls "/Book Notes"

Output: [f] = file, [d] = directory.

### Upload a file

{baseDir}/scripts/remarkable.sh upload --file /path/to/document.pdf --dir /Books
{baseDir}/scripts/remarkable.sh upload --file /path/to/book.epub --dir /

### Create a folder

{baseDir}/scripts/remarkable.sh mkdir --path /NewFolder

### Search for files

{baseDir}/scripts/remarkable.sh find --name "article title"

### Notes

EPUB is recommended for articles — reflows nicely on e-ink
Device syncs automatically when connected to WiFi
Auth tokens are cached by rmapi at ~/.rmapi
Some sites block scraping — if article fetch fails, try a different URL
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nickian
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T03:22:54.282Z
- Expires at: 2026-05-09T03:22:54.282Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/remarkable)
- [Send to Agent page](https://openagent3.xyz/skills/remarkable/agent)
- [JSON manifest](https://openagent3.xyz/skills/remarkable/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/remarkable/agent.md)
- [Download page](https://openagent3.xyz/downloads/remarkable)