Install
openclaw skills install @orti99/copypasteRead and create pastes on copy-paste.cloud. Fetch recent public pastes, retrieve a paste by ID, or publish new content via the public API.
openclaw skills install @orti99/copypasteInteract with copy-paste.cloud — a lightweight, public pastebin. Use this skill to read recent public pastes, look up a paste by ID, or publish new content.
An API key is required for reading recent pastes and creating new ones. Generate your key at copy-paste.cloud/developer.
Activate this skill when the user:
https://copy-paste.cloud/<id> and wants the content retrievedReturns the 10 most recent public pastes (sorted newest first).
bash scripts/get_recent.sh
Output: formatted list of paste IDs, titles, languages, and a content preview.
Retrieve the full content and metadata of any public paste.
bash scripts/get_paste.sh <paste-id>
paste-id — the UUID from the paste URL, e.g. 3f2a1c9e-...Output: title, language, tags, author, creation date, and full content.
Publish text or code as a new public paste.
bash scripts/create_paste.sh \
--content "your text here" \
[--title "optional title"] \
[--language python|javascript|...] \
[--tags "tag1,tag2"] \
[--private] \
[--burn-after-read] \
[--expires-in-hours 24]
Supported languages: bash, c, cpp, csharp, css, dockerfile, go, html,
java, javascript, json, kotlin, markdown, php, python, ruby, rust,
sql, swift, typescript, xml, yaml. Omit for plain text.
Output: the URL of the newly created paste.
Set your API key as an environment variable:
export COPYPASTE_API_KEY=cp_your_key_here
Generate a key at https://copy-paste.cloud/developer after signing in.
| URL | Method | Data sent |
|---|---|---|
https://api.copy-paste.cloud/api/v1/pastes/recent | GET | API key (header) |
https://api.copy-paste.cloud/api/v1/pastes/{id} | GET | paste ID (path) |
https://api.copy-paste.cloud/api/v1/pastes | POST | API key (header), paste content, metadata |
COPYPASTE_API_KEY is sent as a Bearer token to api.copy-paste.cloud only.api.copy-paste.cloud and stored on copy-paste.cloud servers.--private) are only visible to your account; all others are public.--burn-after-read) are deleted from the server after first view.