# Send Remarkable 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-tablet",
    "name": "Remarkable",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/coolmanns/remarkable-tablet",
    "canonicalUrl": "https://clawhub.ai/coolmanns/remarkable-tablet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/remarkable-tablet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remarkable-tablet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "remarkable-tablet",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T03:44:22.473Z",
      "expiresAt": "2026-05-15T03:44:22.473Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remarkable-tablet",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remarkable-tablet",
        "contentDisposition": "attachment; filename=\"remarkable-tablet-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "remarkable-tablet"
      },
      "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-tablet"
    },
    "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-tablet",
    "downloadUrl": "https://openagent3.xyz/downloads/remarkable-tablet",
    "agentUrl": "https://openagent3.xyz/skills/remarkable-tablet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/remarkable-tablet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/remarkable-tablet/agent.md"
  }
}
```
## Documentation

### reMarkable Tablet Integration (rmapi)

Fetch handwritten notes, sketches, and drawings from a reMarkable tablet via Cloud API. Process them — refine artwork with AI image generation, extract text to memory/journal, or use as input for other workflows.

### Typical Use Cases

Journal entries — User writes thoughts on reMarkable → fetch → OCR/interpret → append to memory/YYYY-MM-DD.md or a dedicated journal file
Sketch refinement — User draws a rough graphic → fetch → enhance with nano-banana-pro (AI image editing) → return polished version
Brainstorming/notes — User jots down ideas, lists, diagrams → fetch → extract structure → add to project docs or memory
Illustrations — User creates hand-drawn art → fetch → optionally stylize → use in blog posts, social media, etc.

### Processing Pipeline

reMarkable tablet → Cloud sync → rmapi fetch → PDF/PNG
                                                  ↓
                                    ┌─────────────┴─────────────┐
                                    │                           │
                              Text content?               Visual/sketch?
                                    │                           │
                              OCR / interpret            nano-banana-pro
                                    │                     (AI enhance)
                                    │                           │
                              Add to memory/            Return refined
                              journal/project            image to user

### Setup

Tool: rmapi (ddvk fork) v0.0.32
Binary: ~/bin/rmapi
Config: ~/.rmapi (device token after auth)
Sync folder: ~/clawd/remarkable-sync/

### Authentication (ONE-TIME)

User goes to https://my.remarkable.com/connect/desktop
Logs in, gets 8-character code
Run rmapi and enter the code
Token saved to ~/.rmapi — future runs are automatic

### Commands

# List files/folders
rmapi ls
rmapi ls --json

# Navigate
rmapi cd "folder name"

# Find by tag / starred / regex
rmapi find --tag="share-with-gandalf" /
rmapi find --starred /
rmapi find / ".*sketch.*"

# Download (PDF)
rmapi get "filename"

# Download with annotations rendered (best for sketches)
rmapi geta "filename"

# Bulk download folder
rmapi mget -o ~/clawd/remarkable-sync/ "/Shared with Gandalf"

### Option A: Dedicated Folder

User creates "Shared with Gandalf" folder on reMarkable → moves items there → agent fetches with rmapi mget

### Option B: Tag-Based

User tags documents with share-with-gandalf → agent discovers with rmapi find --tag

### Option C: Starred Items

User stars items → agent fetches with rmapi find --starred

### Fetch Script

# Fetch from shared folder
~/clawd/scripts/remarkable-fetch.sh

# Fetch starred items
~/clawd/scripts/remarkable-fetch.sh --starred

# Fetch by tag
~/clawd/scripts/remarkable-fetch.sh --tag="share-with-gandalf"

### Notes

Tablet must cloud-sync before files are available
geta renders annotations into PDF (preferred for handwritten content)
Use convert (ImageMagick) to go from PDF → PNG for image processing
For text extraction, interpret the handwriting visually (vision model) rather than traditional OCR
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: coolmanns
- Version: 1.0.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-08T03:44:22.473Z
- Expires at: 2026-05-15T03:44:22.473Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/remarkable-tablet)
- [Send to Agent page](https://openagent3.xyz/skills/remarkable-tablet/agent)
- [JSON manifest](https://openagent3.xyz/skills/remarkable-tablet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/remarkable-tablet/agent.md)
- [Download page](https://openagent3.xyz/downloads/remarkable-tablet)