完成开发分支:Openclaw Skills 的工作流自动化

作者:互联网

2026-04-06

AI教程

什么是 完成开发分支?

“完成开发分支”是一项专门的技能,旨在填补已完成代码与集成功能之间的空白。它为使用 Openclaw Skills 的开发人员提供了一个标准化框架,用于处理分支生命周期的最终阶段。通过执行测试优先的哲学,该技能可防止集成损坏的代码,并减轻 Git 维护的认知负荷。

无论您是本地合并到基础分支,还是将功能推送到远程仓库,该技能都会通过四个不同的高级选项引导完成该过程。它确保从分支清理到工作树移除的每一项操作都安全并符合最佳实践,从而维持一个整洁的开发环境。

下载入口:https://github.com/openclaw/skills/tree/main/skills/zlc000190/finishing-a-development-branch

安装与下载

1. ClawHub CLI

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

npx clawhub@latest install finishing-a-development-branch

2. 手动安装

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

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

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

3. 提示词安装

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

请帮我使用 Clawhub 安装 finishing-a-development-branch。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。

完成开发分支 应用场景

  • 在子代理计划中的所有任务完成后,结束功能开发。
  • 自动创建带有摘要和测试计划的标准拉取请求(Pull Request)。
  • 在验证测试后,安全地将本地分支合并到 main 或 master 分支。
  • 在任务完成后清理临时 Git 工作树,以释放系统资源。
  • 舍弃实验性分支,并带有必要的安全确认步骤以防止意外丢失。
完成开发分支 工作原理
  1. 该技能通过运行项目的测试套件开始,以确保当前实现是稳定的。
  2. 它识别基础分支(例如 main 或 master),以确定逻辑集成目标。
  3. 为用户提供四个明确的选项:本地合并、创建 PR、保持分支原样或舍弃工作。
  4. 选择后,该技能执行必要的 Git 和 GitHub CLI 命令以完成所选路径。
  5. 它执行最终维护工作,例如删除本地功能分支或针对特定选项移除关联的 Git 工作树。

完成开发分支 配置指南

为了在 Openclaw Skills 中有效使用此技能,请确保您的系统中已安装并验证了 Git CLI 和 GitHub CLI。

# 确保 GitHub CLI 已通过身份验证以创建 PR
gh auth status

# 验证您的测试环境已配置且可访问
npm test # 或 cargo test, pytest, go test 等

完成开发分支 数据架构与分类体系

该技能与 Git 元数据和本地文件结构交互,通过以下架构管理开发生命周期:

数据点 描述
基础分支 通过 git merge-base 识别的父分支 (main/master)。
功能分支 包含已完成实现的当前工作分支。
PR 模板 包含更改摘要和测试计划的结构化格式。
工作树路径 签出分支的物理目录,用于跟踪清理。
name: finishing-a-development-branch
description: Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

Finishing a Development Branch

Overview

Guide completion of development work by presenting clear options and handling chosen workflow.

Core principle: Verify tests → Present options → Execute choice → Clean up.

Announce at start: "I'm using the finishing-a-development-branch skill to complete this work."

The Process

Step 1: Verify Tests

Before presenting options, verify tests pass:

# Run project's test suite
npm test / cargo test / pytest / go test ./...

If tests fail:

Tests failing ( failures). Must fix before completing:

[Show failures]

Cannot proceed with merge/PR until tests pass.

Stop. Don't proceed to Step 2.

If tests pass: Continue to Step 2.

Step 2: Determine Base Branch

# Try common base branches
git merge-base HEAD main 2>/dev/null || git merge-base HEAD master 2>/dev/null

Or ask: "This branch split from main - is that correct?"

Step 3: Present Options

Present exactly these 4 options:

Implementation complete. What would you like to do?

1. Merge back to  locally
2. Push and create a Pull Request
3. Keep the branch as-is (I'll handle it later)
4. Discard this work

Which option?

Don't add explanation - keep options concise.

Step 4: Execute Choice

Option 1: Merge Locally

# Switch to base branch
git checkout 

# Pull latest
git pull

# Merge feature branch
git merge 

# Verify tests on merged result


# If tests pass
git branch -d 

Then: Cleanup worktree (Step 5)

Option 2: Push and Create PR

# Push branch
git push -u origin 

# Create PR
gh pr create --title "" --body "$(cat <<'EOF'
## Summary
<2-3 bullets of what changed>

## Test Plan
- [ ] <verification steps>
EOF
)"
</CODE></PRE>
<P>Then: Cleanup worktree (Step 5)</P>
<H4 id=option-3-keep-as-is>Option 3: Keep As-Is</H4>
<P>Report: "Keeping branch <NAME>. Worktree preserved at <PATH>."</PATH></NAME></P>
<P><STRONG>Don't cleanup worktree.</STRONG></P>
<H4 id=option-4-discard>Option 4: Discard</H4>
<P><STRONG>Confirm first:</STRONG></P><PRE><CODE>This will permanently delete:
- Branch <name>
- All commits: <commit-list>
- Worktree at <path>

Type 'discard' to confirm.
</CODE></PRE>
<P>Wait for exact confirmation.</P>
<P>If confirmed:</P><PRE><CODE class=language-bash>git checkout <base-branch>
git branch -D <feature-branch>
</CODE></PRE>
<P>Then: Cleanup worktree (Step 5)</P>
<H3 id=step-5-cleanup-worktree>Step 5: Cleanup Worktree</H3>
<P><STRONG>For Options 1, 2, 4:</STRONG></P>
<P>Check if in worktree:</P><PRE><CODE class=language-bash>git worktree list | grep $(git branch --show-current)
</CODE></PRE>
<P>If yes:</P><PRE><CODE class=language-bash>git worktree remove <worktree-path>
</CODE></PRE>
<P><STRONG>For Option 3:</STRONG> Keep worktree.</P>
<H2 id=quick-reference>Quick Reference</H2>
<DIV class=table-scroll-wrapper>
<TABLE>
<THEAD>
<TR>
<TH>Option</TH>
<TH>Merge</TH>
<TH>Push</TH>
<TH>Keep Worktree</TH>
<TH>Cleanup Branch</TH></TR></THEAD>
<TBODY>
<TR>
<TD>1. Merge locally</TD>
<TD>?</TD>
<TD>-</TD>
<TD>-</TD>
<TD>?</TD></TR>
<TR>
<TD>2. Create PR</TD>
<TD>-</TD>
<TD>?</TD>
<TD>?</TD>
<TD>-</TD></TR>
<TR>
<TD>3. Keep as-is</TD>
<TD>-</TD>
<TD>-</TD>
<TD>?</TD>
<TD>-</TD></TR>
<TR>
<TD>4. Discard</TD>
<TD>-</TD>
<TD>-</TD>
<TD>-</TD>
<TD>? (force)</TD></TR></TBODY></TABLE></DIV>
<H2 id=common-mistakes>Common Mistakes</H2>
<P><STRONG>Skipping test verification</STRONG></P>
<UL>
<LI><STRONG>Problem:</STRONG> Merge broken code, create failing PR</LI>
<LI><STRONG>Fix:</STRONG> Always verify tests before offering options</LI></UL>
<P><STRONG>Open-ended questions</STRONG></P>
<UL>
<LI><STRONG>Problem:</STRONG> "What should I do next?" → ambiguous</LI>
<LI><STRONG>Fix:</STRONG> Present exactly 4 structured options</LI></UL>
<P><STRONG>Automatic worktree cleanup</STRONG></P>
<UL>
<LI><STRONG>Problem:</STRONG> Remove worktree when might need it (Option 2, 3)</LI>
<LI><STRONG>Fix:</STRONG> Only cleanup for Options 1 and 4</LI></UL>
<P><STRONG>No confirmation for discard</STRONG></P>
<UL>
<LI><STRONG>Problem:</STRONG> Accidentally delete work</LI>
<LI><STRONG>Fix:</STRONG> Require typed "discard" confirmation</LI></UL>
<H2 id=red-flags>Red Flags</H2>
<P><STRONG>Never:</STRONG></P>
<UL>
<LI>Proceed with failing tests</LI>
<LI>Merge without verifying tests on result</LI>
<LI>Delete work without confirmation</LI>
<LI>Force-push without explicit request</LI></UL>
<P><STRONG>Always:</STRONG></P>
<UL>
<LI>Verify tests before offering options</LI>
<LI>Present exactly 4 options</LI>
<LI>Get typed confirmation for Option 4</LI>
<LI>Clean up worktree for Options 1 & 4 only</LI></UL>
<H2 id=integration>Integration</H2>
<P><STRONG>Called by:</STRONG></P>
<UL>
<LI><STRONG>subagent-driven-development</STRONG> (Step 7) - After all tasks complete</LI>
<LI><STRONG>executing-plans</STRONG> (Step 5) - After all batches complete</LI></UL>
<P><STRONG>Pairs with:</STRONG></P>
<UL>
<LI><STRONG>using-git-worktrees</STRONG> - Cleans up worktree created by that skill</LI></UL>                                                        
                             
                           </div>
														                            <div class="lastanext flexRow">
							 							 							  <a class="lastart flexRow"  href="/wz/335205.html"  ><span>上一篇:</span><span>飞书富文本:通过 Openclaw Skills 发送富文本消息</span></a>
							 							 
                             							                                 <a class="nextart flexRow"  href="/wz/335207.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/361972.html"  >
                                                                                        <img src="/jiaoben/image/noimg.png" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/361972.html"  >AHC-Automator:制造与 CRM 自动化 - Openclaw 技能</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/361972.html"  >
                                                                                                                                     什么是 AHC-Automator:Alan Harper Composites 工作流自动化?
AHC-Automator 是一个专为 Alan Harper Composites 的特定运营需求定制的全方位自
                                                                                                                </a>
                                            </div>
                                        </div>
									
                                        <div class="tjimd-down flexRow">
                                            <div class="imdd-tab flexRow">
                                                <p class="imddt-time flexRow"><b></b><span>2026-04-15</span></p>
                                                
                                            </div>
                                            <a  href="/wz/361972.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/361971.html"  >
                                                                                        <img src="/jiaoben/image/noimg.png" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/361971.html"  >Rho 加密货币组合追踪器:多平台损益与净值 - Openclaw Skills</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/361971.html"  >
                                                                                                                                     什么是 Rho 加密货币组合追踪器?
rho-portfolio-tracker 是为自主交易环境和资深加密货币投资者构建的高性能工具。作为 Openclaw Skills 生态系统的核心组件,它提供了一个统
                                                                                                                </a>
                                            </div>
                                        </div>
									
                                        <div class="tjimd-down flexRow">
                                            <div class="imdd-tab flexRow">
                                                <p class="imddt-time flexRow"><b></b><span>2026-04-15</span></p>
                                                
                                            </div>
                                            <a  href="/wz/361971.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/361953.html"  >
                                                                                        <img src="/jiaoben/image/noimg.png" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/361953.html"  >hot-aggregator-cn:实时中文社交趋势追踪 - Openclaw Skills</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/361953.html"  >
                                                                                                                                     什么是 hot-aggregator-cn (全平台热点聚合器)?
hot-aggregator-cn 插件是一个旨在桥接中国各种社交媒体生态系统的先进工具。它系统地收集来自微博、知乎、百度、抖音、Bilibi
                                                                                                                </a>
                                            </div>
                                        </div>
									
                                        <div class="tjimd-down flexRow">
                                            <div class="imdd-tab flexRow">
                                                <p class="imddt-time flexRow"><b></b><span>2026-04-15</span></p>
                                                
                                            </div>
                                            <a  href="/wz/361953.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/361899.html"  >
                                                                                        <img src="https://images.jiaoben.net/uploads/20260415/logo_69df1a716fe061.jpeg" >
                                                                                        </a>
                                            <div class="imdt-right flexColumn">
                                                <a class="imdtra flexRow overflowclass"  href="/wz/361899.html"  >二级分销高级指南:构建你的推广团队,轻松翻倍佣金</a>
                                                <a class="imdtrap flexRow overflowclass"  href="/wz/361899.html"  >
                                                                                                                                     在推广活动中,许多人只关注自己吸引客户的能力。然而,聪明的推广者知道:一个人的力量是有限的,构建团队才是翻倍收入的关键。 Ace Data Cloud 的分销系统支持 二级分销,即你邀请的人(A)可以
                                                                                                                </a>
                                            </div>
                                        </div>
									
                                        <div class="tjimd-down flexRow">
                                            <div class="imdd-tab flexRow">
                                                <p class="imddt-time flexRow"><b></b><span>2026-04-15</span></p>
                                                
                                            </div>
                                            <a  href="/wz/361899.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/335212.html"  >
                                                                                     <img src="/jiaoben/image/noimg.png" >
                                                                                    </a>
                                    <div class="wktpa-right flexColumn">
                                        <a class="wktpara flexRow overflowclass"  href="/wz/335212.html"  >LYGO 通用修复系统:高级冠军升级 - Openclaw Skills</a>
                                        <a class="wktparp flexRow overflowclass"  href="/wz/335212.html"  >
                                                                                            什么是 LYGO 通用修复系统
                                                                                        
                                        </a>
                                    </div>
                                </div>
								
															
															
															
															
															
															
															
															
															
								
                                <div class="weekch-list">
                                										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/335211.html"  class="weekcha flexRow flexcenter overflowclass" >Jira PAT 技能:通过 API 管理企业级 Jira - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/335210.html"  class="weekcha flexRow flexcenter overflowclass" >Renderful 生成:AI 多媒体创作 - Openclaw 技能</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/335208.html"  class="weekcha flexRow flexcenter overflowclass" >局域网媒体服务器:为 AI 提供的本地 HTTP 文件共享 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/335204.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/335203.html"  class="weekcha flexRow flexcenter overflowclass" >Ruby:掌握可靠的 Ruby 编码与最佳实践 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/335202.html"  class="weekcha flexRow flexcenter overflowclass" >CleanApp Ingest v1:信号报告与批量数据摄取 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/335201.html"  class="weekcha flexRow flexcenter overflowclass" >Cycle:设计可重复的自定义工作流循环 - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/335200.html"  class="weekcha flexRow flexcenter overflowclass" >台湾日历:实时节假日与工作日 API - Openclaw Skills</a>
										</div>
										
																											<div class="weekch-con flexRow">
											<div class="weekch-icon flexRow"><b></b></div>
											<a  href="/wz/335199.html"  class="weekcha flexRow flexcenter overflowclass" >NEAR 空投猎手:发现并领取 NEAR 空投 - 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/361971.html"   class="bloga flexRow over"><p class="overflowclass">Rho 加密货币组合追踪器:多平台损益与净值 - Openclaw Skills</p><div class="blogtime"><span>04/</span>15</div></a>
							                                <a  href="/wz/361972.html"   class="bloga flexRow over"><p class="overflowclass">AHC-Automator:制造与 CRM 自动化 - Openclaw 技能</p><div class="blogtime"><span>04/</span>15</div></a>
							                                <a  href="/wz/361953.html"   class="bloga flexRow over"><p class="overflowclass">hot-aggregator-cn:实时中文社交趋势追踪 - Openclaw Skills</p><div class="blogtime"><span>04/</span>15</div></a>
							                                <a  href="/wz/361884.html"   class="bloga flexRow over"><p class="overflowclass">Heimdall:针对 Openclaw Skills 的 AI 驱动安全扫描器</p><div class="blogtime"><span>04/</span>15</div></a>
							                                <a  href="/wz/361886.html"   class="bloga flexRow over"><p class="overflowclass">solo-humanize: AI 文本拟人化与模式消除器 - Openclaw Skills</p><div class="blogtime"><span>04/</span>15</div></a>
							                                <a  href="/wz/361887.html"   class="bloga flexRow over"><p class="overflowclass">CodeDNA:BNB Chain 上的自主 AI 生命进化 - Openclaw Skills</p><div class="blogtime"><span>04/</span>15</div></a>
							                                <a  href="/wz/361888.html"   class="bloga flexRow over"><p class="overflowclass">EvoMap Lite 客户端:自动化 AI 智能体集群协作 - Openclaw Skills</p><div class="blogtime"><span>04/</span>15</div></a>
							                                <a  href="/wz/361889.html"   class="bloga flexRow over"><p class="overflowclass">Skill Guard:Openclaw Skills 的高级安全扫描器</p><div class="blogtime"><span>04/</span>15</div></a>
							                                <a  href="/wz/361891.html"   class="bloga flexRow over"><p class="overflowclass">Arayun 173 蓝丝黛尔石执行官:AI 执法技能 - Openclaw Skills</p><div class="blogtime"><span>04/</span>15</div></a>
							                                <a  href="/wz/361892.html"   class="bloga flexRow over"><p class="overflowclass">乐享:腾讯知识库 API 集成 - Openclaw Skills</p><div class="blogtime"><span>04/</span>15</div></a>
								
                                
                            </div>

                        </div>

                        <div class="cdr-ai">
                        <div class="jb-titles flexRow">
                            <div class="jbtle-left flexRow"><b></b><p>AI精选 </p></div>
							<a class="jbtitle-more flexRow" href="/category/list_344_1.html"  title=""><span>更多</span><b></b></a>
                        </div>
						                        <div class="ai-list">
                            <div class="ail-top flexRow">
																                                <a  href="/wz/361955.html"  title="" class="ailta ">
                                                                        <img src="https://images.jiaoben.net/uploads/20260415/logo_69df1e8ee39761.jpeg" >
                                                                        <p ><span>Claude Code设计与实</span></p></a>
																								                                <a  href="/wz/361924.html"  title="" class="ailta ">
                                                                        <img src="https://images.jiaoben.net/uploads/20260415/logo_69df1d929ea821.jpg" >
                                                                        <p ><span>风格化异想天开猫脸网格</span></p></a>
																																																																																																																																																                               
                            </div>
                            <div class="ail-down">
																																																						<a class="ali-con flexRow"  href="/wz/361916.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">Nano Banana Pro 多帧生活肖像提示词</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/361864.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">电影感沙漠人像,倚靠车头盖</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/361834.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">2026年AI Agent开发实战:MCP协议深度解析与多智能体协作架构完全指南</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/361833.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">Vite内核解析-第3章 配置系统</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/361832.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">Vite内核解析-第8章 依赖预构建</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/361831.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">Vite内核解析-第13章 Rolldown 构建引擎</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/361791.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">悉尼·斯威尼 穿着 运动服 的 镜子自拍</p>
									</a>
																																<a class="ali-con flexRow"  href="/wz/361788.html"  title="">
										<div class="alicon-left flexRow"><span>精选</span></div>
										<p class="aliconp overflowclass">南大团队直击大模型高分神话:人类 90 分,最强模型仅 49 分</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>