secrets-ui · git:20260708.e42b71f · 2026-07-08 · sha256 eab13f089d4de2d3
secrets-ui git:20260708.e42b71fA
Immutable. This exact content is served forever at /api/v1/blob/eab13f089d4de2d3.
---
name: "secrets-ui"
description: "Secrets Web UI - Launch a local web interface for managing project secrets."
---
<!-- GENERATED by claude-power-pack - scripts/codex-skill-sync.py; edit .claude/commands/secrets/ui.md instead -->
# Secrets Web UI
Launch a local web interface for managing project secrets.
## Arguments
- `--port PORT` (optional): Port to bind to (default: 8090)
- `--project PROJECT` (optional): Override auto-detected project ID
## Instructions
When the user invokes `/secrets-ui`, run:
```bash
PYTHONPATH="${HOME}/Projects/claude-power-pack/lib:${PYTHONPATH}" python3 -m lib.creds ui
```
With options:
```bash
PYTHONPATH="${HOME}/Projects/claude-power-pack/lib:${PYTHONPATH}" python3 -m lib.creds ui --port 8090
```
**Requirements:**
- FastAPI and uvicorn must be installed: `uv pip install 'creds[ui]'`
- The server binds to `127.0.0.1` only (no network exposure)
- A bearer token is generated on startup and printed to the terminal
- Copy the token to authenticate in the browser
**Features:**
- View all secret keys (values masked by default)
- Reveal individual values (click Reveal)
- Add/update secrets
- Delete secrets
- Promote local secrets to AWS Secrets Manager
Report the URL and token to the user.