doppler-secrets

doppler-secrets is a skill for Claude Code, Codex from rsenna/rs-agent-plugin. It costs 125 tokens per session (1,195 once invoked), scanned B, original, MIT.

A procedure for using Doppler, a service that stores application secrets by project and environment, through its command-line tool.

In plain words
What is it for?
It helps configure access with a Doppler service token, verify the token's project and environment, and inject secrets into commands.
Why use it?
It provides local access to secrets without writing them into project files or displaying them in command output.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/rsenna/rs-agent-plugin/doppler-secrets
Any agent
npx skills add rsenna/rs-agent-plugin --skill doppler-secrets
Clone the repo
git clone --depth 1 https://github.com/rsenna/rs-agent-plugin

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for doppler-secrets

README.md
[![agentmods](https://agentmods.dev/badge/skills/rsenna/rs-agent-plugin/doppler-secrets.svg)](https://agentmods.dev/skills/rsenna/rs-agent-plugin/doppler-secrets)
Your own site
<a href="https://agentmods.dev/skills/rsenna/rs-agent-plugin/doppler-secrets"><img src="https://agentmods.dev/badge/skills/rsenna/rs-agent-plugin/doppler-secrets.svg" alt="Measured on agentmods" height="20"></a>
Per session 125 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,195 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00125 $0.01195
Opus 5 $0.00063 $0.00598
Sonnet 5 $0.00025 $0.00239
Haiku 4.5 $0.00013 $0.00120

Measured 4d ago against content hash bf70e2e018eb, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

doppler-secrets scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

JSON payload (e.g. `curl -d '{"key":"value"}'`), don't string-concatenate

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

doppler run -- bash -c 'curl -H "Authorization: Bearer $SOME_TOKEN" https://example.com'
skills/doppler-secrets/SKILL.md · 102 lines

How it starts

The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Doppler CLI - local access + secret injection

Doppler stores secrets per project and config (environment); a service token is scoped to exactly one project+config and doesn't need an explicit --project/--config flag once set - the CLI resolves both from the token itself.

Setting up local access from a token the user gives you

A dp.st.... string is a live secret the moment you see it - treat it like any other credential: don't echo it back, don't write it into a repo file, don't paste it into a memory/notes system. Configure it directly into Doppler's own local config store, scoped to the directory you're working in (so it doesn't leak into unrelated projects on the same machine):

doppler configure set token "dp.st.xxx" --scope /path/to/repo

After that, plain doppler <command> run from (or under) that path picks the token up automatically - no env var, no flag, and nothing written to the repo itself (doppler configure stores it under Doppler's own config, not project-local).

Verify it actually works and see what project/config it resolves to before relying on it:

doppler me                     # confirms the token identity
doppler projects               # shows which project it's scoped to
doppler secrets --only-names   # lists secret NAMES ONLY - safe to run/paste, never shows values

Reading secrets into a command

Prefer doppler run -- over doppler secrets get + manual export - it injects everything as env vars for the duration of one command and nothing leaks into shell history or a .env file:

doppler run -- bash -c 'curl -H "Authorization: Bearer $SOME_TOKEN" https://example.com'

Never echo/print a secret value to confirm it's "there" - use --only-names (above) or check the effect of using it (e.g. the API call suceeding) instead.

Read-only vs read/write tokens

A service token's scope (read-only vs read/write) is set when it's created in the Doppler dashboard, and there's no CLI-visible signal that a token is read-only until you actually try to write and get:

Read the full file on GitHub · 102 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 102 lines · 125 tokens per session scan B bf70e2e018eb

Subscribe to this mod's changes

doppler-secrets is a skill published in the GitHub repository rsenna/rs-agent-plugin (2 stars, last pushed 4d ago), licensed MIT. It adds 125 tokens to every session and 1,195 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

imagegen

Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…

openai/codex · 113 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens