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.
npx agentmods add skills/rsenna/rs-agent-plugin/doppler-secretsnpx skills add rsenna/rs-agent-plugin --skill doppler-secretsgit clone --depth 1 https://github.com/rsenna/rs-agent-pluginWrote 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.
[](https://agentmods.dev/skills/rsenna/rs-agent-plugin/doppler-secrets)<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>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.
| Model | Per session | Once 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 |
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' 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:
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.
- 4d ago First seen · 102 lines · 125 tokens per session scan B bf70e2e018eb
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.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
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…
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…
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…
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.
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…