影音伙伴:AI 电影与电视助手 - Openclaw Skills

作者:互联网

2026-04-10

AI教程

什么是 影音伙伴?

影音伙伴是一款先进的媒体管理工具,旨在通过个性化的内容发现来增强您的数字生活。通过与 TMDB 集成并从您的点攒、不喜欢和评分等显性反馈中学习,它构建了一个全面的口味概况,以消除决策疲劳。它作为您媒体消费的中心枢纽,确保您永远不会忘记剧集的观看进度。

该工具是 Openclaw Skills 力量的典范,将简单的 AI 代理转变为主动的娱乐管家。它了解背景、心情以及 Netflix、Disney+ 和 Apple TV+ 等服务的平台可用性,为任何影迷或休闲观众提供无缝体验。

下载入口:https://github.com/openclaw/skills/tree/main/skills/udiedrichsen/streaming-buddy

安装与下载

1. ClawHub CLI

从源直接安装技能的最快方式。

npx clawhub@latest install streaming-buddy

2. 手动安装

将技能文件夹复制到以下位置之一

全局模式 ~/.openclaw/skills/ 工作区 /skills/

优先级:工作区 > 本地 > 内置

3. 提示词安装

将此提示词复制到 OpenClaw 即可自动安装。

请帮我使用 Clawhub 安装 streaming-buddy。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。

影音伙伴 应用场景

  • 根据特定的心情(如兴奋、放松或深思)寻找接下来要看的内容。
  • 同时追踪多个电视节目的剧集级进度,永远不会忘记进度。
  • 接收根据您的活跃流媒体订阅筛选的个性化推荐,以避免付费限制。
  • 在一个地方建立跨所有主要流媒体平台的统一观看列表。
  • 通过突出显示喜爱的演员或类型的详细匹配说明来理解建议背后的逻辑。
影音伙伴 工作原理
  1. 通过从本地工作区读取您配置的流媒体服务和地理区域设置来进行初始化。
  2. 从 TMDB 获取搜索查询、演职人员详情和深层标题信息的实时元数据。
  3. 监测互动(如将标题标记为已看或进行评分)会触发学习引擎。
  4. 使用特定类型、演员和重复主题的加权分数更新本地偏好配置文件。
  5. 将您的独特口味概况与您特定平台上当前可用的内容进行交叉引用,以生成智能建议。

影音伙伴 配置指南

要开始使用此技能,您需要一个 TMDB API 密钥以及在环境中进行一些配置步骤:

  1. 从官方设置页面获取免费的 TMDB API 密钥。
  2. 在工作区中创建目录和配置文件:
mkdir -p $WORKSPACE/memory/streaming-buddy/
cat < $WORKSPACE/memory/streaming-buddy/config.json
{
  "tmdbApiKey": "your_api_key",
  "region": "CN",
  "language": "zh-CN"
}
EOF
  1. 使用命令行初始化您的流媒体服务:
/stream services add netflix
/stream services add amazon-prime

影音伙伴 数据架构与分类体系

该技能使用位于工作区内存目录中的 JSON 结构维护持久状态:

文件 描述
profile.json 核心用户元数据和高级配置文件设置。
preferences.json 类型、喜爱主题和喜爱演员的加权分数。
watching.json 当前追踪的标题及其季度和剧集进度。
history.json 所有已完成标题的记录,包括用户提供的评分和日期。
services.json 用于可用性过滤的活跃流媒体平台列表。
cache/*.json API 响应的临时存储,以提高性能并减少延迟。
name: streaming-buddy
version: 2.0.0
description: "Personal streaming assistant with learning preferences. Tracks what you're watching, learns your taste, and suggests what to watch next based on your services, mood, and preferences. Use when asked about movies, TV shows, streaming services, what to watch, or tracking viewing progress. Triggers: /stream, 'what should I watch', 'recommend something', mentioning Netflix/Prime/Disney+/Apple TV+, asking about series/seasons/episodes, mood-based requests like 'something exciting'."
author: clawdbot
license: MIT
metadata:
  clawdbot:
    emoji: "??"
    triggers: ["/stream"]
    requires:
      bins: ["jq", "curl"]
      env: ["TMDB_API_KEY"]
  tags: ["streaming", "movies", "tv-shows", "recommendations", "entertainment", "learning", "preferences"]

Streaming Buddy ??

Personal streaming assistant that learns your taste, tracks your watching habits, and suggests what to watch next.

Features

  • Search & Info: Find movies/TV shows with TMDB data
  • Watch Tracking: Track what you're currently watching with progress
  • Learning System: Learns your preferences from likes/dislikes/ratings
  • Smart Recommendations: Personalized suggestions based on your taste
  • Mood-Based Search: Find content by mood (exciting, relaxing, scary, etc.)
  • Availability Check: Shows which of your services has the content
  • Match Explanation: Explains why a title matches your preferences

Commands

Command Action
/stream Show status with all commands
/stream search </CODE></TD> <TD>Search for movies/TV shows</TD></TR> <TR> <TD><CODE>/stream info <id> [tv|movie]</CODE></TD> <TD>Detailed info + availability</TD></TR> <TR> <TD><CODE>/stream watch <id> [tv|movie]</CODE></TD> <TD>Start tracking a title</TD></TR> <TR> <TD><CODE>/stream progress S01E05</CODE></TD> <TD>Update progress on current show</TD></TR> <TR> <TD><CODE>/stream done [1-5]</CODE></TD> <TD>Mark as finished + rate (auto-learns)</TD></TR> <TR> <TD><CODE>/stream like [id]</CODE></TD> <TD>Mark as liked → learns preferences</TD></TR> <TR> <TD><CODE>/stream dislike [id]</CODE></TD> <TD>Mark as disliked → learns preferences</TD></TR> <TR> <TD><CODE>/stream suggest [service] [tv|movie]</CODE></TD> <TD>Personalized recommendations</TD></TR> <TR> <TD><CODE>/stream mood <mood></CODE></TD> <TD>Search by mood</TD></TR> <TR> <TD><CODE>/stream surprise</CODE></TD> <TD>Random recommendation</TD></TR> <TR> <TD><CODE>/stream why <id></CODE></TD> <TD>Explain why this matches you</TD></TR> <TR> <TD><CODE>/stream watchlist</CODE></TD> <TD>Show watchlist</TD></TR> <TR> <TD><CODE>/stream watchlist add <id></CODE></TD> <TD>Add to watchlist</TD></TR> <TR> <TD><CODE>/stream history</CODE></TD> <TD>View watch history</TD></TR> <TR> <TD><CODE>/stream profile</CODE></TD> <TD>Show your taste profile</TD></TR> <TR> <TD><CODE>/stream services</CODE></TD> <TD>Manage streaming services</TD></TR> <TR> <TD><CODE>/stream services add <name></CODE></TD> <TD>Add a service</TD></TR> <TR> <TD><CODE>/stream services remove <name></CODE></TD> <TD>Remove a service</TD></TR></TBODY></TABLE></DIV> <H2 id=mood-options>Mood Options</H2> <DIV class=table-scroll-wrapper> <TABLE> <THEAD> <TR> <TH>Mood</TH> <TH>Genres</TH></TR></THEAD> <TBODY> <TR> <TD><CODE>exciting</CODE></TD> <TD>Action, Thriller, Sci-Fi, Adventure</TD></TR> <TR> <TD><CODE>relaxing</CODE></TD> <TD>Comedy, Animation, Family, Documentary</TD></TR> <TR> <TD><CODE>thoughtful</CODE></TD> <TD>Drama, Mystery, History</TD></TR> <TR> <TD><CODE>scary</CODE></TD> <TD>Horror, Thriller</TD></TR> <TR> <TD><CODE>romantic</CODE></TD> <TD>Romance, Drama</TD></TR> <TR> <TD><CODE>funny</CODE></TD> <TD>Comedy, Animation</TD></TR></TBODY></TABLE></DIV> <H2 id=supported-services>Supported Services</H2> <UL> <LI><CODE>netflix</CODE>, <CODE>amazon-prime</CODE>, <CODE>disney-plus</CODE>, <CODE>apple-tv-plus</CODE></LI> <LI><CODE>you@tube-premium</CODE>, <CODE>wow</CODE>, <CODE>paramount-plus</CODE>, <CODE>crunchyroll</CODE></LI> <LI><CODE>joyn</CODE>, <CODE>rtl</CODE>, <CODE>magenta</CODE>, <CODE>mubi</CODE></LI></UL> <H2 id=learning-system>Learning System</H2> <P>The skill learns your preferences from:</P> <OL> <LI> <P><STRONG>Ratings</STRONG>: When you finish with <CODE>/stream done [1-5]</CODE>:</P> <UL> <LI>Rating 4-5: Adds genres/themes/actors to "liked"</LI> <LI>Rating 1-2: Adds genres to "avoided"</LI></UL></LI> <LI> <P><STRONG>Explicit Feedback</STRONG>: <CODE>/stream like</CODE> and <CODE>/stream dislike</CODE>:</P> <UL> <LI>Extracts genres, themes, actors, directors</LI> <LI>Updates preference weights</LI></UL></LI> <LI> <P><STRONG>Preference Profile</STRONG> includes:</P> <UL> <LI>Genre preferences (weighted scores)</LI> <LI>Liked/disliked themes</LI> <LI>Favorite actors & directors</LI> <LI>Custom mood mappings</LI></UL></LI></OL> <H2 id=handler-usage>Handler Usage</H2><PRE><CODE class=language-bash># Core commands handler.sh status $WORKSPACE handler.sh search "severance" $WORKSPACE handler.sh info 95396 tv $WORKSPACE handler.sh watch 95396 tv $WORKSPACE handler.sh progress S01E05 $WORKSPACE handler.sh done 5 "Great show!" $WORKSPACE # Learning commands handler.sh like $WORKSPACE # Like current watching handler.sh like 12345 movie $WORKSPACE # Like specific title handler.sh dislike $WORKSPACE handler.sh why 95396 tv $WORKSPACE handler.sh profile $WORKSPACE # Recommendation commands handler.sh suggest $WORKSPACE # All services, all types handler.sh suggest prime movie $WORKSPACE # Prime movies only handler.sh mood exciting $WORKSPACE handler.sh mood relaxing tv $WORKSPACE handler.sh surprise $WORKSPACE # List commands handler.sh watchlist list $WORKSPACE handler.sh watchlist add 12345 tv $WORKSPACE handler.sh history $WORKSPACE # Service management handler.sh services list $WORKSPACE handler.sh services add netflix $WORKSPACE handler.sh services remove netflix $WORKSPACE </CODE></PRE> <H2 id=data-files>Data Files</H2> <P>All data stored in <CODE>$WORKSPACE/memory/streaming-buddy/</CODE>:</P> <DIV class=table-scroll-wrapper> <TABLE> <THEAD> <TR> <TH>File</TH> <TH>Purpose</TH></TR></THEAD> <TBODY> <TR> <TD><CODE>config.json</CODE></TD> <TD>TMDB API key, region, language</TD></TR> <TR> <TD><CODE>profile.json</CODE></TD> <TD>User profile metadata</TD></TR> <TR> <TD><CODE>services.json</CODE></TD> <TD>Active streaming services</TD></TR> <TR> <TD><CODE>preferences.json</CODE></TD> <TD>Learned taste preferences</TD></TR> <TR> <TD><CODE>watching.json</CODE></TD> <TD>Currently watching</TD></TR> <TR> <TD><CODE>watchlist.json</CODE></TD> <TD>Want to watch list</TD></TR> <TR> <TD><CODE>history.json</CODE></TD> <TD>Watched + ratings</TD></TR> <TR> <TD><CODE>cache/*.json</CODE></TD> <TD>API response cache (24h)</TD></TR></TBODY></TABLE></DIV> <H2 id=setup>Setup</H2> <OL> <LI>Get TMDB API key: https://www.themoviedb.org/settings/api</LI> <LI>Store in <CODE>memory/streaming-buddy/config.json</CODE>:<PRE><CODE class=language-json>{ "tmdbApiKey": "your_api_key", "region": "DE", "language": "de-DE" } </CODE></PRE></LI> <LI>Run <CODE>/stream setup</CODE> to configure services</LI></OL> <H2 id=conversation-examples>Conversation Examples</H2> <P><STRONG>Mood-based search:</STRONG></P><PRE><CODE>User: I want something exciting tonight Bot: ?? Exciting picks for you: 1. Reacher S3 (Prime) ?8.5 2. Jack Ryan (Prime) ?8.1 ... </CODE></PRE> <P><STRONG>Learning from feedback:</STRONG></P><PRE><CODE>User: /stream done 5 Bot: ? Severance marked as done (?5) ?? Learned: +Drama, +Mystery, +Sci-Fi Actors: Adam Scott, Britt Lower saved to favorites </CODE></PRE> <P><STRONG>Explaining recommendations:</STRONG></P><PRE><CODE>User: /stream why 95396 Bot: ?? Why Severance matches you: ? Genre "Drama" (you like this, +2) ? Genre "Mystery" (you like this, +2) ? Theme "office" in your preferences ? With Adam Scott (your favorite) Similar to: Fallout ?5 </CODE></PRE> <H2 id=language-support>Language Support</H2> <UL> <LI>Language detected from <CODE>config.json</CODE> (<CODE>language: "de-DE"</CODE> or <CODE>"en"</CODE>)</LI> <LI>All output adapts to configured language</LI> <LI>Commands work in any language</LI></UL> <H2 id=requirements>Requirements</H2> <UL> <LI><CODE>jq</CODE> (JSON processor)</LI> <LI><CODE>curl</CODE> (HTTP client)</LI> <LI><CODE>bash</CODE> 4.0+</LI> <LI>TMDB API key (free)</LI></UL> <H2 id=references>References</H2> <UL> <LI>services.md — Full list of streaming services</LI> <LI>tmdb-api.md — TMDB API usage</LI> <LI>justwatch.md — Availability data integration</LI></UL> </div> <div class="lastanext flexRow"> <a class="lastart flexRow" href="/wz/330127.html" ><span>上一篇:</span><span>Amadeus 酒店:搜索、比较并追踪酒店价格 - Openclaw Skills</span></a> <a class="nextart flexRow" href="/wz/330129.html" ><span>下一篇:</span><span>ClawGuard: 针对 Openclaw Skills 的 LLM-as-a-Judge 安全卫士</span></a> </div> </div> <div class="dtl-xgtj"> <div class="jb-titles flexRow"> <div class="jbtle-left flexRow"><b></b><p>相关推荐</p></div> </div> <div class="tjlist flexRow"> <div class="tj-item "> <div class="tjitemd"> <div class="tjimd-top flexRow"> <a class="imdta flexRow" href="/wz/362044.html" > <img src="/jiaoben/image/noimg.png" > </a> <div class="imdt-right flexColumn"> <a class="imdtra flexRow overflowclass" href="/wz/362044.html" >RunPod CLI:管理 GPU 容器与 Serverless - Openclaw Skills</a> <a class="imdtrap flexRow overflowclass" href="/wz/362044.html" > 什么是 RunPod CLI 管理器? RunPod CLI 技能为开发人员提供了一个强大的接口,可以直接通过 AI 代理编排高性能计算资源。在 Openclaw Skills 生态系统中的这一集成允许无缝管理 </a> </div> </div> <div class="tjimd-down flexRow"> <div class="imdd-tab flexRow"> <p class="imddt-time flexRow"><b></b><span>2026-04-15</span></p> </div> <a href="/wz/362044.html" class="imdd-more flexRow flexcenter" >立即查看</a> </div> </div> </div> <div class="tj-item "> <div class="tjitemd"> <div class="tjimd-top flexRow"> <a class="imdta flexRow" href="/wz/362043.html" > <img src="/jiaoben/image/noimg.png" > </a> <div class="imdt-right flexColumn"> <a class="imdtra flexRow overflowclass" href="/wz/362043.html" >巴塞罗那指南:旅游、移居与技术洞察 - Openclaw Skills</a> <a class="imdtrap flexRow overflowclass" href="/wz/362043.html" > 什么是 巴塞罗那城市指南与移居助手? Openclaw Skills 的巴塞罗那技能将您的 AI 智能体转变为本地专家。它为游客、居民、技术专业人士和学生提供全面的数据。通过综合社区、生活成本和本地技术生态 </a> </div> </div> <div class="tjimd-down flexRow"> <div class="imdd-tab flexRow"> <p class="imddt-time flexRow"><b></b><span>2026-04-15</span></p> </div> <a href="/wz/362043.html" class="imdd-more flexRow flexcenter" >立即查看</a> </div> </div> </div> <div class="tj-item "> <div class="tjitemd"> <div class="tjimd-top flexRow"> <a class="imdta flexRow" href="/wz/362042.html" > <img src="/jiaoben/image/noimg.png" > </a> <div class="imdt-right flexColumn"> <a class="imdtra flexRow overflowclass" href="/wz/362042.html" >Google Play 商店:Android 应用优化与发布 - Openclaw Skills</a> <a class="imdtrap flexRow overflowclass" href="/wz/362042.html" > 什么是 Google Play 商店? Google Play 商店技能旨在简化发布和优化 Android 应用程序的复杂过程。通过利用 Openclaw Skills,开发者可以自动创建富含关键词的商店列表, </a> </div> </div> <div class="tjimd-down flexRow"> <div class="imdd-tab flexRow"> <p class="imddt-time flexRow"><b></b><span>2026-04-15</span></p> </div> <a href="/wz/362042.html" class="imdd-more flexRow flexcenter" >立即查看</a> </div> </div> </div> <div class="tj-item "> <div class="tjitemd"> <div class="tjimd-top flexRow"> <a class="imdta flexRow" href="/wz/362035.html" > <img src="/jiaoben/image/noimg.png" > </a> <div class="imdt-right flexColumn"> <a class="imdtra flexRow overflowclass" href="/wz/362035.html" >YouTube 灵感提取器:将视频转化为创业洞察 - Openclaw Skills</a> <a class="imdtrap flexRow overflowclass" href="/wz/362035.html" > 什么是 YouTube 灵感提取器? YouTube 灵感提取器是一款功能全面的技能工具,旨在将视频内容转化为可操作的商业智能。通过利用用于索引语义搜索的 solograph MCP 或用于直接字幕分析的独 </a> </div> </div> <div class="tjimd-down flexRow"> <div class="imdd-tab flexRow"> <p class="imddt-time flexRow"><b></b><span>2026-04-15</span></p> </div> <a href="/wz/362035.html" class="imdd-more flexRow flexcenter" >立即查看</a> </div> </div> </div> </div> </div> </div> <div class="cd-right dtlcd-right"> <div class="dtl-ht"> <div class="jb-titles flexRow"> <div class="jbtle-left flexRow"><b></b><p>专题</p></div> </div> <div class="dtlht-list "> <div class="htl-item flexRow"> <div class="htmitem-left"> <div class="htiteml-top flexRow"> <a href="/wz/zt-68081.html" >#蛋仔派对</a> <span></span> </div> <a class="htiteml-down flexRow" href="/wz/zt-68081.html" >提供蛋仔派对最新官方活动解析</a> </div> <p class="htmitem-right flexRow flexcenter gz" data-id="68081" >+ 收藏</p> </div> <div class="htl-item flexRow"> <div class="htmitem-left"> <div class="htiteml-top flexRow"> <a href="/wz/zt-50161.html" >#Grok</a> <span></span> </div> <a class="htiteml-down flexRow" href="/wz/zt-50161.html" >Grok脚本资源网站,提供G</a> </div> <p class="htmitem-right flexRow flexcenter gz" data-id="50161" >+ 收藏</p> </div> <div class="htl-item flexRow"> <div class="htmitem-left"> <div class="htiteml-top flexRow"> <a href="/wz/zt-50160.html" >#Sora2</a> <span></span> </div> <a class="htiteml-down flexRow" href="/wz/zt-50160.html" >Sora2脚本资源网站,提供S</a> </div> <p class="htmitem-right flexRow flexcenter gz" data-id="50160" >+ 收藏</p> </div> <div class="htl-item flexRow"> <div class="htmitem-left"> <div class="htiteml-top flexRow"> <a href="/wz/zt-50159.html" >#通义万相</a> <span></span> </div> <a class="htiteml-down flexRow" href="/wz/zt-50159.html" >通义万相脚本资源网站,提供通</a> </div> <p class="htmitem-right flexRow flexcenter gz" data-id="50159" >+ 收藏</p> </div> <div class="htl-item flexRow"> <div class="htmitem-left"> <div class="htiteml-top flexRow"> <a href="/wz/zt-50158.html" >#海螺AI</a> <span></span> </div> <a class="htiteml-down flexRow" href="/wz/zt-50158.html" >海螺AI脚本资源网站,提供海</a> </div> <p class="htmitem-right flexRow flexcenter gz" data-id="50158" >+ 收藏</p> </div> <div class="htl-item flexRow"> <div class="htmitem-left"> <div class="htiteml-top flexRow"> <a href="/wz/zt-50157.html" >#可灵AI</a> <span></span> </div> <a class="htiteml-down flexRow" href="/wz/zt-50157.html" >可灵AI脚本资源网站,提供可</a> </div> <p class="htmitem-right flexRow flexcenter gz" data-id="50157" >+ 收藏</p> </div> </div> </div> <div class=" dtl-zt"> <div class="jb-titles flexRow"> <div class="jbtle-left flexRow"><b></b><p>最新数据</p></div> </div> <div class="wkch-downs"> <div class="weekch-top flexRow"> <a class="wktpa flexRow" href="/wz/330134.html" > <img src="/jiaoben/image/noimg.png" > </a> <div class="wktpa-right flexColumn"> <a class="wktpara flexRow overflowclass" href="/wz/330134.html" >架构模式:整洁架构、六边形架构与 DDD 指南 - Openclaw Skills</a> <a class="wktparp flexRow overflowclass" href="/wz/330134.html" > 什么是 架构模式? 此架构模式 </a> </div> </div> <div class="weekch-list"> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/330133.html" class="weekcha flexRow flexcenter overflowclass" >4chan 阅读器:提取并归档贴子数据 - Openclaw Skills</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/330132.html" class="weekcha flexRow flexcenter overflowclass" >微信公众号写作助手:AI创作与发布助手 - Openclaw Skills</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/330131.html" class="weekcha flexRow flexcenter overflowclass" >ClawPrint:AI 智能体发现与信任协议 - Openclaw 技能</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/330130.html" class="weekcha flexRow flexcenter overflowclass" >Clawdr:自动化 AI 约会与配对 - Openclaw 技能</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/330126.html" class="weekcha flexRow flexcenter overflowclass" >OpenClaw Tesla (tescmd):车辆控制与遥测 - Openclaw Skills</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/330125.html" class="weekcha flexRow flexcenter overflowclass" >Prompt Assemble:Token 安全的 AI 记忆管理 - Openclaw Skills</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/330124.html" class="weekcha flexRow flexcenter overflowclass" >Game Cog:全面的 AI 游戏世界与资产构建工具 - Openclaw Skills</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/330123.html" class="weekcha flexRow flexcenter overflowclass" >TradingView 筛选器:多资产市场扫描仪 - Openclaw Skills</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/330122.html" class="weekcha flexRow flexcenter overflowclass" >iCalendar Sync:使用 Openclaw Skills 管理 iCloud 日历</a> </div> </div> </div> </div> <div class=" dtl-wz"> <div class="jb-titles flexRow"> <div class="jbtle-left flexRow"><b></b><p>相关文章</p></div> </div> <div class="blog-list"> <a href="/wz/362042.html" class="bloga flexRow over"><p class="overflowclass">Google Play 商店:Android 应用优化与发布 - Openclaw Skills</p><div class="blogtime"><span>04/</span>15</div></a> <a href="/wz/362043.html" class="bloga flexRow over"><p class="overflowclass">巴塞罗那指南:旅游、移居与技术洞察 - Openclaw Skills</p><div class="blogtime"><span>04/</span>15</div></a> <a href="/wz/362044.html" class="bloga flexRow over"><p class="overflowclass">RunPod CLI:管理 GPU 容器与 Serverless - Openclaw Skills</p><div class="blogtime"><span>04/</span>15</div></a> <a href="/wz/362033.html" class="bloga flexRow over"><p class="overflowclass">三层记忆管理器:高级 AI 智能体记忆系统 - Openclaw 技能</p><div class="blogtime"><span>04/</span>15</div></a> <a href="/wz/362035.html" class="bloga flexRow over"><p class="overflowclass">YouTube 灵感提取器:将视频转化为创业洞察 - Openclaw Skills</p><div class="blogtime"><span>04/</span>15</div></a> <a href="/wz/361967.html" class="bloga flexRow over"><p class="overflowclass">小红书自动发布:自动化小红书内容 - Openclaw Skills</p><div class="blogtime"><span>04/</span>15</div></a> <a href="/wz/361968.html" class="bloga flexRow over"><p class="overflowclass">富途 API:实时股市行情与技术分析 - Openclaw Skills</p><div class="blogtime"><span>04/</span>15</div></a> <a href="/wz/361969.html" class="bloga flexRow over"><p class="overflowclass">Nutrient 文档处理:转换、OCR 与脱敏 - Openclaw Skills</p><div class="blogtime"><span>04/</span>15</div></a> <a href="/wz/361970.html" class="bloga flexRow over"><p class="overflowclass">Elytro Wallet:面向 Openclaw Skills 的 EIP-4337 智能账户管理</p><div class="blogtime"><span>04/</span>15</div></a> <a href="/wz/361971.html" class="bloga flexRow over"><p class="overflowclass">Rho 加密货币组合追踪器:多平台损益与净值 - Openclaw Skills</p><div class="blogtime"><span>04/</span>15</div></a> </div> </div> <div class="cdr-ai"> <div class="jb-titles flexRow"> <div class="jbtle-left flexRow"><b></b><p>AI精选 </p></div> <a class="jbtitle-more flexRow" href="/category/list_344_1.html" title=""><span>更多</span><b></b></a> </div> <div class="ai-list"> <div class="ail-top flexRow"> <a href="/wz/362034.html" title="" class="ailta "> <img src="https://images.jiaoben.net/uploads/20260415/logo_69df21cbac0d91.jpg" > <p ><span>超现实主义高细节图腾堆叠提示</span></p></a> <a href="/wz/362021.html" title="" class="ailta "> <img src="https://images.jiaoben.net/uploads/20260415/logo_69df219ab4c191.jpeg" > <p ><span>Spring AI MCP Se</span></p></a> </div> <div class="ail-down"> <a class="ali-con flexRow" href="/wz/362020.html" title=""> <div class="alicon-left flexRow"><span>精选</span></div> <p class="aliconp overflowclass">Vite内核解析-第4章 插件系统与 Hook 机制</p> </a> <a class="ali-con flexRow" href="/wz/361988.html" title=""> <div class="alicon-left flexRow"><span>精选</span></div> <p class="aliconp overflowclass">悉尼·斯威尼 (Sydney Sweeney) 的超逼真自拍提示词</p> </a> <a class="ali-con flexRow" href="/wz/361965.html" title=""> <div class="alicon-left flexRow"><span>精选</span></div> <p class="aliconp overflowclass">全球 AI 双榜第一!力压谷歌 Veo 与 Grok,Vidu Q3「参考生」之王归来</p> </a> <a class="ali-con flexRow" href="/wz/361955.html" title=""> <div class="alicon-left flexRow"><span>精选</span></div> <p class="aliconp overflowclass">Claude Code设计与实现-第17章 React + Ink 终端 UI</p> </a> <a class="ali-con flexRow" href="/wz/361924.html" title=""> <div class="alicon-left flexRow"><span>精选</span></div> <p class="aliconp overflowclass">风格化异想天开猫脸网格</p> </a> <a class="ali-con flexRow" href="/wz/361916.html" title=""> <div class="alicon-left flexRow"><span>精选</span></div> <p class="aliconp overflowclass">Nano Banana Pro 多帧生活肖像提示词</p> </a> <a class="ali-con flexRow" href="/wz/361864.html" title=""> <div class="alicon-left flexRow"><span>精选</span></div> <p class="aliconp overflowclass">电影感沙漠人像,倚靠车头盖</p> </a> <a class="ali-con flexRow" href="/wz/361834.html" title=""> <div class="alicon-left flexRow"><span>精选</span></div> <p class="aliconp overflowclass">2026年AI Agent开发实战:MCP协议深度解析与多智能体协作架构完全指南</p> </a> </div> </div> </div> <div class="cdr-blog"> <div class="jb-titles flexRow"> <div class="jbtle-left flexRow"><b></b><p>脚本推荐</p></div> </div> <div class="blog-list"> <a href="/wz/zt-49225.html" title="" class="bloga flexRow over"><p class="overflowclass">SeeDance 2.0 Video Creator专区</p></a> <a href="/wz/zt-49224.html" title="" class="bloga flexRow over"><p class="overflowclass">OpenClaw AI专区</p></a> <a href="/wz/zt-49223.html" title="" class="bloga flexRow over"><p class="overflowclass">cowork专区</p></a> <a href="/wz/zt-49222.html" title="" class="bloga flexRow over"><p class="overflowclass">claude code skills专区</p></a> </div> </div> </div> </div> </div> </div> </main> <script> $(function() { // “+ 收藏”按钮点击事件 $(document).on('click', '.htmitem-right, .ztop-right', function(e) { // 仅针对包含 “+ 收藏” 文字的按钮 if ($(this).text().indexOf('+ 收藏') === -1) return; e.preventDefault(); const id = $(this).data('id'); if (!id) { layer.msg('该项暂无有效ID,无法收藏'); return; } // 构造收藏 URL: 当前域名 + /wz/zt- + id + / const bookmarkUrl = window.location.origin + '/wz/zt-' + id + '.html'; // 获取收藏标题 (优先从同级元素获取话题名称,否则使用页面标题) let bookmarkTitle = $(this).closest('.htl-item, .zttopd').find('a:first, span.overflowclass').text().trim() || document.title; if (bookmarkTitle.startsWith('#')) bookmarkTitle = bookmarkTitle.substring(1); // 浏览器收藏逻辑 (带 Fallback) try { if (window.sidebar && window.sidebar.addPanel) { // Firefox < 23 window.sidebar.addPanel(bookmarkTitle, bookmarkUrl, ""); } else if (window.external && ('AddFavorite' in window.external)) { // IE window.external.AddFavorite(bookmarkUrl, bookmarkTitle); } else { // Chrome, Safari, Firefox 23+, etc. const isMac = /Mac/i.test(navigator.userAgent); const keyStr = isMac ? 'Command + D' : 'Ctrl + D'; layer.confirm('由于浏览器安全限制,请使用 <b>' + keyStr + '</b> 手动添加收藏。<br><br>收藏地址:<br><small>' + bookmarkUrl + '</small>', { title: '收藏提示', btn: ['复制链接', '知道了'], yes: function(index) { copyToClipboard(bookmarkUrl).then(() => { layer.msg('链接已复制,请手动添加到收藏夹'); }).catch(() => { layer.msg('复制失败,请手动选择复制'); }); layer.close(index); } }); } } catch (err) { layer.msg('收藏失败,请手动添加'); } }); // 兼容非 HTTPS 的复制函数 function copyToClipboard(text) { if (navigator.clipboard && window.isSecureContext) { return navigator.clipboard.writeText(text); } else { let textArea = document.createElement("textarea"); textArea.value = text; textArea.style.position = "fixed"; textArea.style.left = "-999999px"; textArea.style.top = "-999999px"; document.body.appendChild(textArea); textArea.focus(); textArea.select(); return new Promise((res, rej) => { document.execCommand('copy') ? res() : rej(); textArea.remove(); }); } } }); </script> <footer> <div class="foot "> <div class="foot-top flexRow"> <div class="foot-left"> <div class="ftl-top flexRow"><span class="flexRow flexcenter">脚本</span>在线</div> <p class="ftl-down"> 智能赋能梦想,脚本构筑现实。我们致力于链接AI智能指令 与传统自动化,为您提供一站式、高效率的脚 本资产与生成 服务。 </p> </div> <div class="foot-right flexRow"> <div class="ftr-list flexColumn"> <p>核心板块</p> <span>AI脚本库</span> <span>自动化仓库</span> <span>脚本实验室</span> </div> <div class="ftr-list flexColumn"> <p>关于我们</p> <a href="/category/list_229_1.html" >最新游戏</a> <span>商务合作</span> <span>隐私政策</span> </div> <div class="ftr-list flexColumn"> <p>社区支持</p> <span >API文档</span> <a href="/category/list_334_1.html" >攻略资讯</a> <span>违规举报</span> </div> </div> </div> <div class="foot-down flexColumn"> <p>© 2026 jiaoben.net | 脚本在线 | 联系:jiaobennet2026@163.com</p> <p>备案:<a style="color: #7F7F7F;" href="https://beian.miit.gov.cn/" rel="nofollow" target="_blank">湘ICP备18025217号-11</a> </p> </div> </div> </footer> <div style="display:none;"> <script type="text/javascript"> var _paq = window._paq = window._paq || []; _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function() { var u="//tongji.zhangwan.net/"; _paq.push(['setTrackerUrl', u+'matomo.php']); _paq.push(['setSiteId', '29']); // Add this code below within the Matomo JavaScript tracker code // Important: the tracker url includes the /matomo.php var secondaryTrackerUrl = u+'matomo.php'; var secondaryWebsiteId = 27; // Also send all of the tracking data to this other Matomo server, in website ID 77 _paq.push(['addTracker', secondaryTrackerUrl, secondaryWebsiteId]); // That's it! var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript'; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); })(); </script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?5d3cfe1f36b1988029fe82a0d475b20d"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> </div> </body> </html>