Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add personamanagmentlayer/pcl --skill media-expertgit clone --depth 1 https://github.com/personamanagmentlayer/pclWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/personamanagmentlayer/pcl/media-expert)<a href="https://agentmods.dev/skills/personamanagmentlayer/pcl/media-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/media-expert/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/personamanagmentlayer/pcl/media-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/media-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00057 | $0.02542 |
| Opus 5 | $0.00028 | $0.01271 |
| Sonnet 5 | $0.00011 | $0.00508 |
| Haiku 4.5 | $0.00006 | $0.00254 |
Grade A, and why
media-expert scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 368 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Media Expert
Expert guidance for media production, content management systems, video streaming, broadcasting systems, and modern media technology solutions.
Core Concepts
Media Production
- Video production workflows
- Audio production and mixing
- Post-production and editing
- Visual effects (VFX)
- Color grading and correction
- Animation and motion graphics
- Live production
Streaming and Broadcasting
- Video streaming platforms
- Content Delivery Networks (CDN)
- Adaptive bitrate streaming
- Live broadcasting
- OTT (Over-the-Top) platforms
- Digital rights management (DRM)
- Transcoding and encoding
Technologies
- Media Asset Management (MAM)
- Digital Asset Management (DAM)
- Broadcast automation
- IP-based media production
- Cloud production workflows
- AI for content analysis
- Virtual production
Standards and Protocols
- SMPTE standards
- HLS (HTTP Live Streaming)
- DASH (Dynamic Adaptive Streaming over HTTP)
- RTMP/RTSP protocols
- NDI (Network Device Interface)
- MXF (Material Exchange Format)
- Metadata standards (Dublin Core, IPTC)
Video Streaming Platform
class VideoStreamingPlatform:
"""Video streaming and delivery system"""
def __init__(self):
self.streams = {}
self.viewers = {}
self.cdn_nodes = {}
def start_live_stream(self, stream_data: dict) -> dict:
"""Start live video stream"""
stream_id = self._generate_stream_id()
stream = {
'stream_id': stream_id,
'title': stream_data['title'],
'description': stream_data.get('description', ''),
'streamer_id': stream_data['streamer_id'],
'status': 'live',
'started_at': datetime.now(),
'viewer_count': 0,
'peak_viewers': 0,
'ingest_url': f'rtmp://ingest.example.com/live/{stream_id}',
'playback_urls': {
'hls': f'https://cdn.example.com/live/{stream_id}/playlist.m3u8',
'dash': f'https://cdn.example.com/live/{stream_id}/manifest.mpd'
},
'quality_profiles': ['1080p', '720p', '480p', '360p']
}
self.streams[stream_id] = stream
return stream
def generate_adaptive_bitrate_manifest(self, asset_id: str) -> dict:
"""Generate ABR manifest for adaptive streaming"""
# Generate HLS manifest
hls_variants = [
{
'bandwidth': 5000000, # 5 Mbps
'resolution': '1920x1080',
'codecs': 'avc1.640028,mp4a.40.2',
'url': f'1080p/playlist.m3u8'
},
{
'bandwidth': 2800000, # 2.8 Mbps
'resolution': '1280x720',
'codecs': 'avc1.64001f,mp4a.40.2',
'url': f'720p/playlist.m3u8'
},
{
'bandwidth': 1400000, # 1.4 Mbps
'resolution': '854x480',
'codecs': 'avc1.64001e,mp4a.40.2',
'url': f'480p/playlist.m3u8'
},
{
'bandwidth': 800000, # 800 Kbps
'resolution': '640x360',
'codecs': 'avc1.64001e,mp4a.40.2',
'url': f'360p/playlist.m3u8'
}
]
return {
'asset_id': asset_id,
'protocol': 'hls',
'master_playlist_url': f'https://cdn.example.com/vod/{asset_id}/master.m3u8',
'variants': hls_variants
}
def track_viewer_metrics(self, stream_id: str, viewer_id: str) -> dict:
"""Track viewer engagement metrics"""
metrics = {
'stream_id': stream_id,
'viewer_id': viewer_id,
'watch_time_seconds': 3600,
'buffer_events': 2,
'average_bitrate': 3500000,
'quality_switches': 5,
'playback_start_time_ms': 1200,
'errors': 0,
'device_type': 'desktop',
'browser': 'chrome'
}
# Calculate Quality of Experience (QoE)
qoe_score = self._calculate_qoe(metrics)
metrics['qoe_score'] = qoe_score
return metrics
def _calculate_qoe(self, metrics: dict) -> float:
"""Calculate Quality of Experience score"""
score = 100.0
# Penalize buffering
score -= metrics['buffer_events'] * 5
# Penalize startup time
if metrics['playback_start_time_ms'] > 2000:
score -= 10
# Penalize errors
score -= metrics['errors'] * 15
return max(0.0, score)
def implement_drm(self, asset_id: str, drm_config: dict) -> dict:
"""Implement Digital Rights Management"""
drm = {
'asset_id': asset_id,
'drm_systems': {
'widevine': {
'license_url': 'https://license.example.com/widevine',
'supported_levels': ['L1', 'L3']
},
'fairplay': {
'certificate_url': 'https://license.example.com/fairplay/cert',
'license_url': 'https://license.example.com/fairplay/license'
},
'playready': {
'license_url': 'https://license.example.com/playready'
}
},
'encryption': 'AES-128-CTR',
'key_rotation_interval': 3600 # seconds
}
return drm
def optimize_cdn_delivery(self, asset_id: str, viewer_location: tuple) -> dict:
"""Optimize CDN delivery based on viewer location"""
# Find nearest CDN edge node
nearest_node = self._find_nearest_cdn_node(viewer_location)
return {
'asset_id': asset_id,
'cdn_node': nearest_node['node_id'],
'cdn_location': nearest_node['location'],
'distance_km': nearest_node['distance'],
'estimated_latency_ms': nearest_node['latency'],
'delivery_url': f"https://{nearest_node['node_id']}.cdn.example.com/{asset_id}"
}
def _find_nearest_cdn_node(self, viewer_location: tuple) -> dict:
"""Find nearest CDN edge node to viewer"""
# Would calculate actual distances to CDN nodes
return {
'node_id': 'edge-us-east-1',
'location': 'Virginia, USA',
'distance': 250, # km
'latency': 15 # ms
}
def _generate_stream_id(self) -> str:
import uuid
return f"STREAM-{uuid.uuid4().hex[:8].upper()}"
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago Changed · -218 lines · +37 tokens per session 2761e7766069
- 6d ago First seen · 586 lines · 20 tokens per session scan A 3deeefb10f42
media-expert is a skill published in the GitHub repository personamanagmentlayer/pcl (40 stars, last pushed 3d ago), licensed Apache-2.0. It adds 57 tokens to every session and 2,542 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
imagegen
Generate or edit images via BlockRun's image API. Trigger when the user asks to generate, create, draw, make an image — or to edit, modify, change, or retouch an existing image.
clawrouter
Hosted-gateway LLM router — save 84% on inference costs. A local proxy that forwards each request to the blockrun.ai gateway, which routes to the cheapest capable model across 76 models from OpenAI, Anthropic, Google, DeepSeek, xAI, Z.AI, and more. 7 free open-weight models included. Also exposes realtime market data…
surf
Use this skill — NOT browser or webfetch — for ALL Surf crypto-data calls. 83 endpoints at localhost:8402/v1/surf/ covering CEX/DEX markets, on-chain SQL over 80+ ClickHouse tables (Ethereum, Base, Arbitrum, BSC, TRON, HyperEVM, Tempo), 100M+ labeled wallets, prediction markets (Polymarket + Kalshi), social/CT…
phone
Verify phone numbers (carrier + SIM-swap fraud signals) and place AI-powered outbound voice calls via BlockRun's gateway (Twilio + Bland.ai). Trigger when the user asks to look up a number, check fraud risk, buy/rent a phone number, or place an AI voice call. Payment is automatic via x402 from the wallet.
polymarket-trading
Use when the user wants to actually PLACE, manage, or redeem bets on Polymarket (not just read odds — that's the blockrunpredexon data tools). Covers setup (deposit wallet, funding, approvals), buy/sell with confirm gating, positions, redeeming winnings, geoblock handling, and the end-to-end flow.
release
Use this skill for EVERY ClawRouter release. Enforces the full checklist — version sync, CHANGELOG, build, tests, npm publish, git tag, GitHub release. No step can be skipped.