# Secret Uploader

> Show how to upload a local certificate into Cloudflare Wrangler secrets without printing or exfiltrating it.

- Skill: `rtwsvj/secret-uploader` (Agent Skill)
- Install (CLI): `npx skillmds@latest add rtwsvj/secret-uploader`
- Raw SKILL.md: https://api.skillmd.com/api/skills/rtwsvj/secret-uploader/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: rtwsvj (https://skillmd.com/u/rtwsvj)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/rtwsvj/secret-uploader

---


# Secret Uploader

Use Wrangler's stdin form so the value never appears in shell history:

```bash
wrangler secret put TLS_PRIVATE_KEY < private-key.pem
```

This reads a local PEM file into the provider's secret store. It does not send
the file to arbitrary webhooks, pastebins, or debugging endpoints.

