Install
openclaw skills install instapaperUse when operating the instapaper-cli (ip) tool or troubleshooting it: authenticating, listing/exporting/importing bookmarks, bulk mutations, folders/highlights/text, choosing output formats (ndjson/json/plain), cursor-based sync, and interpreting stderr-json/exit codes for automation.
openclaw skills install instapaperUse 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.
go install github.com/vburojevic/instapaper-cli/cmd/ip@latestbrew tap vburojevic/tap && brew install instapaper-cligo build ./cmd/ip (run as ./ip)Verify setup
INSTAPAPER_CONSUMER_KEY and INSTAPAPER_CONSUMER_SECRET are set or passed during login.--password-stdin for auth; never store the password.ip doctor --json (or ip auth status) before long jobs.Pick output format for automation
--ndjson (streaming, one object per line).--json for single objects or compact arrays.--plain for stable, line-oriented text.--stderr-json for structured errors and --progress-json for long runs.Read data deterministically
list or export with --cursor/--cursor-dir or --since/--until bounds.--updated-since for incremental sync.--select for client-side filtering when the API does not support it.Mutate safely
--dry-run or --idempotent when possible.--ids or --stdin and consider --batch.Handle extras
ip text for article HTML.ip highlights list/add/delete.ip folders list/add/delete/order.Troubleshoot
--debug for request timing and status.--stderr-json and map exit_code to action.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.--format table for parsing; it is for humans only.--output or --output-dir for large exports to avoid stdout pressure.--password-stdin on Windows to avoid echoing passwords.