attach-review-proof
Installation
SKILL.md
Attach Review Proof
Uploads a local file to the proofdrop-mcp server and returns a temporary presigned URL you can drop into GitHub markdown. Two tools (prefixed by your client, e.g. mcp__proofdrop-mcp__upload_asset):
upload_asset— upload a local file, get back a URL.delete_asset— remove an object by itskey.
Upload
{ "file_path": "screenshots/before.png", "expires_in_seconds": 604800 }
file_path(required) — local path.expires_in_seconds(optional) — URL lifetime. Default86400, max604800(7 days). Use the max for PR-lifetime links.content_type(optional) — inferred from extension; pass"video/mp4"for.mp4(not auto-detected).
Returns { key, url, expiresAt, ... }. Embed url as  (or a [link](url) for video); keep key to delete_asset later. Max ~25 MB.