plugins/cloudflare/skills/stream/SKILL.md
Use this skill when the user asks about Cloudflare Stream, video hosting and streaming, video encoding, live streaming, or managing Stream with Pulumi.
npx skillsauth add nsheaps/ai-mktpl cloudflare-streamInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Stream is Cloudflare's video hosting and delivery platform. Upload, encode, and stream video with adaptive bitrate, built-in player, and live streaming support.
# Direct upload via API
curl -X POST "https://api.cloudflare.com/client/v4/accounts/{account_id}/stream" \
-H "Authorization: Bearer $CF_API_TOKEN" \
-F "[email protected]"
# Upload via URL
curl -X POST "https://api.cloudflare.com/client/v4/accounts/{account_id}/stream/copy" \
-H "Authorization: Bearer $CF_API_TOKEN" \
-d '{"url": "https://example.com/video.mp4"}'
<iframe
src="https://customer-{CODE}.cloudflarestream.com/{VIDEO_ID}/iframe"
allow="accelerometer; gyroscope; autoplay; encrypted-media; picture-in-picture"
allowfullscreen
></iframe>
Stream is managed via API and dashboard. No dedicated Pulumi resource exists for Stream videos, but live inputs can be managed:
// Stream live inputs and video management are done via the Cloudflare API
// No dedicated Pulumi resources currently exist
| Resource | Cost | | ---------- | ------------------------ | | Storage | $5.00/1,000 min/month | | Delivery | $1.00/1,000 min viewed | | Live input | $0.75/1,000 min ingested |
tools
Reference material for Claude Code internals — the on-disk layout under ~/.claude and project-scope .claude, the plugin cache, session-env propagation, and the full hook lifecycle. Auto-recall when working on Claude-Code-related tasks: writing or debugging hooks, authoring plugins, inspecting session state, troubleshooting why an env var is or isn't visible to a Bash tool call, or when paths under ~/.claude or ~/.claude/plugins/ come up.
development
Manage GitHub App installation tokens in Claude Code sessions. Use when tokens expire, auth errors occur in long-running sessions, or when setting up GitHub App credentials for agent teams. <example>my github token expired</example> <example>refresh the github app token</example> <example>check token status</example> <example>set up github app authentication for this session</example>
tools
Auto-detect project formatting tools and configure edit-utils settings
tools
Use this skill when the user asks about 1Password, secrets management, retrieving credentials, using op CLI, service accounts, secret references, vault operations, or any task involving the 1Password CLI (op). Also use when needing to inject secrets into environment variables, read passwords or API keys from 1Password, or manage 1Password items from the command line.