From cloudflare
Use this skill when the user asks about Cloudflare Stream, video hosting and streaming, video encoding, live streaming, or managing Stream with Pulumi.
npx claudepluginhub nsheaps/ai-mktpl --plugin cloudflareThis skill uses the workspace's default tool permissions.
Stream is Cloudflare's video hosting and delivery platform. Upload, encode, and stream video with adaptive bitrate, built-in player, and live streaming support.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides agent creation for Claude Code plugins with file templates, frontmatter specs (name, description, model), triggering examples, system prompts, and best practices.
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 "file=@video.mp4"
# 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 |