streamer-mode

Solid

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".

Data & Documents 0 stars 0 forks Updated yesterday Apache-2.0

Install

View on GitHub

Quality Score: 78/100

Stars 20%
0
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# 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 credentials? (`git config --get-regexp 'remote\..*\.url' > /tmp/…` then count matches of `://[^/@]*:[^/@]*@|https?://[^/@]*@`. Two alternatives on purpose: userinfo containing a colon means a password is present under any scheme, and any userinfo over http(s) is a token. Matching a bare `user@` under every scheme would flag ordinary `ssh://git@github.com/...` remotes, and a check that fires on every SSH remote gets ignored. Report the count only: "1 remote has an embedded credential, fix after stream". Never print the URL or the m...

Details

Author
LucasSantana-Dev
Repository
LucasSantana-Dev/streamer-mode
Created
yesterday
Last Updated
yesterday
Language
N/A
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category

Data & Documents Listed

handling-secrets-safely

Use when inspecting, probing, or reporting on any credential-bearing file (.mcp.json, .env, *.pem, ~/.git-credentials, ~/.netrc, a secret store) or when clearing a "no secrets" / security-sweep verdict - the mechanics that keep a well-intentioned command from leaking a value through tool output, a diff echo, a query error, or a shallow history scan. The high-level policy (where secrets live, rotation) is assumed; this is the HOW.

0 Updated 2 days ago
bim-ba
AI & Automation Solid

safe-mode

Prevent destructive operations using Claude Code hooks. Three modes — cautious (warn on dangerous commands), lockdown (restrict edits to one directory), and clear (remove restrictions). Uses PreToolUse matchers for Bash, Edit, and Write.

2,653 Updated today
rohitg00
DevOps & Infrastructure Listed

setup-cloudflare-tunnel

Walk the user through bringing up a Cloudflare quick-tunnel to expose their local @threadbase/streamer to tb-mobile. Drives scripts/remote-access/cloudflare.sh (or .ps1 on Windows / when pwsh is preferred), explains the quick-tunnel-vs-named-tunnel tradeoff, and — if asked — guides the upgrade to a persistent named tunnel with optional Cloudflare Access. Use when the user says "expose my streamer", "set up a tunnel", "let my phone reach my streamer from outside the LAN", "set up cloudflared", "set up Cloudflare Tunnel", "I want a public URL for the streamer", or asks how to onboard tb-mobile remote pairing. The full reference lives in docs/guides/remote-access/README.md and docs/guides/remote-access/cloudflare.md — read those first before going beyond the happy-path setup.

0 Updated today
RonenMars