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

### Overview

Use this skill to handle Instapaper operations via the ip CLI (which must be installed and available in PATH), especially when you need reliable automation, structured output, or troubleshooting guidance.

### Install the CLI

Go install: go install github.com/vburojevic/instapaper-cli/cmd/ip@latest
Homebrew: brew tap vburojevic/tap && brew install instapaper-cli
From source: go build ./cmd/ip (run as ./ip)

### Workflow (fast path)

Verify setup

Ensure INSTAPAPER_CONSUMER_KEY and INSTAPAPER_CONSUMER_SECRET are set or passed during login.
Prefer --password-stdin for auth; never store the password.
Run ip doctor --json (or ip auth status) before long jobs.



Pick output format for automation

Default is --ndjson (streaming, one object per line).
Use --json for single objects or compact arrays.
Use --plain for stable, line-oriented text.
Add --stderr-json for structured errors and --progress-json for long runs.



Read data deterministically

Use list or export with --cursor/--cursor-dir or --since/--until bounds.
Use --updated-since for incremental sync.
Use --select for client-side filtering when the API does not support it.



Mutate safely

Use --dry-run or --idempotent when possible.
For bulk actions, use --ids or --stdin and consider --batch.
Deletions require explicit confirmation flags.



Handle extras

Text view: ip text for article HTML.
Highlights: ip highlights list/add/delete.
Folders: ip folders list/add/delete/order.



Troubleshoot

Use --debug for request timing and status.
Use --stderr-json and map exit_code to action.

### Command reference

Read these when you need exact flags, formats, or examples:

references/commands.md: command-by-command examples for auth, list/export/import, mutations, folders, highlights, and text.
references/output-and-sync.md: output formats, progress streams, cursor/bounds syntax, and filtering.
references/errors.md: exit codes and structured stderr error codes.

### Guardrails

Avoid --format table for parsing; it is for humans only.
Use --output or --output-dir for large exports to avoid stdout pressure.
Prefer --password-stdin on Windows to avoid echoing passwords.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: vburojevic
- Version: 0.2.9
## 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-04T09:24:53.016Z
- Expires at: 2026-05-11T09:24:53.016Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/instapaper)
- [Send to Agent page](https://openagent3.xyz/skills/instapaper/agent)
- [JSON manifest](https://openagent3.xyz/skills/instapaper/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/instapaper/agent.md)
- [Download page](https://openagent3.xyz/downloads/instapaper)