plop-upload

Upload files to plop.so and get public URLs. Use when sharing files, uploading to plop, or getting a public link.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "plop-upload" with this command: npx skills add begin-software/plop-skill/begin-software-plop-skill-plop-upload

Plop API

All endpoints require Authorization: Bearer $TOKEN. Get token: TOKEN=$(jq -r '.access_token' ~/.plop/config.json)

Login (if no token or expired)

  1. Request device code:
curl -s -X POST https://dev-q4qag76qq7ai5we8.us.auth0.com/oauth/device/code \
  -d "client_id=dDnceSVZAPSIYd2nZtt31FkCqpx8HTTl&audience=https://plop.so&scope=openid"

Response has verification_uri_complete, device_code, and interval.

  1. Open verification_uri_complete in the user's browser with open (macOS) or xdg-open (Linux). Then poll for token:
curl -s -X POST https://dev-q4qag76qq7ai5we8.us.auth0.com/oauth/token \
  -d "grant_type=urn:ietf:params:oauth:grant-type:device_code&client_id=dDnceSVZAPSIYd2nZtt31FkCqpx8HTTl&device_code=DEVICE_CODE"

Poll every interval seconds until response has access_token. Save to ~/.plop/config.json as {"access_token":"...","expires_at":...}.

Upload

curl -s -X POST https://plop.so/upload \
  -H "Authorization: Bearer $TOKEN" \
  -F "file=@path/to/file" \
  -F "alias=ccar.se/optional-path"

alias is optional. Response JSON: id, url, optionally alias_url. Alias formats: /path (user's subdomain), domain.com/path, sub.plop.so/path. Re-uploading to same alias replaces it.

Other operations (read the relevant file when needed)

  • claim.md — Claim a username subdomain (username.plop.so)
  • domains.md — List, add, remove custom domains

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

test_skill

import json import tkinter as tk from tkinter import messagebox, simpledialog

Archived SourceRecently Updated
General

neo

Browse websites, read web pages, interact with web apps, call website APIs, and automate web tasks. Use Neo when: user asks to check a website, read a web page, post on social media (Twitter/X), interact with any web app, look up information on a specific site, scrape data from websites, automate browser tasks, or when you need to call any website's API. Keywords: website, web page, browse, URL, http, API, twitter, tweet, post, scrape, web app, open site, check site, read page, social media, online service.

Archived SourceRecently Updated
General

image-gen

Generate AI images from text prompts. Triggers on: "生成图片", "画一张", "AI图", "generate image", "配图", "create picture", "draw", "visualize", "generate an image".

Archived SourceRecently Updated
General

explainer

Create explainer videos with narration and AI-generated visuals. Triggers on: "解说视频", "explainer video", "explain this as a video", "tutorial video", "introduce X (video)", "解释一下XX(视频形式)".

Archived SourceRecently Updated