Claude
Skills
Sign in
Back

doppler

Included with Lifetime
$97 forever

Fetch secrets from Doppler for API keys and credentials.

Backend & APIs

What this skill does


# doppler

Use `doppler` to fetch secrets. Requires `DOPPLER_TOKEN` env var (service token scoped to project).

## Setup
1. Create project in Doppler dashboard
2. Add secrets (GEMINI_API_KEY, BREX_TOKEN, etc.)
3. Generate service token for project/config
4. Set `DOPPLER_TOKEN` on server

## Common commands

Get a single secret:
```bash
doppler secrets get GEMINI_API_KEY --plain
```

List all secrets (names only):
```bash
doppler secrets --only-names
```

List secrets with values:
```bash
doppler secrets
```

Run a command with secrets injected:
```bash
doppler run -- some-command
```

Download secrets as JSON:
```bash
doppler secrets download --no-file --format json
```

## Notes
- Service tokens are scoped to a single project + config (e.g., `dev`, `prod`)
- `--plain` strips quotes/newlines for scripting
- Never log or echo secret values
- Prefer `doppler secrets get <NAME> --plain` for single secrets
Files: 1
Size: 1.4 KB
Complexity: 8/100
Category: Backend & APIs

Related in Backend & APIs