Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

plexmedia2html-exportplexmedia2html 导出

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

5,513

周安装

223

GitHub Stars

1

下载量

1,730
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:plexmedia2html-export(plexmedia2html 导出)
来源仓库:https://github.com/kesuek/plexmedia2html-export
安装命令:
openclaw skills install plexmedia2html-export
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install plexmedia2html-export

简介

将 Plex 媒体库导出为静态 HTML 页面,支持多语言与流派过滤。

  • 适用于个人影音网站搭建或媒体资料归档展示。plexmedia2html-export 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 可生成带详情页的电影与电视节目目录,兼容机器打标签。
  • 需配置 Plex 服务器访问权限与媒体元数据接口。
  • 建议本地预览构建结果,确保样式与路由符合预期。

SKILL.md

name
plexmedia2html-export
description
Exports Plex Media Library (Movies & TV Shows) as static HTML pages. Features: Multilingual (EN/DE), token obfuscation (machine-bound), genre filter, detail popups. | Exportiert Plex Mediathek (Filme & Serien) als statische HTML-Seiten. Features: Multilingual (EN/DE), Token-Obfuskierung (maschinengebunden), Genre-Filter, Detail-Popups.
language
["en", "de"]

PlexMedia2HTML Export v1.2.3

English | Deutsch


<a name="english"></a>

🇬🇧 English

Exports your Plex Media Library as static HTML pages.

Features v1.2.3

  • 🎬 Movies & TV Shows beautifully displayed
  • 🏷️ Genre Filter for quick finding
  • 🔍 Detail Popups with all metadata
  • 🌍 Multilingual – English & German
  • 🔐 Token Obfuscation – Machine-bound (not true encryption)
  • 📱 Responsive Design for all devices
  • Fast – no Plex login required after export

Installation

Requires Python 3.8+. No external dependencies needed.

# Install via ClawHub
clawhub install plexmedia2html-export

# Or manually copy and make executable
chmod +x ~/.openclaw/workspace/skills/plexmedia2html-export/plex-export

The plex-export wrapper is ready to use.

Onboarding

The following values will be requested on first run:

1. Plex Server URL

Example: http://192.168.1.100:32400

2. Plex Token

1. Open Plex Web → Settings → General → Advanced
2. Click "Show Token"
3. Copy the token here

Note: The token is obfuscated with a machine-specific key (not truly encrypted).

3. Language

en (English) or de (German)

4. Export Path (optional)

Default: ~/Exports/

Configuration

Configuration is stored in ~/.openclaw/workspace/data/plexmedia2html-export/config.json:

{
  "plex_url": "http://192.168.1.100:32400",
  "plex_token_encrypted": "BASE64_ENCRYPTED_TOKEN",
  "export_path": "~/Exports",
  "movies_per_page": 18,
  "series_per_page": 18,
  "language": "en"
}

Important: The Plex token is never stored in plain text!

Usage

# First export
plex-export

# With self-signed certificate (disable SSL verification)
plex-export --insecure

# As cron job (daily at 2 AM)
0 2 * * * /usr/bin/python3 ~/.openclaw/workspace/skills/plexmedia2html-export/export.py

<a name="deutsch"></a>

🇩🇪 Deutsch

Exportiert deine Plex Mediathek als statische HTML-Seiten.

Features v1.2.3

  • 🎬 Filme & Serien übersichtlich dargestellt
  • 🏷️ Genre-Filter für schnelles Finden
  • 🔍 Detail-Popups mit allen Metadaten
  • 🌍 Multilingual – Englisch & Deutsch
  • 🔐 Token-Obfuskierung – Maschinengebunden (nicht echte Verschlüsselung)
  • 📱 Responsive Design für alle Geräte
  • Offline-fähig – Cover-Bilder werden lokal gespeichert

Installation

Der Skill benötigt Python 3.8+ und hat keine externen Dependencies.

# Skill installieren (via ClawHub)
clawhub install plexmedia2html-export

# Oder manuell kopieren und ausführbar machen
chmod +x ~/.openclaw/workspace/skills/plexmedia2html-export/plex-export

Der Wrapper plex-export ist direkt ausführbar.

Onboarding

Beim ersten Aufruf werden folgende Werte abgefragt:

1. Plex-Server URL

Beispiel: http://192.168.1.100:32400

2. Plex Token

1. Öffne Plex Web → Einstellungen → Allgemein → Erweitert
2. Klicke auf "Token anzeigen"
3. Kopiere den Token hierhin

Hinweis: Der Token wird obfuskiert mit einem maschinenspezifischen Schlüssel gespeichert (nicht verschlüsselt).

3. Sprache

en (Englisch) oder de (Deutsch)

4. Export-Pfad (optional)

Standard: ~/Exports/

Konfiguration

Die Konfiguration wird in ~/.openclaw/workspace/data/plexmedia2html-export/config.json gespeichert:

{
  "plex_url": "http://192.168.1.100:32400",
  "plex_token_encrypted": "BASE64_ENCRYPTED_TOKEN",
  "export_path": "~/Exports",
  "movies_per_page": 18,
  "series_per_page": 18,
  "language": "de"
}

Wichtig: Der Plex-Token wird nie im Klartext gespeichert!

Nutzung

# Erstmaliger Export
plex-export

# Mit selbst-signiertem Zertifikat (SSL-Verification deaktivieren)
plex-export --insecure

# Als Cron-Job (täglich um 2 Uhr)
0 2 * * * /usr/bin/python3 ~/.openclaw/workspace/skills/plexmedia2html-export/export.py

Security / Sicherheit

Privacy Note:

  • The skill reads /etc/machine-id (Linux) or derives a fallback from hostname+username
  • This is used to bind the obfuscated token to the current machine
  • No data is transmitted; the ID is only used locally for the obfuscation key

Token Storage (Obfuscation):

  • Tokens are obfuscated using XOR + Base64
  • Obfuscation key is derived from /etc/machine-id or hostname+username
  • Token cannot be deobfuscated on a different machine
  • This is not encryption — it prevents casual snooping but not determined attackers
  • For true security, use OS keyring or manually enter password each time

SSL/TLS:

  • By default, SSL certificate verification is enabled (secure)
  • Use --insecure flag only for self-signed certificates (not recommended)

File Permissions:

  • Config file is automatically set to chmod 600 (owner read/write only)
  • After first run, verify: ls -la ~/.openclaw/workspace/data/plexmedia2html-export/config.json

Lizenz / License

MIT – Frei verwendbar und modifizierbar / Free to use and modify.

Versions:

  • v1.2.3 – English default language, fixed navigation links
  • v1.2.2 – SSL verification enabled by default, file permissions enforced, --insecure flag
  • v1.2.1 – Fixed imports, honest documentation
  • v1.2.0 – Token obfuscation + Multilingual + Bug fixes
  • v1.1.0 – Multilingual support
  • v1.0.0 – Initial release

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.05%
按下载量换算1,592

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills