Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计异常

dopplerdoppler 命令行

Agent Skill

doppler 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

776

周安装

33

GitHub Stars

8

下载量

272
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:doppler(doppler 命令行)
来源仓库:https://github.com/rube-de/cc-skills
仓库路径:skills/doppler
安装命令:
npx skills add https://github.com/rube-de/cc-skills --skill doppler
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/rube-de/cc-skills --skill doppler

简介

doppler 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适用于前端设计相关任务中的自动化或辅助处理流程。
  • 可通过 npx 命令从 rube-de/cc-skills 仓库安装部署。
  • 使用前请确认其是否具备文件读写或外部命令执行能力。
  • 功能细节应以项目源码和说明文档为准。

SKILL.md

Doppler Secrets Management

Comprehensive assistance for the Doppler secrets management platform: CLI operations, project and config management, secrets injection, integration syncs, and security best practices.

Triggers

Use this skill when the user mentions: "doppler", "secrets management", "doppler cli", "doppler secrets", "doppler run", "doppler setup", "doppler configs", "doppler projects", "secret injection", "doppler environments", "service tokens".

Quick Start

Install CLI

# macOS
brew install gnupg && brew install dopplerhq/cli/doppler

# Linux (Debian/Ubuntu)
apt-get update && apt-get install -y apt-transport-https ca-certificates curl gnupg
curl -sLf --retry 3 --tlsv1.2 --proto "=https" \
  'https://packages.doppler.com/public/cli/gpg.DE2A7741A397C129.key' | \
  gpg --dearmor -o /usr/share/keyrings/doppler-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/doppler-archive-keyring.gpg] https://packages.doppler.com/public/cli/deb/debian any-version main" | \
  tee /etc/apt/sources.list.d/doppler-cli.list
apt-get update && apt-get install doppler

# Shell script (any OS)
curl -sLf --retry 3 --tlsv1.2 --proto "=https" https://get.doppler.com | sh

Authenticate & Setup

# Login (opens browser for auth)
doppler login

# Setup project in current directory (interactive)
doppler setup

# Non-interactive setup
doppler setup --project my-app --config dev --no-interactive

Common Tasks by Intent

Developer wants to...Action
List all secretsdoppler secrets -p <project> -c <config>
Get a single secretdoppler secrets get SECRET_NAME -p <project> -c <config>
Set a secretdoppler secrets set KEY=value -p <project> -c <config>
Set multiple secretsdoppler secrets set KEY1=val1 KEY2=val2
Delete a secretdoppler secrets delete SECRET_NAME
Run command with secretsdoppler run -- your-command --flags
Run with specific configdoppler run -p backend -c dev -- npm start
Download secrets as filedoppler secrets download --format env --no-file
List projectsdoppler projects
List configsdoppler configs -p <project>
List environmentsdoppler environments -p <project>
Clone a configdoppler configs clone -p <project> -c <source> --name <new>
View activity logsdoppler activity
Check current setupdoppler configure debug
Open dashboarddoppler open
View who is authenticateddoppler me

Secrets Injection Patterns

Environment Variable Injection

# Inject secrets as env vars for any command
doppler run -- node server.js
doppler run -- docker compose up
doppler run -- terraform apply

# Run a shell command string
doppler run --command "echo $DATABASE_URL && npm start"

# Only inject specific secrets
doppler run --only-secrets DATABASE_URL,API_KEY -- node server.js

Mount Secrets to File

# Mount as JSON file (ephemeral, cleaned up after process exits)
doppler run --mount secrets.json -- cat secrets.json

# Mount as .env file
doppler run --mount .env --mount-format env -- your-command

# Mount with template
doppler run --mount config.yaml --mount-template template.yaml -- your-command

Template Substitution

# Substitute secrets into a template file
doppler secrets substitute template.env.tpl > .env

Fallback for Offline/Resilience

# Run with fallback file (writes encrypted secrets on success, reads on failure)
doppler run --fallback ./fallback.encrypted -- npm start

# Read-only fallback (never update the fallback file)
doppler run --fallback ./fallback.encrypted --fallback-readonly -- npm start

# Offline mode (read directly from fallback, no API contact)
doppler run --fallback-only --fallback ./fallback.encrypted -- npm start

Project & Config Hierarchy

Doppler organizes secrets in a hierarchy:

Workplace
 └── Project (e.g. "backend", "frontend")
      └── Environment (e.g. "development", "staging", "production")
           └── Config (e.g. "dev", "stg", "prd")
                └── Branch Config (e.g. "dev_feature-x")

Config Inheritance

  • Root configs (dev, stg, prd) inherit from their environment
  • Branch configs inherit from their parent config
  • Overrides cascade: Environment → Config → Branch Config
  • Personal configs allow individual developer overrides without affecting the team

Integration Syncs

Doppler can automatically sync secrets to external platforms:

PlatformUse Case
AWS Secrets Manager / SSMECS, Lambda, EC2 deployments
GCP Secret ManagerGKE, Cloud Run, Cloud Functions
Azure Key VaultAKS, App Service, Functions
Cloudflare Pages / WorkersEdge & Jamstack deployments
VercelFrontend/fullstack deployments
Firebase Functions / HostingFunctions config & build-time secrets
Serverless FrameworkLambda/serverless function secrets
GitHub ActionsCI/CD secrets
Docker / Docker ComposeContainer environment injection
KubernetesSecret objects via Doppler Operator
TerraformInfrastructure as Code
Webapp.ioCI/CD Layerfile secrets
HerokuPaaS deployments

Service Tokens

For CI/CD and production, use service tokens (read-only, scoped to a single config):

# Generate a service token via dashboard or API
# Use in CI/CD:
DOPPLER_TOKEN=dp.st.xxx doppler run -- your-command

# Or set as environment variable
export DOPPLER_TOKEN=dp.st.xxx
doppler secrets

Security Best Practices

  • Never commit secrets to version control — use Doppler as the single source of truth
  • Use service tokens in production (read-only, config-scoped)
  • Use personal configs for local development overrides
  • Enable change requests for production configs (requires approval before changes)
  • Rotate secrets regularly — use Doppler's rotation reminders
  • Use OIDC authentication where possible for short-lived tokens
  • Audit access via doppler activity and dashboard audit logs
  • Use branch configs to isolate feature branch secrets
  • Never use --no-verify-tls in production

Reference Documents

For deep dives, consult these references:

ReferenceContent
CLI.mdComplete CLI command reference with all subcommands and flags
INTEGRATIONS.mdCI/CD, Docker, Kubernetes, cloud platform integration patterns

Troubleshooting

Authentication Issues

  1. Run doppler me to check current auth status
  2. Run doppler configure debug to see active configuration
  3. Re-authenticate with doppler login
  4. Check scope: doppler configure get token --scope /path/to/project

Wrong Secrets Loaded

  1. Check which project/config is active: doppler configure debug
  2. Verify scope: doppler setup in the project directory
  3. Use explicit flags: doppler secrets -p project -c config
  4. Check for environment variable overrides: doppler run --preserve-env=false

Fallback File Issues

  1. Ensure fallback path is writable
  2. Check passphrase hasn't changed (config-dependent by default)
  3. Use doppler run clean to remove old fallback files
  4. Regenerate with a fresh doppler run --fallback./path -- echo ok

Service Token Not Working

  1. Verify token is for the correct project and config
  2. Service tokens are read-only — cannot set/delete secrets
  3. Check token hasn't been revoked in the dashboard
  4. Ensure DOPPLER_TOKEN env var is set correctly

Workflow

When helping with Doppler:

  1. Identify the task: Setup, secret management, injection, integration, or debugging
  2. Check prerequisites: Is doppler CLI installed? Is user authenticated?
  3. Determine scope: Which project and config are we working with?
  4. Consult references: Use reference docs for detailed CLI flags and integration patterns
  5. Security first: Never output secret values in logs; use --only-names for listing

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.6%
按下载量换算102

Claude

28.86%
按下载量换算78

Cursor

19.59%
按下载量换算53

Gemini CLI

9.91%
按下载量换算27

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills