失败记忆:防止重复错误 - Openclaw 技能

作者:互联网

2026-04-04

AI教程

什么是 失败记忆?

失败记忆是一个强大的框架,用于在 AI 开发环境中记录、分析技术挫折并从中学习。通过系统地记录每一个错误、根本原因和解决方案,该技能确保 Openclaw 技能能够持久记忆“哪里出了错”以及“如何修复”。它将被动的错误日志转化为主动的知识库,智能体可以查询该库以避免两次掉入同样的陷阱。

该技能对于复杂的开发周期尤其有价值,因为在这些周期中,特定环境的漏洞或依赖冲突经常重复出现。通过将失败记忆集成到您的 Openclaw 技能组中,您可以创建一个自我改进的闭环,其中每一个已解决的工单或失败的部署都能增强智能体成功应对未来挑战的能力。

下载入口:https://github.com/openclaw/skills/tree/main/skills/voidlight00/failure-memory-log

安装与下载

1. ClawHub CLI

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

npx clawhub@latest install failure-memory-log

2. 手动安装

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

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

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

3. 提示词安装

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

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

失败记忆 应用场景

  • 自动记录 Shell 命令失败,以记录特定环境的修复方案。
  • 在开始新的迁移或部署之前进行任务前历史检查,以识别已知陷阱。
  • 生成结构化的失败报告,以识别软件架构中的系统性弱点。
  • 追踪仅在特定网络或数据条件下出现的重复性 API 集成问题。
失败记忆 工作原理
  1. 检测:智能体识别任务失败或命令执行返回的非零退出代码。
  2. 记录:该技能记录一条结构化条目,包括类别、上下文、准确的错误信息以及发现的具体根本原因。
  3. 文档化:记录中会添加解决方案和预防策略,以指导未来的交互。
  4. 搜索:在开始新操作之前,智能体使用与当前任务相关的关键词搜索 failures.md 文件。
  5. 预防:如果找到匹配项,智能体会根据记录的预防提示提醒用户或调整其计划。

失败记忆 配置指南

要为这些 Openclaw 技能初始化跟踪环境,请执行技能目录中提供的初始化脚本:

bash scripts/init.sh ./memory

这将创建必要的目录结构和 failures.md 日志文件,所有未来的错误模式都将存储在此处。

失败记忆 数据架构与分类体系

该技能将其历史数据组织在一个结构化的 Markdown 文件中,以确保与标准 CLI 工具和 Openclaw 技能兼容。

字段 描述
类别 高层分类(如构建、部署、权限、逻辑)
上下文 智能体当时尝试执行的操作的详细描述
错误 失败期间观察到的逐字错误信息或症状
根本原因 导致错误发生的根本技术原因
解决方案 解决问题的具体修复方法
预防措施 避免在未来会话中出现该错误的可操作建议
标签 用于优化关键词和语义搜索的关键词
name: failure-memory
description: "Automatic failure pattern recording and recall system. Prevents repeating the same mistakes by logging errors with context, root cause, and resolution. Use when: (1) a command/task fails and you want to record why, (2) starting a new task and want to check for known pitfalls, (3) reviewing accumulated failure patterns for learning, (4) agent makes an error and needs to log it for future prevention. Triggers: 'log failure', 'check failures', 'failure report', 'what went wrong', 'mistake log', or any error/failure during agent work."

Failure Memory

Record failures. Learn from them. Never repeat them.

Core Concept

Every failure has three parts:

  1. What happened (error message, symptom)
  2. Why it happened (root cause)
  3. How to fix/avoid it (resolution)

This skill stores them in a searchable markdown file and provides a recall mechanism before starting similar tasks.

File Structure

memory/
└── failures.md      # All failure records (append-only log)

Recording a Failure

When an error occurs during work, append to memory/failures.md:

## [YYYY-MM-DD HH:mm] 

- **Category:** 
- **Context:** 
- **Error:** ``
- **Root Cause:** 
- **Resolution:** 
- **Prevention:** 
- **Tags:** 

When to Record

Record AUTOMATICALLY when:

  • A shell command exits non-zero and you identify why
  • An API call fails and you find the cause
  • A config/setup step fails and you resolve it
  • You catch yourself repeating a previously-solved mistake
  • A sub-agent reports an error with resolution

Do NOT record:

  • Transient network timeouts (unless pattern emerges)
  • Intentional test failures
  • User-cancelled operations

Pre-Task Recall

Before starting any significant task, search failures for relevant history:

grep -i "" memory/failures.md

Or use memory_search if vector search is available:

memory_search query=" failure error"

If matches found, mention them briefly:

?? Known pitfall: [title] — [prevention tip]

Failure Report

When asked for a failure report or review, generate a summary:

  1. Read memory/failures.md
  2. Group by category
  3. Identify repeat patterns (same root cause appearing multiple times)
  4. Suggest systemic fixes for patterns

Report Format

# Failure Report — YYYY-MM-DD

## Stats
- Total: N failures recorded
- Top category:  (N occurrences)
- Repeat offenders: N patterns seen 2+ times

## Repeat Patterns
### 
- Seen: N times
- Root cause: 
- Systemic fix: 

## Recent Failures (last 7 days)
- [date]  — <resolution>
</CODE></PRE>
<H2 id=initialization>Initialization</H2>
<P>Run <CODE>scripts/init.sh</CODE> to set up the failures file:</P><PRE><CODE class=language-bash>bash scripts/init.sh [memory_dir]
</CODE></PRE>
<P>Default memory_dir: <CODE>./memory</CODE></P>
<H2 id=best-practices>Best Practices</H2>
<OL>
<LI><STRONG>Be specific</STRONG> — "EACCES on /var/run/docker.sock" beats "permission error"</LI>
<LI><STRONG>Include the exact error</STRONG> — Future grep depends on it</LI>
<LI><STRONG>Tag generously</STRONG> — More tags = better recall</LI>
<LI><STRONG>Review monthly</STRONG> — Patterns reveal systemic issues</LI>
<LI><STRONG>Link to fixes</STRONG> — Reference commits, PRs, or config changes when possible</LI></OL>                                                        
                             
                           </div>
														                            <div class="lastanext flexRow">
							 							 							  <a class="lastart flexRow"  href="/wz/345875.html"  ><span>上一篇:</span><span>Slack 打印技能:自动文件与文档打印 - Openclaw Skills</span></a>
							 							 
                             							                                 <a class="nextart flexRow"  href="/wz/345877.html" ><span>下一篇:</span><span>代码规划智能体:架构与执行规划 - 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/367882.html"  >
                                                                                        <img src="https://images.jiaoben.net/uploads/20260418/logo_69e2e9991b0a21.png" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/367882.html"  >【含最新安装包】OpenClaw 新手避坑安装完整教程</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/367882.html"  >
                                                                                                                                     OpenClaw(“小龙虾”)是2026年爆火的开源AI数字员工,GitHub星标超28万。支持Windows一键部署,3分钟完成安装,无需代码、不联网、全本地运行,可自动执行文件整理、邮件发送、浏览器操作等办公任务,隐私安全,新手友好。(239字)
                                                                                                                </a>
                                            </div>
                                        </div>
									
                                        <div class="tjimd-down flexRow">
                                            <div class="imdd-tab flexRow">
                                                <p class="imddt-time flexRow"><b></b><span>2026-04-18</span></p>
                                                
                                            </div>
                                            <a  href="/wz/367882.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/367881.html"  >
                                                                                        <img src="https://images.jiaoben.net/uploads/20260418/logo_69e2e98428b3f1.png" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/367881.html"  >一文吃透:OpenClaw 企业微信 AI 机器人从 0 到 1 搭建指南</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/367881.html"  >
                                                                                                                                     本文详解OpenClaw v2.6.2与企业微信对接全流程:从企业微信端创建API长连接机器人,到OpenClaw可视化配置Bot ID/Secret,全程无需公网IP或域名,支持本地部署。涵盖知识问答、业务辅助等场景,提供一键安装包与安全稳定的企业级AI助手方案。
                                                                                                                </a>
                                            </div>
                                        </div>
									
                                        <div class="tjimd-down flexRow">
                                            <div class="imdd-tab flexRow">
                                                <p class="imddt-time flexRow"><b></b><span>2026-04-18</span></p>
                                                
                                            </div>
                                            <a  href="/wz/367881.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/367875.html"  >
                                                                                        <img src="https://images.jiaoben.net/uploads/20260418/logo_69e2e94f7ba501.png" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/367875.html"  >小白必看:OpenClaw 简化版安装全流程实操</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/367875.html"  >
                                                                                                                                     OpenClaw(“小龙虾”)是2026年爆火的开源AI数字员工,GitHub星标超28万。本教程提供Windows一键部署包(v2.6.2),零代码、全图形化操作,5分钟即可本地搭建,支持文件整理、浏览器自动化、微信联动等办公场景,隐私安全、新手友好。(239字)
                                                                                                                </a>
                                            </div>
                                        </div>
									
                                        <div class="tjimd-down flexRow">
                                            <div class="imdd-tab flexRow">
                                                <p class="imddt-time flexRow"><b></b><span>2026-04-18</span></p>
                                                
                                            </div>
                                            <a  href="/wz/367875.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/367849.html"  >
                                                                                        <img src="https://images.jiaoben.net/uploads/20260418/logo_69e2e83b992b31.jpeg" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/367849.html"  >Scaling Laws重读:当"规模定律"遇上垂直行业落地,该如何做系统架构决策?</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/367849.html"  >
                                                                                                                                     重读OpenAI《Scaling Laws》论文,提炼三大工程推论:参数-数据最优配比、能力涌现阈值、样本效率差异;结合RAG vs 微调 vs 混合架构选型决策,以及幻觉处理的工程级解法
                                                                                                                </a>
                                            </div>
                                        </div>
									
                                        <div class="tjimd-down flexRow">
                                            <div class="imdd-tab flexRow">
                                                <p class="imddt-time flexRow"><b></b><span>2026-04-18</span></p>
                                                
                                            </div>
                                            <a  href="/wz/367849.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/345882.html"  >
                                                                                     <img src="/jiaoben/image/noimg.png" >
                                                                                    </a>
                                    <div class="wktpa-right flexColumn">
                                        <a class="wktpara flexRow overflowclass"  href="/wz/345882.html"  >Compliance-QA:带合规护栏的监管问答 - Openclaw Skills</a>
                                        <a class="wktparp flexRow overflowclass"  href="/wz/345882.html"  >
                                                                                            什么是 合规问答助手?
Ope
                                                                                        
                                        </a>
                                    </div>
                                </div>
								
															
															
															
															
															
															
															
															
															
								
                                <div class="weekch-list">
                                										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/345880.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/345879.html"  class="weekcha flexRow flexcenter overflowclass" >Google 评价痛点检测器:识别高意向线索 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/345878.html"  class="weekcha flexRow flexcenter overflowclass" >Bounty Hunter Pro:自主 Bug Bounty 扫描 - Openclaw 技能</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/345874.html"  class="weekcha flexRow flexcenter overflowclass" >GitHub Actions 波动性审计:识别不稳定的流水线 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/345873.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/345872.html"  class="weekcha flexRow flexcenter overflowclass" >ContextClear:AI 智能体性能与健康追踪 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/345871.html"  class="weekcha flexRow flexcenter overflowclass" >WhatsApp 业务自动回复器:自动化客户支持 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/345870.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/345869.html"  class="weekcha flexRow flexcenter overflowclass" >Amazon SP-API:自动化 FBA 库存与订单 - 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/359197.html"   class="bloga flexRow over"><p class="overflowclass">bird:面向 AI 智能体的 X/Twitter 命令行工具 - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</div></a>
							                                <a  href="/wz/359198.html"   class="bloga flexRow over"><p class="overflowclass">自动更新器:自动化 AI 智能体与技能更新 - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</div></a>
							                                <a  href="/wz/359199.html"   class="bloga flexRow over"><p class="overflowclass">自动更新程序:Openclaw 技能的自动化维护</p><div class="blogtime"><span>04/</span>18</div></a>
							                                <a  href="/wz/359200.html"   class="bloga flexRow over"><p class="overflowclass">自动更新器:自动化智能体与技能维护 - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</div></a>
							                                <a  href="/wz/359201.html"   class="bloga flexRow over"><p class="overflowclass">自动更新器:自动执行核心与技能更新 - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</div></a>
							                                <a  href="/wz/359202.html"   class="bloga flexRow over"><p class="overflowclass">Agent Browser:AI 智能体网页自动化 CLI - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</div></a>
							                                <a  href="/wz/359204.html"   class="bloga flexRow over"><p class="overflowclass">Hacker News 发布器:自动进行 HN 提交和评论 - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</div></a>
							                                <a  href="/wz/359208.html"   class="bloga flexRow over"><p class="overflowclass">ClawdHub CLI: 管理和发布 Openclaw 技能 - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</div></a>
							                                <a  href="/wz/359209.html"   class="bloga flexRow over"><p class="overflowclass">ClawdHub CLI:管理并发布智能体技能 - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</div></a>
							                                <a  href="/wz/359210.html"   class="bloga flexRow over"><p class="overflowclass">bird: 面向 AI 智能体的 X/Twitter CLI 技能 - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</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/367880.html"  title="" class="ailta ">
                                                                        <img src="https://images.jiaoben.net/uploads/20260418/logo_69e2e97d736681.jpg" >
                                                                        <p ><span>抓拍夜生活派对的真实瞬间提示</span></p></a>
																								                                <a  href="/wz/367867.html"  title="" class="ailta ">
                                                                        <img src="https://images.jiaoben.net/uploads/20260418/logo_69e2e901016301.jpg" >
                                                                        <p ><span>赵露思 — 空灵美人鱼女神画报</span></p></a>
																																																																																																																																																                               
                            </div>
                            <div class="ail-down">
																																																						<a class="ali-con flexRow"  href="/wz/367845.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">胡志明小道越南战争场景提示</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/367811.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">地中海时尚生活肖像提示</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/367810.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">超现实主义高端时尚编辑内容提示</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/367796.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">超逼真街头风格肖像提示词</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/367795.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">夜间摄影提示:用梅赛德斯 G 63 AMG 清雪</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/367783.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">电影编辑摄影提示(《怪奇物语》演员阵容)</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/367770.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">结构仿生提示词下的时尚编辑摄影</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/367731.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>