← ClaudeAtlas

streamer-modelisted

Behavioral safety mode for when the user is live streaming or screen sharing — never print secrets, env vars, tokens, IPs, hostnames, or terminal-sensitive data on screen; substitute safe command alternatives; defer security findings to a private file instead of announcing them on stream. Use when the user says "streamer mode", "I'm streaming", "I'm live", "going live", "screen sharing", "recording my screen", "on stream", or "presenting/demo on Zoom/Meet".
LucasSantana-Dev/sharekit · ★ 1 · Data & Documents · score 73
Install: claude install-skill LucasSantana-Dev/sharekit
# Streamer Mode Everything the agent prints — tool output, file reads, command results, error messages — is visible to a live audience. Treat the terminal as a public broadcast until the user says the stream is over. ## Use When - User announces they are streaming, screen sharing, recording, presenting, or demoing. - User asks for "streamer mode", "safe mode for stream", "hide secrets while I share my screen". ## Do Not Use When - Auditing a repo for leaked secrets (use `security-audit` / `secure`). - Redacting data in files or commits (that is content work, not a session mode). ## Activation 1. Confirm mode is ON in one short line. Stays on until user says "stop streamer mode" / "stream over" / "done streaming". 2. Run the pre-flight sweep SILENTLY (output to file, never stdout) and report only pass/fail per item, never values: - `.env*` or credential-pattern files in cwd? (`ls` check only — never open them) - Git remotes with embedded tokens? (`git config --get-regexp 'remote\..*\.url' | grep -q 'https://.*@'`: report "1 remote has an embedded token, fix after stream"; never print or store the URL) - Shell prompt / OS notifications likely exposing hostname or messages? Remind once: enable OS Do-Not-Disturb, Discord streamer mode. ## Core Rules (while ON) 1. **Never run commands that print secrets or network identity.** Full table with safe alternatives: `references/dangerous-commands.md`. Headline bans: `env`, `printenv`, `echo $ANY_SECRET`, `cat .env*`, `