doppler
Installation
SKILL.md
Troubleshooting
If requests fail, run zero doctor check-connector --env-name DOPPLER_TOKEN or zero doctor check-connector --url https://api.doppler.com/v3/configs/config/secret --method GET
Core APIs
Fetch a Single Secret by Name
curl -s "https://api.doppler.com/v3/configs/config/secret" \
-H "Authorization: Bearer $DOPPLER_TOKEN" \
-G \
--data-urlencode "project=<project-slug>" \
--data-urlencode "config=<config-name>" \
--data-urlencode "name=<SECRET_NAME>" | jq '{name: .secret.name, raw: .secret.value.raw, computed: .secret.value.computed}'
Replace <project-slug> with your Doppler project slug, <config-name> with the config (e.g., dev, prd), and <SECRET_NAME> with the exact secret key.