小红书下载器与 AI 摘要 - Openclaw Skills

作者:互联网

2026-04-05

AI教程

什么是 小红书视频下载与摘要工具?

该技能是专为需要存档和分析小红书(RedNote)内容的研究人员和内容创作者设计的强大工具。作为 Openclaw Skills 库的核心部分,它实现了媒体获取全生命周期的自动化,从处理复杂的基于 Cookie 的身份验证到提取高质量的视频和音频文件。

除了简单的下载,该技能还利用先进的处理技术将社交媒体内容转化为结构化数据。它提供了一种生成文本转录和智能摘要的无缝方式,使用户无需观看整个剪辑即可轻松获取长视频洞见。通过利用 Openclaw Skills,开发人员可以以极低的摩擦将此工作流集成到本地环境中,确保所有下载的资产都经过组织并为 AI 驱动的分析做好准备。

下载入口:https://github.com/openclaw/skills/tree/main/skills/smile7up/xiaohongshu-downloader

安装与下载

1. ClawHub CLI

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

npx clawhub@latest install xiaohongshu-downloader

2. 手动安装

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

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

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

3. 提示词安装

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

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

小红书视频下载与摘要工具 应用场景

  • 为研究目的创建高质量小红书视频内容的离线存档。
  • 从小红书帖子中提取音频轨道,用于播客或个人音频库。
  • 自动生成中英双语或本地化转录稿,用于内容翻译。
  • 将冗长的社交媒体视频总结为简洁的 Markdown 报告,便于快速阅读。
  • 自动化收集元数据和字幕,用于数字资产管理系统。
小红书视频下载与摘要工具 工作原理
  1. 扫描本地环境中的必要依赖项(如 yt-dlp 和 ffmpeg),以确保可以进行媒体处理。
  2. 分析提供的小红书 URL,并使用基于浏览器的 Cookie 进行身份验证格式检查。
  3. 下载视频文件并将音频流提取到专用的 MP3 文件中。
  4. 执行三级字幕提取逻辑:首先检查人工字幕,其次是自动生成的字幕,必要时回退到本地 Whisper 转录。
  5. 清理并将字幕文件转换为纯文本 transcript.txt,以便阅读和索引。
  6. 使用 Openclaw Skills 逻辑触发 AI 摘要过程,根据转录稿和元数据生成 summary.md 文件。

小红书视频下载与摘要工具 配置指南

要开始使用此技能,请确保您的环境已准备好必要的媒体工具。当您的系统配置如下时,Openclaw Skills 的运行效果最佳:

# 安装核心依赖项
brew install yt-dlp ffmpeg

# 可选:如果使用 Whisper 转录,安装 uv 进行依赖管理
brew install uv

请确保您已在本地浏览器(推荐使用 Chrome)中登录小红书,以便该技能可以通过 --browser 标志访问内容。

小红书视频下载与摘要工具 数据架构与分类体系

使用此技能时,Openclaw Skills 会为每个处理过的视频在您的下载文件夹中创建一个结构化目录。组织方案如下:

文件名 用途
video.mp4 原始高质量视频文件。
audio.mp3 提取的音频,用于独立收听。
subtitle.vtt WebVTT 格式的时间轴文本轨道。
transcript.txt 视频内容的纯文本展示。
.meta.json 包含标题、时长和来源 URL 的元数据。
summary.md 最终生成的 AI 摘要报告。
name: xiaohongshu-downloader
description: Download and summarize Xiaohongshu (小红书/RedNote) videos. Produces a full resource pack with video, audio, subtitles, transcript, and AI summary. This skill should be used when the user asks to "download xiaohongshu video", "下载小红书视频", "save rednote video", "download from xiaohongshu", "小红书视频下载", "总结小红书视频", "summarize xiaohongshu video", or mentions downloading/summarizing content from xiaohongshu.com or xhslink.com.
version: 2.0.0

Xiaohongshu Video Downloader & Summarizer

Download videos from Xiaohongshu (小红书/RedNote) and optionally generate a full resource pack: video + audio + subtitles + transcript + AI summary.

Workflow

Follow these 6 steps in order:

Step 1: Check Dependencies

Verify required tools are installed:

yt-dlp --version
ffmpeg -version

Both must be available. If missing, instruct the user to install:

  • brew install yt-dlp (macOS) or pip install yt-dlp
  • brew install ffmpeg (macOS)

Step 2: Get Video Information

/opt/homebrew/Caskroom/miniconda/base/envs/myenv/bin/python scripts/download_xiaohongshu.py "URL" --list-formats

This shows available formats and verifies the URL works with cookie authentication.

Step 3: Download Video + Extract Audio

For basic download (video only, backward compatible with v1.0):

/opt/homebrew/Caskroom/miniconda/base/envs/myenv/bin/python scripts/download_xiaohongshu.py "URL"

For full resource pack (video + audio + subtitles + transcript):

/opt/homebrew/Caskroom/miniconda/base/envs/myenv/bin/python scripts/download_xiaohongshu.py "URL" --full

For full resource pack + AI summary preparation:

/opt/homebrew/Caskroom/miniconda/base/envs/myenv/bin/python scripts/download_xiaohongshu.py "URL" --summary

The --full flag creates a folder ~/Downloads/ containing:

  • video.mp4 — original video
  • audio.mp3 — extracted audio
  • subtitle.vtt — WebVTT subtitles (via 3-tier strategy)
  • transcript.txt — plain text transcription

The --summary flag implies --full and additionally saves .meta.json for AI summary generation.

Step 4: Subtitle Acquisition (Automatic — 3-Tier Strategy)

The script automatically tries these strategies in order:

  1. Manual subtitlesyt-dlp --write-subs --sub-lang zh,en,zh-Hans,zh-CN
  2. Auto-generated subtitlesyt-dlp --write-auto-subs
  3. Whisper local transcription — Falls back to parallel_transcribe.py using faster-whisper

Step 5: Generate Transcript (Automatic)

The script automatically strips timestamps from VTT to produce transcript.txt.

Step 6: AI Summary (Claude generates summary.md)

If the user requested a summary (via --summary flag or by asking to "summarize"):

  1. Read the transcript file:

    ~/Downloads/
  2. Read the metadata file:

    ~/Downloads/
  3. Read the summary prompt template:

    reference/summary-prompt.md
    
  4. Replace the template placeholders with actual values:

    • {{TITLE}} — from .meta.json
    • {{URL}} — from .meta.json
    • {{DURATION}} — from .meta.json
    • {{PLATFORM}} — "Xiaohongshu (小红书)"
    • {{TRANSCRIPT}} — contents of transcript.txt
  5. Generate the summary following the template structure.

  6. Save the result to:

    ~/Downloads/

Options Reference

Option Description Default
-o, --output Output directory ~/Downloads
-q, --quality Video quality (best, 1080p, 720p, 480p) best
--browser Browser for cookies (chrome, firefox, safari, none) chrome
-a, --audio-only Download audio only as MP3 false
--list-formats List available formats false
--full Full resource pack mode false
--summary AI summary mode (implies --full) false

Output Structure

Basic mode (default)

~/Downloads/
└──  [<id>].mp4
</CODE></PRE>
<H3 id=full-resource-pack-mode---full-or---summary>Full resource pack mode (<CODE>--full</CODE> or <CODE>--summary</CODE>)</H3><PRE><CODE>~/Downloads/<video title>/
├── video.mp4          # Original video
├── audio.mp3          # Extracted audio
├── subtitle.vtt       # WebVTT subtitles
├── transcript.txt     # Plain text transcript
├── .meta.json         # Video metadata (--summary only)
└── summary.md         # AI-generated summary (--summary only, written by Claude)
</CODE></PRE>
<H2 id=supported-url-formats>Supported URL Formats</H2>
<DIV class=table-scroll-wrapper>
<TABLE>
<THEAD>
<TR>
<TH>Format</TH>
<TH>Example</TH></TR></THEAD>
<TBODY>
<TR>
<TD>Explore link</TD>
<TD><CODE>https://www.xiaohongshu.com/explore/676a35670000000013002578</CODE></TD></TR>
<TR>
<TD>Discovery link</TD>
<TD><CODE>https://www.xiaohongshu.com/discovery/item/676a35670000000013002578?xsec_token=TOKEN</CODE></TD></TR>
<TR>
<TD>Short link</TD>
<TD><CODE>http://xhslink.com/a/xxxxx</CODE></TD></TR></TBODY></TABLE></DIV>
<H2 id=troubleshooting>Troubleshooting</H2>
<DIV class=table-scroll-wrapper>
<TABLE>
<THEAD>
<TR>
<TH>Problem</TH>
<TH>Solution</TH></TR></THEAD>
<TBODY>
<TR>
<TD><CODE>No video formats found</CODE></TD>
<TD>Log into xiaohongshu.com in browser first, use <CODE>--browser chrome</CODE></TD></TR>
<TR>
<TD><CODE>Unable to extract initial state</CODE></TD>
<TD>CAPTCHA triggered — open URL in browser, solve it, retry</TD></TR>
<TR>
<TD>Link expired</TD>
<TD>Copy fresh share link (tokens expire)</TD></TR>
<TR>
<TD>No subtitles found</TD>
<TD>Script will fall back to Whisper transcription automatically</TD></TR>
<TR>
<TD>Whisper not available</TD>
<TD>Install uv (<CODE>brew install uv</CODE>) for automatic dependency management</TD></TR></TBODY></TABLE></DIV>
<H2 id=important-notes>Important Notes</H2>
<UL>
<LI>Always use the <STRONG>full share URL</STRONG> (with <CODE>xsec_token</CODE>) for best results</LI>
<LI>Log into xiaohongshu.com in your browser before downloading</LI>
<LI>Maximum video quality is typically 1080p (platform limitation)</LI>
<LI>Whisper transcription requires <CODE>uv</CODE> for automatic dependency management, or <CODE>faster-whisper</CODE> installed manually</LI>
<LI>Respect copyright and Xiaohongshu's terms of service</LI></UL>                                                        
                             
                           </div>
														                            <div class="lastanext flexRow">
							 							 							  <a class="lastart flexRow"  href="/wz/339507.html"  ><span>上一篇:</span><span>Gemini 助手:AI 语音与文本支持 - Openclaw Skills</span></a>
							 							 
                             							                                 <a class="nextart flexRow"  href="/wz/339509.html" ><span>下一篇:</span><span>免费图像生成技能:AI 文本转图像工作流 - Openclaw Skills</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/360329.html"  >
                                                                                        <img src="/jiaoben/image/noimg.png" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/360329.html"  >Skill Flag:保护您的 AI 智能体 - Openclaw 技能安全审计</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/360329.html"  >
                                                                                                                                     什么是 Skill Flag 安全扫描器?
Skill Flag 是一款高性能安全审计工具,专门为保护使用 Openclaw 技能的开发者免受恶意代码和漏洞侵害而设计。通过对技能源代码进行深度静态分析,它可以
                                                                                                                </a>
                                            </div>
                                        </div>
									
                                        <div class="tjimd-down flexRow">
                                            <div class="imdd-tab flexRow">
                                                <p class="imddt-time flexRow"><b></b><span>2026-04-14</span></p>
                                                
                                            </div>
                                            <a  href="/wz/360329.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/360327.html"  >
                                                                                        <img src="/jiaoben/image/noimg.png" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/360327.html"  >Home Assistant:智能家居自动化与控制 - Openclaw Skills</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/360327.html"  >
                                                                                                                                     什么是 Home Assistant?
Home Assistant 技能允许您的 AI 代理与您的智能家居生态系统直接交互。通过利用 Home Assistant REST API,此技能能够查询设备状态并在
                                                                                                                </a>
                                            </div>
                                        </div>
									
                                        <div class="tjimd-down flexRow">
                                            <div class="imdd-tab flexRow">
                                                <p class="imddt-time flexRow"><b></b><span>2026-04-14</span></p>
                                                
                                            </div>
                                            <a  href="/wz/360327.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/360325.html"  >
                                                                                        <img src="/jiaoben/image/noimg.png" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/360325.html"  >代码任务生成器:自动化 AI 编码工作流 - Openclaw Skills</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/360325.html"  >
                                                                                                                                     什么是 代码任务生成器?
代码任务生成器是 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-14</span></p>
                                                
                                            </div>
                                            <a  href="/wz/360325.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/360324.html"  >
                                                                                        <img src="/jiaoben/image/noimg.png" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/360324.html"  >playwriter:持久化浏览器自动化与 UI 测试 - Openclaw Skills</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/360324.html"  >
                                                                                                                                     什么是 playwriter?
playwriter 是一种专门的自动化技能,旨在弥合无头脚本与真实浏览器环境之间的差距。通过利用持久的本地 Chrome 会话,此技能允许执行 Playwright Pag
                                                                                                                </a>
                                            </div>
                                        </div>
									
                                        <div class="tjimd-down flexRow">
                                            <div class="imdd-tab flexRow">
                                                <p class="imddt-time flexRow"><b></b><span>2026-04-14</span></p>
                                                
                                            </div>
                                            <a  href="/wz/360324.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/339514.html"  >
                                                                                     <img src="/jiaoben/image/noimg.png" >
                                                                                    </a>
                                    <div class="wktpa-right flexColumn">
                                        <a class="wktpara flexRow overflowclass"  href="/wz/339514.html"  >CCO:AI 驱动的客户成功与保留策略 - Openclaw Skills</a>
                                        <a class="wktparp flexRow overflowclass"  href="/wz/339514.html"  >
                                                                                            什么是 CCO / 首席客户官?
                                                                                        
                                        </a>
                                    </div>
                                </div>
								
															
															
															
															
															
															
															
															
															
								
                                <div class="weekch-list">
                                										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/339513.html"  class="weekcha flexRow flexcenter overflowclass" >uv-priority:加速 Python 包管理 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/339512.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/339511.html"  class="weekcha flexRow flexcenter overflowclass" >M365 Spam Manager:自动化 Outlook 垃圾邮件过滤 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/339510.html"  class="weekcha flexRow flexcenter overflowclass" >Hostinger VPS 优化助手:性能与成本优化 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/339506.html"  class="weekcha flexRow flexcenter overflowclass" >网络调研助手:自动化市场情报 - Openclaw 技能</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/339505.html"  class="weekcha flexRow flexcenter overflowclass" >28-模块四-AI代码审核实战 第28讲-代码质量评分体系 - 可维护性 可读性 可测试性的量化指标</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/339504.html"  class="weekcha flexRow flexcenter overflowclass" >34-模块五-AI系统架构设计 第34讲-RAG 架构深度优化 - 分块策略 混合检索 重排序在代码场景的实践</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/339503.html"  class="weekcha flexRow flexcenter overflowclass" >40-模块六-架构演进与团队协作 第40讲-团队 AI 协作模式 - Code Review 工作流 AI 编码规范的推广策略</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/339502.html"  class="weekcha flexRow flexcenter overflowclass" >程序员转行学习 AI 大模型: RAG(检索增强生成)| 附清晰业务流程示例</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/360317.html"   class="bloga flexRow over"><p class="overflowclass">网页搜索:实时互联网信息检索 - Openclaw Skills</p><div class="blogtime"><span>04/</span>14</div></a>
							                                <a  href="/wz/360318.html"   class="bloga flexRow over"><p class="overflowclass">Muninn Memory:本地优先的 AI 智能体记忆系统 - Openclaw Skills</p><div class="blogtime"><span>04/</span>14</div></a>
							                                <a  href="/wz/360319.html"   class="bloga flexRow over"><p class="overflowclass">Openclaw Agent Token 优化器:用于减少 Token 的 AI 技能 - Openclaw Skills</p><div class="blogtime"><span>04/</span>14</div></a>
							                                <a  href="/wz/360320.html"   class="bloga flexRow over"><p class="overflowclass">能力感知系统:自动化技能发现 - Openclaw Skills</p><div class="blogtime"><span>04/</span>14</div></a>
							                                <a  href="/wz/360322.html"   class="bloga flexRow over"><p class="overflowclass">版本更新:自动化 Rust 版本管理与 CI/CD - Openclaw Skills</p><div class="blogtime"><span>04/</span>14</div></a>
							                                <a  href="/wz/360324.html"   class="bloga flexRow over"><p class="overflowclass">playwriter:持久化浏览器自动化与 UI 测试 - Openclaw Skills</p><div class="blogtime"><span>04/</span>14</div></a>
							                                <a  href="/wz/360325.html"   class="bloga flexRow over"><p class="overflowclass">代码任务生成器:自动化 AI 编码工作流 - Openclaw Skills</p><div class="blogtime"><span>04/</span>14</div></a>
							                                <a  href="/wz/360327.html"   class="bloga flexRow over"><p class="overflowclass">Home Assistant:智能家居自动化与控制 - Openclaw Skills</p><div class="blogtime"><span>04/</span>14</div></a>
							                                <a  href="/wz/360329.html"   class="bloga flexRow over"><p class="overflowclass">Skill Flag:保护您的 AI 智能体 - Openclaw 技能安全审计</p><div class="blogtime"><span>04/</span>14</div></a>
							                                <a  href="/wz/360303.html"   class="bloga flexRow over"><p class="overflowclass">Readme Writer: 自动生成 README - Openclaw Skills</p><div class="blogtime"><span>04/</span>14</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/360381.html"  title="" class="ailta ">
                                                                        <img src="https://images.jiaoben.net/uploads/20260414/logo_69ddd787f1d0a1.jpg" >
                                                                        <p ><span>生成 2000 年代日本郊区氛围的</span></p></a>
																								                                <a  href="/wz/360336.html"  title="" class="ailta ">
                                                                        <img src="https://images.jiaoben.net/uploads/20260414/logo_69ddd4f1c8f061.jpg" >
                                                                        <p ><span>高对比度影棚人像,采用青橙色</span></p></a>
																																																																																																																																																                               
                            </div>
                            <div class="ail-down">
																																																						<a class="ali-con flexRow"  href="/wz/360296.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">电影感铺床场景提示词</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/360252.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">LangGraph 入门到精通0x00:HelloLangGraph</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/360251.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">Agent 开发进阶(十三):后台任务系统,让慢命令不阻塞主循环</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/360250.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">AI Streaming 架构:从浏览器到服务端的全链路流式设计</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/360249.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">Claude Code Skill 系统:懒加载的 Agent 行动说明</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/360248.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">Adaptive Thinking 的代价:当 AI 自己决定"想多少"</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/360247.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">一些容易混淆的点(个人记录)</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/360241.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">电影感霓虹灯光街头风肖像</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>