doppler

📁 elliottminns/dreamfox-skills 📅 7 days ago
4
总安装量
2
周安装量
#52520
全站排名
安装命令
npx skills add https://github.com/elliottminns/dreamfox-skills --skill doppler

Agent 安装分布

openclaw 2
mcpjam 1
claude-code 1
windsurf 1
zencoder 1
crush 1

Skill 文档

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:

doppler secrets get GEMINI_API_KEY --plain

List all secrets (names only):

doppler secrets --only-names

List secrets with values:

doppler secrets

Run a command with secrets injected:

doppler run -- some-command

Download secrets as JSON:

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