# LLM Secrets

> List available LLM-accessible credentials. Use when you need API keys, passwords, or other secrets that have been made available to you.

- Skill: `winsorllc/llm-secrets` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add winsorllc/llm-secrets`
- Raw SKILL.md: https://api.skillmd.com/api/skills/winsorllc/llm-secrets/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: winsorllc (https://skillmd.com/u/winsorllc)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/winsorllc/llm-secrets

---


# List Available Secrets

```bash
/job/.pi/skills/llm-secrets/llm-secrets.js
```

Shows the names of available secret keys (not values). Output example:

```
Available secrets:
  - BROWSER_PASSWORD
  - SOME_API_KEY

To get a value: echo $KEY_NAME
```

## Get a Secret Value

```bash
echo $KEY_NAME
```

Replace `KEY_NAME` with one of the available secret names.

## When to Use

- When a skill or tool needs authentication credentials
- When logging into a website via browser tools
- When calling an external API that requires a key

