Paper Digest:自动化 arXiv 研究总结 - Openclaw Skills

作者:互联网

2026-04-05

AI教程

什么是 Paper Digest?

Paper Digest 是一款专门为增强研究人员和开发人员的学术工作流而构建的工具。通过利用 Openclaw Skills 的模块化特性,该智能体自动化了阅读论文并手动寻找其最重要参考文献的繁琐过程。它能智能地识别研究的主要基准和架构基础,确保您在理解内容的同时也能掌握背景上下文。

该技能旨在提供论文贡献的高层视图,同时管理引用网络的复杂性。它代表了 Openclaw Skills 生态系统中自动化技术分析的重大飞跃,允许用户在几分钟内从单个 ID 获得全上下文报告。

下载入口:https://github.com/openclaw/skills/tree/main/skills/damoonsh/paper-digest

安装与下载

1. ClawHub CLI

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

npx clawhub@latest install paper-digest

2. 手动安装

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

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

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

3. 提示词安装

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

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

Paper Digest 应用场景

  • 为新的工程或研究项目进行快速文献综述。
  • 了解新机器学习模型的架构演变脉络。
  • 无需手动综合即可创建关于前沿进展的内部技术简报。
  • 映射特定论文相对于其主要基准的依赖关系和改进。
Paper Digest 工作原理
  1. 用户提供 arXiv ID 或 URL,智能体将其规范化以提取唯一标识符。
  2. 主智能体尝试通过 arXiv HTML 界面获取论文内容,必要时回退到特定版本的 URL。
  3. 智能体分析论文,提取最多五个对该作品的架构或方法论至关重要的核心引用。
  4. 动态生成子智能体来处理这些引用,检查本地工作区中是否存在现有摘要以避免重复工作。
  5. 所有收集到的见解都会被合成一份专业编写的散文体报告,存放在用户的工作区中。

Paper Digest 配置指南

要将此功能集成到您的智能体中,请确保您的环境支持 Openclaw Skills 中常见的网页抓取和子智能体编排。

# 创建必要的工作区目录
mkdir -p ~/.openclaw/workspace/papers
mkdir -p ~/.openclaw/workspace/digest

# 确保在智能体的清单中注册了 paper-digest 技能

Paper Digest 数据架构与分类体系

该技能将研究数据整理到本地工作区内的两个主要位置,以便进行缓存和快速检索:

目录 文件类型 用途
~/.openclaw/workspace/papers/ .md 主论文及其引用的单独摘要。
~/.openclaw/workspace/digest/ report_.md 以流畅散文体编写的最终合并执行摘要。
name: paper-digest
description: "Given an arXiv ID or URL, fetch the paper, spawn sub-agents to read its key citations, and write an executive summary under."
user-invocable: true
author: Damoon
version: 0.0.1

Paper Digest

Input

  • arxiv_id: bare ID like 2305.11206 or full https://arxiv.org/abs/2305.11206 (Normalise: strip the URL prefix, extract bare ID.)

Step 1 — Fetch the main paper

Try HTML first: web.fetch https://arxiv.org/html/

  • If HTTP 200 → use this as paper_text.
  • If Falis: add v1 at the end, and try again: web.fetch https://arxiv.org/html/v1
  • else if all fails skip and ABORT!

If the paper_text is retrieved then write the summary to ~/.openclaw/workspace/papers/.md.

Step 2 — Extract citations

Note: DO NOT DO THIS STEP INSIDE sub-agents

Within the main agent and from paper_text, identify at most 5 citations the paper most directly builds on. Prioritize:

  • Papers that are explicitly extended or improved upon
  • Papers used as the primary baseline for comparison
  • Papers that provide the core architecture this work adopts
  • Papers referred to repeatedly (not just mentioned once) or that provide essential context

For each citation, extract either the arXiv ID or the title. Then resolve to an arXiv URL:

  • If an arXiv ID is in the reference → https://arxiv.org/html/
  • Otherwise search https://arxiv.org/search/?query=&searchtype=all</CODE> and take the first match.</LI></UL> <H2 id=step-3--spawn-sub-agents-for-citations>Step 3 — Spawn sub-agents for citations</H2> <P><EM><STRONG>Note</STRONG></EM>: Ensure that the sub-agent related task is precise and concise so the sub-agent does not have to re-read the previously read SKILLs and files.</P> <P>For each resolved citation:</P> <UL> <LI>Check if the file for citation exists: <CODE>~/.openclaw/workspace/papers/<arxiv-id>.md</CODE>, if it does then skip and consider the sub-agent concluded.</LI> <LI>If the previous step fails then spawn a sub-agent with this EXACT instruction in VERBATIM: <UL> <LI>Fetch https://arxiv.org/html/<CITATION_ID> (or add v1 at the end, and try again: web.fetch https://arxiv.org/html/v1). If unavailable, SKIP. If retrieved then Write the summary to <CODE>~/.openclaw/workspace/papers/<arxiv-id>.md</CODE>.</CITATION_ID></LI></UL></LI></UL> <H2 id=step-4--write-the-executive-summary>Step 4 — Write the executive summary</H2> <P>Check the citation summaries within <CODE>~/.openclaw/workspace/papers/</CODE> then utilize the main paper we are summarising with citation summaries and write a single <STRONG>markdown document in flowing prose</STRONG> (no bullet lists) to <CODE>~/.openclaw/workspace/digest/report_<arxiv-id></CODE>. Use this structure:</P><PRE><CODE class=language-markdown># <Title> <What problem this solves and why it matters. Context and related references summary> <What prior work missed and how this paper addresses that gap. Cite inline as [Author et al., YEAR](<arxiv_link>). <Core method in plain terms> <Headline result. How it differs from previous work. <One limitation and one future direction> <Detailed Ablations, benchmarks if present in this paper or cited references> </CODE></PRE> <H2 id=rules>Rules</H2> <UL> <LI>Every citation must be a markdown link: <CODE>[Author et al., YEAR](<arxiv_or_url>)</CODE></LI> <LI>No bullet lists in the output — <STRONG>prose only</STRONG>.</LI> <LI>If a section is absent from the paper (e.g., no ablations), skip it silently.</LI> <LI>Do not fabricate results, metrics, or author claims.</LI> <LI><STRONG>Citation resolution retry</STRONG>: If a citation URL cannot be resolved after one retry, write the citation as plain text without a link: <CODE>[Author et al., YEAR]</CODE>.</LI></UL> </div> <div class="lastanext flexRow"> <a class="lastart flexRow" href="/wz/339322.html" ><span>上一篇:</span><span>合同审查:AI 赋能的法律风险分析 - Openclaw Skills</span></a> <a class="nextart flexRow" href="/wz/339324.html" ><span>下一篇:</span><span>pywayne-vio-se3: 3D SE(3) 刚体变换 - 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/367737.html" > <img src="/jiaoben/image/noimg.png" > </a> <div class="imdt-right flexColumn"> <a class="imdtra flexRow overflowclass" href="/wz/367737.html" >AI 英语学习 App的开发</a> <a class="imdtrap flexRow overflowclass" href="/wz/367737.html" > 2026年AI英语学习App已进化为高感知虚拟私教:支持低延迟多模态对话(含情绪识别)、音素级纠音与中式思维转换、知识图谱驱动的自适应教学、跨设备场景化交互。告别复读机,开启沉浸式、个性化、全天候口语精进新范式。(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/367737.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/367736.html" > <img src="https://images.jiaoben.net/uploads/20260418/logo_69e2d08e10abb1.jpg" > </a> <div class="imdt-right flexColumn"> <a class="imdtra flexRow overflowclass" href="/wz/367736.html" >百炼 Coding Plan 是什么?售罄抢不到怎么办?附抢购技巧及平替方案</a> <a class="imdtrap flexRow overflowclass" href="/wz/367736.html" > 阿里云百炼Coding Plan是高性价比AI编程订阅服务,聚合Qwen、GLM、Kimi等主流大模型,兼容Cursor等工具。Lite版已停售,Pro版每日9:30限量抢购。抢不到?可选按量付费——新用户赠100万Token,轻度使用月费仅10-50元,即开即用。 </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/367736.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/367735.html" > <img src="https://images.jiaoben.net/uploads/20260418/logo_69e2cd5bd357c1.png" > </a> <div class="imdt-right flexColumn"> <a class="imdtra flexRow overflowclass" href="/wz/367735.html" >【十分钟教会你】新手向 OpenClaw Windows 一键安装使用指南</a> <a class="imdtrap flexRow overflowclass" href="/wz/367735.html" > OpenClaw(小龙虾)是开源AI数字员工,支持Windows一键部署,10分钟即可完成。本地运行、零代码、全自动执行任务,适配微信/飞书等工具,隐私安全无联网风险,新手友好,全程可视化操作。 </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/367735.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/367733.html" > <img src="https://images.jiaoben.net/uploads/20260418/logo_69e2cd4d30a8a1.png" > </a> <div class="imdt-right flexColumn"> <a class="imdtra flexRow overflowclass" href="/wz/367733.html" >OpenClaw本地部署指南</a> <a class="imdtrap flexRow overflowclass" href="/wz/367733.html" > 2026年爆火开源AI“OpenClaw”(小龙虾),GitHub星标超28万+!本地运行、零代码、全自动——听懂自然语言指令,即可整理文件、操作浏览器、发微信/邮件、处理表格。Windows一键部署,10分钟上手,隐私安全无联网。小白友好,办公自动化神器! </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/367733.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/339329.html" > <img src="/jiaoben/image/noimg.png" > </a> <div class="wktpa-right flexColumn"> <a class="wktpara flexRow overflowclass" href="/wz/339329.html" >小夜语音:中英多语言混合 TTS - Openclaw Skills</a> <a class="wktparp flexRow overflowclass" href="/wz/339329.html" > 什么是 小夜语音系统? 小夜语 </a> </div> </div> <div class="weekch-list"> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/339328.html" class="weekcha flexRow flexcenter overflowclass" >CoinMarketCap MCP:实时加密数据与分析 - Openclaw Skills</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/339327.html" class="weekcha flexRow flexcenter overflowclass" >Task-Specialist: 基于 SQLite 的 AI 任务管理 - Openclaw Skills</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/339325.html" class="weekcha flexRow flexcenter overflowclass" >Task Orchestra:多智能体工作流协同 - Openclaw Skills</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/339321.html" class="weekcha flexRow flexcenter overflowclass" >Excalidraw 流程图生成器:视觉架构设计 - Openclaw Skills</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/339320.html" class="weekcha flexRow flexcenter overflowclass" >fastfish-hot: 实时热搜新闻与热点推送 - Openclaw Skills</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/339319.html" class="weekcha flexRow flexcenter overflowclass" >RMN Soul:AI 智能体递归记忆与区块链身份 - Openclaw Skills</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/339318.html" class="weekcha flexRow flexcenter overflowclass" >代理网络:去中心化 AI 代理联网与交易 - Openclaw 技能</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/339317.html" class="weekcha flexRow flexcenter overflowclass" >Image Studio:视觉内容 AI 图像提示词生成器 - Openclaw Skills</a> </div> <div class="weekch-con flexRow"> <div class="weekch-icon flexRow"><b></b></div> <a href="/wz/339316.html" class="weekcha flexRow flexcenter overflowclass" >证书生成:AI 驱动的奖状与文凭设计 - 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/359403.html" class="bloga flexRow over"><p class="overflowclass">主管提案者:主动式 AI 代理沟通 - Openclaw 技能</p><div class="blogtime"><span>04/</span>18</div></a> <a href="/wz/359404.html" class="bloga flexRow over"><p class="overflowclass">在线状态监控器:网站状态与性能 - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</div></a> <a href="/wz/359405.html" class="bloga flexRow over"><p class="overflowclass">Secret Rotator:自动化 API 密钥审计与轮换 - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</div></a> <a href="/wz/359406.html" class="bloga flexRow over"><p class="overflowclass">rey-x-api: 为 AI 智能体提供的安全 X API 集成 - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</div></a> <a href="/wz/359407.html" class="bloga flexRow over"><p class="overflowclass">Polymarket 交易者:由 AI 驱动的预测市场自动化 - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</div></a> <a href="/wz/359408.html" class="bloga flexRow over"><p class="overflowclass">LinkedIn 自动化:扩展 B2B 增长与内容 - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</div></a> <a href="/wz/359409.html" class="bloga flexRow over"><p class="overflowclass">Rey 代码审查:自动化质量与安全审计 - Openclaw 技能</p><div class="blogtime"><span>04/</span>18</div></a> <a href="/wz/359410.html" class="bloga flexRow over"><p class="overflowclass">Reddit 发布助手:算法优化的社区参与 - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</div></a> <a href="/wz/359411.html" class="bloga flexRow over"><p class="overflowclass">项目脚手架:自动化模板生成 - Openclaw Skills</p><div class="blogtime"><span>04/</span>18</div></a> <a href="/wz/359414.html" class="bloga flexRow over"><p class="overflowclass">Dzen 发布器:自动在 Dzen.ru 发布内容 - 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/367731.html" title="" class="ailta "> <img src="https://images.jiaoben.net/uploads/20260418/logo_69e2cd43c00221.jpg" > <p ><span>模型清洁迷你我比例模型提示</span></p></a> <a href="/wz/367730.html" title="" class="ailta "> <img src="https://images.jiaoben.net/uploads/20260418/logo_69e2cd3a6efbf1.jpg" > <p ><span>Ana de Armas 护肤品</span></p></a> </div> <div class="ail-down"> <a class="ali-con flexRow" href="/wz/367722.html" title=""> <div class="alicon-left flexRow"><span>精选</span></div> <p class="aliconp overflowclass">吉普车引擎盖上的超逼真电影肖像</p> </a> <a class="ali-con flexRow" href="/wz/367711.html" title=""> <div class="alicon-left flexRow"><span>精选</span></div> <p class="aliconp overflowclass">单色粉色影棚时尚肖像</p> </a> <a class="ali-con flexRow" href="/wz/367699.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/366175.html" title=""> <div class="alicon-left flexRow"><span>精选</span></div> <p class="aliconp overflowclass">赛博朋克 K-Pop 动画</p> </a> <a class="ali-con flexRow" href="/wz/366174.html" title=""> <div class="alicon-left flexRow"><span>精选</span></div> <p class="aliconp overflowclass">冰川星球大逃亡</p> </a> <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> </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>