# Send Supernote 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": "supernote-cloud",
    "name": "Supernote Cloud",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/nickian/supernote-cloud",
    "canonicalUrl": "https://clawhub.ai/nickian/supernote-cloud",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/supernote-cloud",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=supernote-cloud",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/article2ebook.py",
      "scripts/supernote.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "supernote-cloud",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T11:27:59.113Z",
      "expiresAt": "2026-05-08T11:27:59.113Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=supernote-cloud",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=supernote-cloud",
        "contentDisposition": "attachment; filename=\"supernote-cloud-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "supernote-cloud"
      },
      "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/supernote-cloud"
    },
    "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/supernote-cloud",
    "downloadUrl": "https://openagent3.xyz/downloads/supernote-cloud",
    "agentUrl": "https://openagent3.xyz/skills/supernote-cloud/agent",
    "manifestUrl": "https://openagent3.xyz/skills/supernote-cloud/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/supernote-cloud/agent.md"
  }
}
```
## Documentation

### Supernote Private Cloud

Browse, upload, and manage files on a self-hosted Supernote Private Cloud via its reverse-engineered REST API. Includes article-to-ebook conversion for sending web content to the device.

### Setup

export SUPERNOTE_URL="http://192.168.50.168:8080"
export SUPERNOTE_USER="your@email.com"
export SUPERNOTE_PASSWORD="your_password"

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

### Send a web article to the device

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

Fetches article content, extracts readable text with images, converts to clean EPUB or PDF, then uploads to the specified folder. Default format: epub. Default folder: Document.

### List directory contents

{baseDir}/scripts/supernote.sh ls
{baseDir}/scripts/supernote.sh ls --path Document
{baseDir}/scripts/supernote.sh ls --path "Note/Journal"
{baseDir}/scripts/supernote.sh ls --dir 778507258886619136

### Directory tree

{baseDir}/scripts/supernote.sh tree --depth 2

### Find directory ID by path

{baseDir}/scripts/supernote.sh find-dir --path "Document/Books"

### Upload a file

{baseDir}/scripts/supernote.sh upload --file /path/to/file.pdf --dir-path Document
{baseDir}/scripts/supernote.sh upload --file /path/to/book.epub --dir-path "Document/Books"
{baseDir}/scripts/supernote.sh upload --file /path/to/file.pdf --dir 778507258773372928 --name "Renamed.pdf"

### Check storage capacity

{baseDir}/scripts/supernote.sh capacity

### Login (manual)

{baseDir}/scripts/supernote.sh login

### Default Folders

FolderPurposeNoteHandwritten notes (.note files)DocumentPDFs, EPUBs, documentsInboxIncoming filesExportExported contentScreenshotScreenshotsMystyleCustom styles/templates

### Notes

EPUB is recommended for articles — renders cleanly on e-ink with reflowable text
The API is reverse-engineered and unofficial — endpoints may change with firmware updates
Directory args accept paths (e.g., "Document/Books") or numeric IDs
Some sites block scraping — if fetch fails, try a different URL or use a cached/saved page
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nickian
- 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-01T11:27:59.113Z
- Expires at: 2026-05-08T11:27:59.113Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/supernote-cloud)
- [Send to Agent page](https://openagent3.xyz/skills/supernote-cloud/agent)
- [JSON manifest](https://openagent3.xyz/skills/supernote-cloud/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/supernote-cloud/agent.md)
- [Download page](https://openagent3.xyz/downloads/supernote-cloud)