任务监督器:管理长期运行的智能体任务 - Openclaw Skills

作者:互联网

2026-04-03

AI教程

什么是 任务监督器?

任务监督器是一个专门设计的技能,用于处理需要较长执行时间的复杂多步操作。通过将标准的智能体交互转换为托管工作流,它确保了高延迟任务(如多领域研究、大规模部署或隔夜处理)能够可靠地处理而不会丢失进度。该技能是 Openclaw Skills 生态系统的核心组件,为智能体作为独立工作者运行提供了所需的自主性。

其核心在于状态持久化和透明度。它为每个大型任务创建结构化文档,将目标分解为可操作的步骤,并维护发现和错误的实时日志。这使得 AI 智能体能够从失败中恢复,从特定检查点恢复,并在任务的整个生命周期内让用户保持知情,而无需持续的人工监督。

下载入口:https://github.com/openclaw/skills/tree/main/skills/mashirops/task-supervisor

安装与下载

1. ClawHub CLI

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

npx clawhub@latest install task-supervisor

2. 手动安装

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

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

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

3. 提示词安装

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

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

任务监督器 应用场景

  • 管理需要超过 20 分钟运行时间或 5 个以上独立步骤的复杂软件部署。
  • 执行“隔夜”任务,用户需要在第二天早上在消息应用中收到摘要。
  • 协调跨领域工作流,如同步进行网络研究、技术写作和云部署。
  • 为使用子智能体完成模块化目标的多智能体工作流实现持久化状态。
  • 跟踪涉及多个大型文档或数据集综合的研究项目的进度。
任务监督器 工作原理
  1. 识别:智能体评估传入的请求,根据时间、步骤计数或特定的用户触发词(如“慢慢来”)来确定其是否符合“大型”任务的标准。
  2. 任务初始化:在 .tasks/ 目录中创建一个专用的 markdown 文件,使用短斜杠命名的 slug 进行持久化跟踪。
  3. 分解:高层目标在任务文件中被分解为带编号的步骤列表。
  4. 定时任务创建:通过 CLI 初始化一个后台定时任务(cron job),以触发向用户发送的定期状态报告。
  5. 执行与更新:智能体按顺序执行每个步骤,在每次操作后立即用时间戳和关键发现更新 markdown 复选框和日志。
  6. 报告:在设定的时间间隔,智能体读取任务文件并向用户发送简明摘要。
  7. 完成:所有步骤完成后,智能体生成最终结果摘要,将状态设置为完成,并删除报告定时任务。

任务监督器 配置指南

要将任务监督器集成到您的工作流中,请确保您的环境支持目录管理和定时任务调度。该技能在 Openclaw Skills 框架内运行,并使用标准 CLI 命令进行自动化。要手动为长期运行的任务初始化报告间隔,可以使用以下 bash 命令:

openclaw cron add "task-report-" r
  --schedule "*/15 * * * *" r
  --message "读取 .tasks/.md 并发送进度更新。包括:已完成步骤、当前步骤以及任何阻塞因素。" r
  --once-complete

确保您的智能体对项目根目录中的 .tasks/ 文件夹具有读/写权限。

任务监督器 数据架构与分类体系

任务监督器技能使用整洁的、基于 markdown 的分类法组织数据,以实现最大程度的人机可读性:

组件 详情
存储路径 .tasks/.md
文件格式 带有状态、开始时间和最后更新元数据的 Markdown (GFM)
状态 in_progress (进行中), paused (已暂停), done (完成), failed (失败)
步骤跟踪 GFM 复选框:[ ] (待处理), [x] (完成), [!] (失败)
日志结构 包含 ISO 时间戳和技术摘要的时间顺序条目
元数据 包括估计步骤数和最终结果摘要
name: task-supervisor
description: Self-supervising long-running task manager with progress tracking and periodic status reports. Only activate for LARGE tasks — do NOT activate for quick or simple tasks. Activate when ALL of these are true: (1) Task has 5+ distinct steps OR estimated time >20 minutes, AND (2) at least one of: user says "take your time / do this overnight / finish by yourself / keep me posted", task requires sub-agents or cron jobs, task spans multiple tool calls across different domains (e.g. research + write + deploy). Do NOT activate for: single-step requests, quick searches, short code edits, simple Q&A, file reads, summarization of one document.

Task Supervisor

Manage long-running tasks with checkpoints, progress files, and periodic WhatsApp reports.

Is This a Large Task?

Before doing anything else, mentally check:

Signal Large?
Steps ≥ 5 OR time > 20 min ? Yes
User says "take your time / overnight / keep me posted" ? Yes
Needs sub-agent + cron + multiple domains ? Yes
Single tool call, quick search, short edit, Q&A ? No — skip this skill entirely
"Help me write X" (one doc, one sitting) ? No
"Search for Y and summarize" (few minutes) ? No

If not large → respond normally, skip task files and crons entirely.

On Task Start

When you receive a large task, immediately:

  1. Create a task file at .tasks/.md (use kebab-case slug)
  2. Decompose the task into numbered steps
  3. Spawn a reporter cron to send progress updates
  4. Begin execution, updating the file after each step

Task File Format

# Task: 

**Started**: <ISO timestamp>
**Status**: in_progress | paused | done | failed
**Estimated Steps**: N
**Last Updated**: <ISO timestamp>

## Steps

- [ ] 1. First step
- [ ] 2. Second step
- [x] 3. Completed step ? (2026-03-02T22:05:00+08:00)
- [!] 4. Failed step — <error summary>

## Log

### Step 3 — 2026-03-02T22:05:00+08:00
Result or notes here.

### Error — 2026-03-02T22:07:00+08:00
What failed and how it was handled.

## Result

(Fill when done — final summary for the user)
</CODE></PRE>
<H2 id=during-execution>During Execution</H2>
<P>After <STRONG>every step</STRONG> (success or failure):</P>
<UL>
<LI>Update the checkbox in Steps (<CODE>[x]</CODE> done, <CODE>[!]</CODE> failed)</LI>
<LI>Append a Log entry with timestamp and key findings</LI>
<LI>Update <CODE>Last Updated</CODE> timestamp</LI></UL>
<P>On failure:</P>
<UL>
<LI>Mark step <CODE>[!]</CODE> with error summary</LI>
<LI>Try an alternative approach if obvious</LI>
<LI>If truly stuck, set Status to <CODE>paused</CODE> and note what's needed</LI></UL>
<H2 id=progress-reporting-cron>Progress Reporting (Cron)</H2>
<P>At task start, spawn a cron reporter using <CODE>exec</CODE>:</P><PRE><CODE class=language-bash>openclaw cron add "task-report-<SLUG>" r
  --schedule "*/15 * * * *" r
  --message "Read .tasks/<SLUG>.md and send a Feishu message to the user with progress update. Include: completed steps, current step, blockers if any. Keep it under 5 sentences. Remove this cron when Status=done or Status=failed." r
  --once-complete
</CODE></PRE>
<P>Adjust interval based on task scope:</P>
<UL>
<LI>Quick task (<30 min): every 10 min</LI>
<LI>Medium task (30 min–2 hr): every 15 min </LI>
<LI>Long task (>2 hr): every 30 min</LI></UL>
<H2 id=on-task-completion>On Task Completion</H2>
<OL>
<LI>Fill in <CODE>## Result</CODE> section with a clear summary</LI>
<LI>Set <CODE>Status: done</CODE></LI>
<LI>Send a final Feishu message: task name, what was accomplished, any caveats</LI>
<LI>Remove the progress cron</LI></OL>
<H2 id=on-task-failure--getting-stuck>On Task Failure / Getting Stuck</H2>
<OL>
<LI>Set <CODE>Status: paused</CODE></LI>
<LI>Document exactly what was tried and what's blocked</LI>
<LI>Send Feishu message alert immediately (don't wait for cron)</LI>
<LI>Do NOT silently stop — always notify</LI></OL>
<H2 id=resuming-a-paused-task>Resuming a Paused Task</H2>
<P>When asked to continue a task:</P>
<OL>
<LI>Read <CODE>.tasks/<SLUG>.md</CODE></LI>
<LI>Find the last completed step</LI>
<LI>Continue from there</LI>
<LI>Re-spawn reporter cron if needed</LI></OL>
<H2 id=multi-task-awareness>Multi-Task Awareness</H2>
<P>If multiple tasks are running, maintain separate files per task. On heartbeat, check <CODE>.tasks/</CODE> for any <CODE>in_progress</CODE> tasks and include a brief status in heartbeat responses.</P>
<H2 id=quick-reference>Quick Reference</H2>
<DIV class=table-scroll-wrapper>
<TABLE>
<THEAD>
<TR>
<TH>Situation</TH>
<TH>Action</TH></TR></THEAD>
<TBODY>
<TR>
<TD>Task assigned</TD>
<TD>Create file, decompose, spawn cron, start</TD></TR>
<TR>
<TD>Step done</TD>
<TD>Update <CODE>[x]</CODE>, append log</TD></TR>
<TR>
<TD>Step failed</TD>
<TD>Mark <CODE>[!]</CODE>, try alternative, log error</TD></TR>
<TR>
<TD>Truly stuck</TD>
<TD>Set <CODE>paused</CODE>, WhatsApp alert immediately</TD></TR>
<TR>
<TD>Task complete</TD>
<TD>Fill Result, set <CODE>done</CODE>, final message, remove cron</TD></TR>
<TR>
<TD>Asked for update</TD>
<TD>Read task file, summarize current state</TD></TR></TBODY></TABLE></DIV>                                                        
                             
                           </div>
														                            <div class="lastanext flexRow">
							 							 							  <a class="lastart flexRow"  href="/wz/345444.html"  ><span>上一篇:</span><span>官方文档转 MDX:文档存档与标准化 - Openclaw Skills</span></a>
							 							 
                             							                                 <a class="nextart flexRow"  href="/wz/345446.html" ><span>下一篇:</span><span>AI LinkedIn 代笔人:30 天病毒式传播内容引擎 - 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/366229.html"  >
                                                                                        <img src="https://images.jiaoben.net/uploads/20260417/logo_69e22831e66ae1.jpg" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/366229.html"  >什么是阿里云AI通用型节省计划?AI大模型节省计划Tokens如何计费?</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/366229.html"  >
                                                                                                                                     阿里云AI通用型节省计划是面向大模型按量付费的计费优化机制,AI权益中心:https://t.aliyun.com/U/0QpP7a 用户承诺月消费金额(如200元/年),即可享受阶梯折扣(最高5.3折),自动抵扣模型调用、Tokens、工具调用等费用,覆盖全部阿里直供模型,不提供固定Token额度,需与按量付费配合使用。
                                                                                                                </a>
                                            </div>
                                        </div>
									
                                        <div class="tjimd-down flexRow">
                                            <div class="imdd-tab flexRow">
                                                <p class="imddt-time flexRow"><b></b><span>2026-04-17</span></p>
                                                
                                            </div>
                                            <a  href="/wz/366229.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/366228.html"  >
                                                                                        <img src="https://images.jiaoben.net/uploads/20260417/logo_69e22817c13e01.jpg" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/366228.html"  >Tokens是什么?AI大模型中的Token是干什么的?开通百炼可以免费领取7000万Tokens</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/366228.html"  >
                                                                                                                                     Token是大模型处理文本的基本单位,中文约0.75字/Token。阿里云百炼新用户可免费领7000万Token,开通领取:https://t.aliyun.com/U/fPVHqY 覆盖百余款千问模型,有效期90天。相当于可写2.3万篇文章、4.7万次对话或处理933份百页文档,价值数百元,助力开发者低成本开启AI应用。
                                                                                                                </a>
                                            </div>
                                        </div>
									
                                        <div class="tjimd-down flexRow">
                                            <div class="imdd-tab flexRow">
                                                <p class="imddt-time flexRow"><b></b><span>2026-04-17</span></p>
                                                
                                            </div>
                                            <a  href="/wz/366228.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/366226.html"  >
                                                                                        <img src="/jiaoben/image/noimg.png" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/366226.html"  >AI 英语教育 APP 的开发</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/366226.html"  >
                                                                                                                                     AI英语APP已升级为全天候虚拟私教:依托端到端语音大模型与多模态感知,实现超低延迟真人对话、苏格拉底式启发教学、音素级纠音、5万+沉浸场景、自适应学习档案及游戏化社交。2026年核心竞争力在于“流畅度”与“深度反馈”。
                                                                                                                </a>
                                            </div>
                                        </div>
									
                                        <div class="tjimd-down flexRow">
                                            <div class="imdd-tab flexRow">
                                                <p class="imddt-time flexRow"><b></b><span>2026-04-17</span></p>
                                                
                                            </div>
                                            <a  href="/wz/366226.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/366170.html"  >
                                                                                        <img src="https://images.jiaoben.net/uploads/20260417/logo_69e224a5ea87e1.png" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/366170.html"  >Claude 开始进桌面之后,AI 系统的测试边界是不是又变了?</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/366170.html"  >
                                                                                                                                     AI正从“问答工具”跃升为“操作执行者”,深度融入桌面、办公与企业系统。对测试而言,边界已从结果验证扩展至过程、环境、风险与长期稳定性验证——传统功能测试失效,亟需构建覆盖任务链路、异常恢复、安全可控的AI专属测试框架。
                                                                                                                </a>
                                            </div>
                                        </div>
									
                                        <div class="tjimd-down flexRow">
                                            <div class="imdd-tab flexRow">
                                                <p class="imddt-time flexRow"><b></b><span>2026-04-17</span></p>
                                                
                                            </div>
                                            <a  href="/wz/366170.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-69351.html"  >#数据可视化</a>
                                            <span></span>
                                        </div>
                                        <a class="htiteml-down flexRow" href="/wz/zt-69351.html"  >数据可视化(Data Visu</a>
                                    </div>
                                    <p class="htmitem-right flexRow flexcenter gz" data-id="69351"  >+ 收藏</p>
                                </div>
							                                <div class="htl-item flexRow">
                                    <div class="htmitem-left">
                                        <div class="htiteml-top flexRow">
                                            <a href="/wz/zt-69342.html"  >#自然语言处理</a>
                                            <span></span>
                                        </div>
                                        <a class="htiteml-down flexRow" href="/wz/zt-69342.html"  >自然语言处理(Natural</a>
                                    </div>
                                    <p class="htmitem-right flexRow flexcenter gz" data-id="69342"  >+ 收藏</p>
                                </div>
							                                <div class="htl-item flexRow">
                                    <div class="htmitem-left">
                                        <div class="htiteml-top flexRow">
                                            <a href="/wz/zt-68363.html"  >#Excel公式</a>
                                            <span></span>
                                        </div>
                                        <a class="htiteml-down flexRow" href="/wz/zt-68363.html"  >Excel公式就是:用函数 +</a>
                                    </div>
                                    <p class="htmitem-right flexRow flexcenter gz" data-id="68363"  >+ 收藏</p>
                                </div>
							                                <div class="htl-item flexRow">
                                    <div class="htmitem-left">
                                        <div class="htiteml-top flexRow">
                                            <a href="/wz/zt-68355.html"  >#Excel技巧</a>
                                            <span></span>
                                        </div>
                                        <a class="htiteml-down flexRow" href="/wz/zt-68355.html"  >Excel是日常生活中必不可</a>
                                    </div>
                                    <p class="htmitem-right flexRow flexcenter gz" data-id="68355"  >+ 收藏</p>
                                </div>
							                                <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-68000.html"  >#人工智能</a>
                                            <span></span>
                                        </div>
                                        <a class="htiteml-down flexRow" href="/wz/zt-68000.html"  >人工智能(AI),简单说,就</a>
                                    </div>
                                    <p class="htmitem-right flexRow flexcenter gz" data-id="68000"  >+ 收藏</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/345451.html"  >
                                                                                     <img src="/jiaoben/image/noimg.png" >
                                                                                    </a>
                                    <div class="wktpa-right flexColumn">
                                        <a class="wktpara flexRow overflowclass"  href="/wz/345451.html"  >Ibiza:专业旅游、工作与商务指南 - Openclaw Skills</a>
                                        <a class="wktparp flexRow overflowclass"  href="/wz/345451.html"  >
                                                                                            什么是 Ibiza AI 旅游与
                                                                                        
                                        </a>
                                    </div>
                                </div>
								
															
															
															
															
															
															
															
															
															
								
                                <div class="weekch-list">
                                										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/345450.html"  class="weekcha flexRow flexcenter overflowclass" >Facebook 公共主页:自动化发帖与评论管理 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/345449.html"  class="weekcha flexRow flexcenter overflowclass" >English-Dict:CLI 语言翻译工具 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/345448.html"  class="weekcha flexRow flexcenter overflowclass" >RSS 每日摘要:自动化 AI 新闻聚合器 - Openclaw 技能</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/345447.html"  class="weekcha flexRow flexcenter overflowclass" >DTC 广告助手:优化 ROAS 与电商规模化 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/345442.html"  class="weekcha flexRow flexcenter overflowclass" >抖音转照片:通过苹果快捷指令实现视频自动存档 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/345441.html"  class="weekcha flexRow flexcenter overflowclass" >Openclaw X 文章封面生成器:品牌化 AI 图像创建 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/345440.html"  class="weekcha flexRow flexcenter overflowclass" >咨询:实务管理与提案自动化 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/345439.html"  class="weekcha flexRow flexcenter overflowclass" >Tado:智能供暖与分区控制 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/345438.html"  class="weekcha flexRow flexcenter overflowclass" >Common Core ELA 标准检查器:K-12 对齐工具 - Openclaw Skills</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/359462.html"   class="bloga flexRow over"><p class="overflowclass">代理状态:监控支付意图和交易 - Openclaw Skills</p><div class="blogtime"><span>04/</span>17</div></a>
							                                <a  href="/wz/359463.html"   class="bloga flexRow over"><p class="overflowclass">Proxy MCP:AI 智能体支付与虚拟卡 - Openclaw Skills</p><div class="blogtime"><span>04/</span>17</div></a>
							                                <a  href="/wz/359464.html"   class="bloga flexRow over"><p class="overflowclass">Apify Ultimate Scraper: AI 网页数据抓取 - Openclaw Skills</p><div class="blogtime"><span>04/</span>17</div></a>
							                                <a  href="/wz/359465.html"   class="bloga flexRow over"><p class="overflowclass">加密诈骗检测器:实时欺诈预防 - Openclaw Skills</p><div class="blogtime"><span>04/</span>17</div></a>
							                                <a  href="/wz/359466.html"   class="bloga flexRow over"><p class="overflowclass">newsmcp: 实时 AI 新闻聚合与过滤 - Openclaw Skills</p><div class="blogtime"><span>04/</span>17</div></a>
							                                <a  href="/wz/359467.html"   class="bloga flexRow over"><p class="overflowclass">Moltbook 优化器:策略与排名精通 - Openclaw 技能</p><div class="blogtime"><span>04/</span>17</div></a>
							                                <a  href="/wz/359468.html"   class="bloga flexRow over"><p class="overflowclass">Frigate NVR:智能摄像机管理与自动化 - Openclaw Skills</p><div class="blogtime"><span>04/</span>17</div></a>
							                                <a  href="/wz/359469.html"   class="bloga flexRow over"><p class="overflowclass">Markdown 检查器:样式、链接和格式工具 - Openclaw Skills</p><div class="blogtime"><span>04/</span>17</div></a>
							                                <a  href="/wz/359470.html"   class="bloga flexRow over"><p class="overflowclass">Venice.ai 至尊路由:私密且无审查的模型路由 - Openclaw Skills</p><div class="blogtime"><span>04/</span>17</div></a>
							                                <a  href="/wz/359472.html"   class="bloga flexRow over"><p class="overflowclass">图片优化器:使用 Openclaw Skills 压缩和调整图片尺寸</p><div class="blogtime"><span>04/</span>17</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/366175.html"  title="" class="ailta ">
                                                                        <img src="https://images.jiaoben.net/uploads/20260417/logo_69e224cf789341.jpg" >
                                                                        <p ><span>赛博朋克 K-Pop 动画</span></p></a>
																								                                <a  href="/wz/366174.html"  title="" class="ailta ">
                                                                        <img src="https://images.jiaoben.net/uploads/20260417/logo_69e224c9eb4481.jpg" >
                                                                        <p ><span>冰川星球大逃亡</span></p></a>
																																																																																																																																																                               
                            </div>
                            <div class="ail-down">
																																																						<a class="ali-con flexRow"  href="/wz/366173.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">皮克斯/迪士尼风格 X (Twitter) 个人资料卡片提示</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/366167.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">蝴蝶群化作空灵舞者循环动画</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/366165.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">抱着泰迪熊的男士写实肖像</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/366163.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">滑雪旅行自拍视角提示</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/366152.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">天鹅绒运动服中的超逼真肖像</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/366136.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">外卖配送狂奔电影感提示词</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/365746.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">MCP协议设计与实现-第13章 Streamable HTTP:远程流式传输</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/365745.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">从零开发一个 MCP 服务器 + OpenCode Skill:让 AI 学会审查你的代码</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>