gumlet-image-source

Installation
SKILL.md

List all image sources

gumlet image source list
gumlet image source list --output table

Get details of a source

gumlet image source get --source-id <id>

Create a new image source

Amazon S3

gumlet image source add \
  --namespace mycompany \
  --type amazon \
  --config '{"bucket_name":"my-bucket","bucket_region":"us-east-1","access_key":"KEY","secret":"SECRET"}'

Web proxy

gumlet image source add \
  --namespace mycompany \
  --type proxy \
  --config '{"whitelisted_domains":["example.com"]}'

Google Cloud Storage

gumlet image source add \
  --namespace mycompany \
  --type gcs \
  --config '{"bucket_name":"my-gcs-bucket","service_account_json":"{...}"}'

DigitalOcean Spaces

gumlet image source add \
  --namespace mycompany \
  --type dostorage \
  --config '{"bucket_name":"my-space","bucket_region":"nyc3","access_key":"KEY","secret":"SECRET"}'

Update an existing source

gumlet image source update --source-id <id> --type amazon --config '{"bucket_name":"new-bucket"}'

Delete a source

gumlet image source delete --source-id <id>

Flags

Flag Required Description
--namespace ✅ (add only) Subdomain (e.g. mycompanymycompany.gumlet.io)
--type ✅ (add) Source type: amazon, proxy, gcs, dostorage, wasabi, cloudinary, azure, linode, backblaze, cloudflare
--config JSON string with type-specific storage configuration
--source-id ✅ (get/update/delete) ID of the source

Notes

  • Use --output table for a human-readable view.
  • The --config JSON structure varies by source type.
Related skills

More from gumlet/cli

Installs
1
Repository
gumlet/cli
GitHub Stars
2
First Seen
12 days ago