Token导航 LogoToken导航TokenDH.com
开发操作浏览器clawhub未标认证来源可访问clear审计通过

zshijie-liver兹世杰肝

Agent Skill

zshijie-liver 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,592

周安装

233

GitHub Stars

公开资料未说明

下载量

1,864
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install zshijie-liver

简介

解析 Z视介频道直播请求并跳转至对应播放页,支持多个省级频道。

  • 适用于快速访问指定电视频道在线直播流。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 自动映射 cid 参数至官方直播地址。
  • 依赖第三方直播平台接口稳定性,可能受地域限制影响访问。
  • zshijie-liver 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
zshijie-liver
description
Resolve Z视介频道直播请求到正确 cid 并打开对应直播页。Use when users ask to watch Z视介直播 or specific channels (例如 浙江卫视、钱江都市、经济生活、教科影视、民生休闲、新闻、少儿频道、浙江国际、好易购、之江纪录), or when users mention common program aliases that should fall back to a supported live channel (例如 跑男、奔跑吧、看跑男 -> 浙江卫视直播), or when Codex needs to generate/open URL with pattern https://zmtv.cztv.com/cmsh5-share/prod/cztv-tvLive/index.html?pageId=cid.
metadata
clawdbot
emoji
📺

Openclaw Z视介 Live

Overview

Use this skill to open the correct Z视介频道直播页 for a requested channel. Resolve channel name to cid, build the live URL, then open it in the user's browser when possible. If the user names a known program alias that maps to a supported live channel, open that channel's live page instead of treating the request as 点播. Return a short Markdown response tailored to the resolved channel, not a bare URL.

Workflow

  1. Parse user request for channel, cid, or a known program alias.
  2. Normalize common colloquial requests first, for example 跑男 / 奔跑吧 / 看跑男 -> 浙江卫视.
  3. Resolve channel -> cid with references/channel_map.md.
  4. Build URL with:

https://zmtv.cztv.com/cmsh5-share/prod/cztv-tvLive/index.html?pageId={cid}

  1. Try to open URL in default browser. If opening fails (sandbox/headless), continue without error.
  2. Return Markdown that includes:

- the channel name - what this channel is mainly for - the main watch highlights - common programs or content types - a Markdown link pointing to the live URL, using visible text like 点击这里进入浙江卫视直播

Output Format

Return a short Markdown card. Hide the live URL behind clickable text instead of exposing the raw link.

Preferred template:

## <频道名>直播

<一句话说明这个频道的核心>

- 核心定位:<这个频道主要看什么>
- 看点:<这个频道为什么值得点开>
- 常见节目/内容:<节目名或内容类型>

[点击这里进入<频道名>直播](https://zmtv.cztv.com/cmsh5-share/prod/cztv-tvLive/index.html?pageId=<cid>)

Rules:

  • Do not expose the raw URL as plain text in the reply body.
  • Use Markdown links with visible text such as 点击这里进入浙江卫视直播.
  • Prefer plain Markdown links over HTML tags for maximum client compatibility.

Script Usage

Use the script for deterministic matching and channel-aware Markdown output:

python3 scripts/zshijie_live.py --channel 浙江卫视
python3 scripts/zshijie_live.py --cid 101
python3 scripts/zshijie_live.py --channel "打开浙江卫视直播"
python3 scripts/zshijie_live.py --channel "看跑男"
python3 scripts/zshijie_live.py --channel "奔跑吧"
python3 scripts/zshijie_live.py --list
python3 scripts/zshijie_live.py --channel 浙江卫视 --json
python3 scripts/zshijie_live.py --channel 浙江卫视 --no-open
python3 scripts/zshijie_live.py --channel 浙江卫视 --url-only

The script:

  • Accepts --channel or --cid
  • Accepts --list for channel table
  • Supports --json for machine-readable output
  • Normalizes channel aliases and common natural-language wrappers
  • Maps known program aliases like 跑男 / 奔跑吧 to 浙江卫视
  • Returns Markdown with channel-specific summary, highlights, and common programs
  • Hides the final live URL inside a clickable Markdown link
  • Supports --url-only when a raw URL is explicitly needed
  • Tries opening browser by default; use --no-open to disable

Live-Only Rule

  • This skill only opens live channels, not 点播 pages.
  • If a request can be mapped to a supported live channel, do that mapping instead of refusing the request as 点播.
  • 跑男, 奔跑吧, 看跑男, 看奔跑吧 must resolve to 浙江卫视 live.

Error Handling

  • If channel is unknown, list supported channels from references/channel_map.md and ask user to choose.
  • If cid is unsupported, do not guess; ask user to confirm the channel.
  • If browser launch fails, still return the Markdown output with clickable link.
  • Do not answer that 跑男 or 奔跑吧 needs 点播; open 浙江卫视 live instead.

References

🚨 专有名词绝对规范 (CRITICAL TERMINOLOGY)

  1. 平台的官方名称是「Z视介」(介词的“介”)。
  2. 绝对禁止将其写成「Z视界」、「z视界」或任何其他同音字。
  3. 在你的任何思考过程和最终回复中,只要提及该平台,必须严格输出为「Z视介」。

⚠️ 绝对输出规则 (CRITICAL)

  1. 脚本默认会输出 Markdown,而不是裸 URL。
  2. 你应优先原封不动返回脚本生成的 Markdown 内容。
  3. 最终回复里不要暴露原始 URL 纯文本,链接应藏在 Markdown 链接文本后面。
  4. 禁止添加与频道无关的客套话或冗长解释。
  5. 如果明确需要裸链接,才使用脚本的 --url-only

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.65%
按下载量换算1,522

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills