r2-upload

📁 foundralab/my-skills 📅 8 days ago
4
总安装量
2
周安装量
#52987
全站排名
安装命令
npx skills add https://github.com/foundralab/my-skills --skill r2-upload

Agent 安装分布

replit 1
amp 1
opencode 1
kimi-cli 1
github-copilot 1

Skill 文档

R2 Upload

Upload files to R2/S3-compatible storage and return a URL.

Use when

  • Upload images, documents, or other assets to object storage
  • Generate public URLs for web/CDN use
  • Generate presigned URLs for temporary access
  • Provide upload helpers to other skills (like tech-news)

Prerequisites

  • Python 3.8+ available as python3
  • PyYAML (python3 -m pip install pyyaml)
  • Config at ~/.r2-upload.yml (or set R2_UPLOAD_CONFIG)
  • Decide the bucket, object key/path, and visibility (public vs presigned)
  • If you skip --key/--key-prefix, the default is YYYY/MM/DD/<filename>

Recommended workflow

  1. Confirm bucket/key and whether the URL should be public or presigned (avoid overwrites unless asked).
  2. Verify config and bucket exist.
  3. Upload with the CLI (recommended) or Python helper.
  4. Return the URL and key; note whether it is public or temporary and the expiration.

Quick commands

python3 scripts/r2-upload.py ./photo.jpg --public
python3 scripts/r2-upload.py ./photo.jpg --key images/YYYY/MM/DD/cover.jpg --public
python3 scripts/r2-upload.py ./report.pdf --key reports/YYYY/MM/DD/report.pdf
python3 scripts/r2-upload.py ./image.png --key-prefix images/YYYY/MM/DD --public
python3 scripts/r2-upload.py ./file.zip --expires 600

Key options

  • --bucket <name>: override the default bucket in config
  • --key <path>: set the object key/path
  • --key-prefix <prefix>: prepend prefix to the local filename
  • --public: return a public URL instead of a presigned URL
  • --expires <seconds>: presigned URL expiration (1-604800)
  • --config <path>: use a custom config file
  • --timeout <seconds>: network timeout
  • --content-type <mime>: override content type
  • --cache-control <value>: set Cache-Control header
  • --content-disposition <value>: set Content-Disposition header

Behavior notes

  • Default behavior returns a presigned URL (temporary access).
  • If no key is provided, the default key is YYYY/MM/DD/<filename>.
  • --public returns a public URL. For private buckets, use presigned URLs instead.
  • Presigned URLs always use the storage endpoint (custom CDN domains are for public URLs).

Programmatic usage

import sys
from pathlib import Path

r2_dir = Path("/path/to/r2-upload")  # update to your local path
sys.path.insert(0, str(r2_dir / "scripts"))

from upload import upload_file, batch_upload, fetch_and_upload

url = upload_file(
    local_path="./image.jpg",
    key="images/YYYY/MM/DD/image.jpg",
    make_public=True
)

Scripts

  • scripts/r2-upload.py: CLI upload tool
  • scripts/upload.py: Python helpers (upload_file, batch_upload, fetch_and_upload)

References

  • references/CONFIGURATION.md (provider config examples)
  • references/IMAGES.md (image workflow)
  • references/TROUBLESHOOTING.md (common errors)