doppler
$
npx mdskill add vm0-ai/vm0-skills/dopplerRetrieve and list Doppler secrets via API.
- Manages sensitive configuration data access.
- Integrates with Doppler Secrets Manager API.
- Executes based on user queries about secrets.
- Returns secret values in structured JSON format.
SKILL.md
.github/skills/dopplerView on GitHub ↗
---
name: doppler
description: Doppler Secrets Manager API for retrieving and listing secrets. Use when user mentions "Doppler", "doppler secrets", "dp.st token", or asks about secrets management with Doppler.
---
## 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
```bash
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.
### List All Secrets in a Config
```bash
curl -s "https://api.doppler.com/v3/configs/config/secrets" \
-H "Authorization: Bearer $DOPPLER_TOKEN" \
-G \
--data-urlencode "project=<project-slug>" \
--data-urlencode "config=<config-name>" | jq '.secrets | to_entries[] | {name: .key, raw: .value.raw, computed: .value.computed}'
```
### Download All Secrets as JSON
```bash
curl -s "https://api.doppler.com/v3/configs/config/secrets/download" \
-H "Authorization: Bearer $DOPPLER_TOKEN" \
-G \
--data-urlencode "project=<project-slug>" \
--data-urlencode "config=<config-name>" \
--data-urlencode "format=json"
```
Returns a flat key/value JSON object of all secrets.
### List Projects
```bash
curl -s "https://api.doppler.com/v3/projects" \
-H "Authorization: Bearer $DOPPLER_TOKEN" | jq '.projects[] | {id, name, slug}'
```
### List Configs in a Project
```bash
curl -s "https://api.doppler.com/v3/configs" \
-H "Authorization: Bearer $DOPPLER_TOKEN" \
-G \
--data-urlencode "project=<project-slug>" | jq '.configs[] | {name, environment, locked}'
```
## Guidelines
1. **Service Token scope:** A `dp.st.*` token is scoped to a single project + config. It cannot access other projects.
2. **Project slug:** Find via "List Projects". This is the URL-safe identifier, not the display name.
3. **Config name:** Typically matches the environment name (e.g., `dev`, `staging`, `prd`). List configs to verify.
4. **raw vs. computed:** `raw` is the stored value; `computed` has variable references resolved.
5. **Rate limits:** Doppler imposes per-token rate limits on the free plan. Avoid polling in tight loops.
6. **Security:** Service tokens grant read (and optionally write) access to all secrets in the scoped config. Rotate them regularly.
More from vm0-ai/vm0-skills
- account-reconciliationPerform account reconciliations comparing general ledger balances against subledgers, bank statements, or external records. Use for bank reconciliation, GL-to-subledger reconciliation, intercompany reconciliation, balance sheet reconciliation, reconciling item analysis, outstanding item aging, or clearing open items.
- agentphoneBuild AI phone agents with AgentPhone API. Use when the user wants to make phone calls, send/receive SMS, manage phone numbers, create voice agents, set up webhooks, or check usage — anything related to telephony, phone numbers, or voice AI.
- ahrefsAhrefs SEO API for backlink and keyword analysis. Use when user mentions
- amplitudeAmplitude product analytics API. Use when user mentions "Amplitude",
- analysis-qaQuality-check a data analysis before sharing — verify joins, aggregations, denominators, time ranges, and metric definitions. Detect pitfalls like survivorship bias, average-of-averages, join explosion, timezone mismatches, incomplete periods, and selection bias. Includes documentation templates for reproducible analyses.
- anthropic-managed-agentsAnthropic Managed Agents API for programmatically creating, running, and streaming AI agents on Anthropic's cloud infrastructure. Use when the user mentions "Managed Agents", "Anthropic agent sessions", or needs to create/run/stream an Anthropic agent with tool use (bash, git, web), attach GitHub repositories, or inject secrets via Vault. Do NOT use for standard Claude Messages API — use the Claude API skill instead.
- apifyApify web scraping platform. Use when user mentions "scrape website",
- asanaAsana API for tasks and projects. Use when user mentions "Asana", "asana.com",
- atlassianAtlassian API for Confluence and Jira. Use when user mentions "Confluence
- attioAttio REST API for AI-native CRM operations — manage companies, people, deals, and custom objects, plus notes, tasks, lists, and comments. Use when the user mentions "Attio", "CRM record", "create company", "add person", "list entry", "CRM note", or "CRM task".