Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

paper-summary-scripted论文摘要脚本化

Agent Skill

paper-summary-scripted 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,552

周安装

148

GitHub Stars

公开资料未说明

下载量

1,184
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:paper-summary-scripted(论文摘要脚本化)
来源仓库:https://github.com/crw0149/paper-summary-scripted
安装命令:
openclaw skills install paper-summary-scripted
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install paper-summary-scripted

简介

自动化处理 arXiv 论文下载和本地文件摘要生成。

  • 包含文本提取、清理和摘要生成的完整脚本流程。
  • 支持批量下载和批量处理多个论文文档。
  • 需要确认网络访问权限和文件系统读写权限。
  • 建议检查脚本依赖项和运行环境要求。paper-summary-scripted 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
paper-summary-scripted
description
download arxiv paper pdfs or accept local paper files with a preprocessing script, then extract text, clean text, and generate a summary version, detailed version, contribution extraction, and a final consistency check in the user's requested language. use when the user wants the same dify-style four-stage paper summarization workflow with deterministic arxiv pdf download, text extraction, and text cleaning before generation.

带脚本的论文摘要生成

Overview

Use this skill when arXiv paper URLs or local paper files need deterministic preprocessing before the four-stage paper summarization workflow runs. The bundled script downloads arXiv PDFs to local storage when URLs are provided, then handles extraction and cleaning. Do not parse paper web pages or use HTML content as the paper source. After preprocessing, run three independent generation stages from the same cleaned paper text, then a fourth verification stage that evaluates all three generated outputs against the original text.

Canonical inputs

Normalize the request into:

  • language
  • paperurls for arXiv inputs
  • paperfiles

Treat empty string, [], null, None, missing field, or blank list as empty.

Workflow

  1. If both paperurls and paperfiles are empty, return an error immediately.
  2. Run the preprocessing script:

- python scripts/process_papers.py --language "<language>" --paperurls '<paperurls>' --paperfiles '<paperfiles>' --output-dir ./runs/paper-summary

  1. Read manifest.json in the output directory.
  2. For each successful item, read the extracted_text_path file and treat its contents as cleaned_text.
  3. Generate these three sections separately from the same cleaned_text:

- summary version - detailed version - contribution extraction

  1. After the three sections are complete, run quality judgment using:

- original cleaned paper text - summary version - detailed version - contribution extraction

  1. Merge the outputs using references/output-template.md.

Preprocessing rules

The script does deterministic preprocessing only. Treat URL inputs as arXiv identifiers, arXiv abstract URLs, or arXiv PDF URLs that must resolve to a PDF download. Do not attempt webpage parsing, HTML extraction, or generic site scraping. Do not use the script's previews as a substitute for the full extracted text. Treat manifest failures, partial extraction notes, or unsupported formats as evidence that the source may be incomplete.

Generation-stage rules

Consult references/prompts.md for the exact Dify-style prompt patterns and variable mapping.

Summary version

Generate in the requested language. Must include when available:

  • original title
  • research background or pain point
  • core method name
  • at least one key experimental number

If no explicit experimental result is provided in the source, state 原文未提供具体实验数据 or the equivalent in the requested language. Do not add praise or filler.

Detailed version

Generate in the requested language. Use this exact structure:

  • ### 1. 背景与动机
  • ### 2. 核心方法
  • ### 3. 实验设置
  • ### 4. 主要结果与消融实验
  • ### 5. 局限性(若有)

Only include content supported by the extracted text.

Contribution extraction

Generate in the requested language. Each contribution must be an independent innovation point, not an experimental observation. Each one must include source-grounded support evidence without inventing citations or page numbers.

Quality judgment

Run this only after the three generated sections exist. Evaluate summary, detailed, and contribution outputs separately against the original cleaned text. For each one, provide a 1-5 score and a concrete error list.

Manifest-aware confidence rules

Downgrade confidence or mention extraction risk when the manifest shows:

  • download failure
  • arxiv source normalization failure
  • partial parsing
  • fallback decoding
  • missing quantitative evidence
  • unreadable pdf or docx parsing problems

Non-negotiable constraints

  • Never fabricate paper content missing from the extracted text.
  • Keep the three generation stages independent before the quality stage.
  • Preserve the requested language.
  • Keep different papers separate unless the user explicitly asks for a comparison.

Resources

  • scripts/process_papers.py: normalize arXiv inputs, download PDFs or read local files, extract text, clean text, and emit manifest.json
  • references/prompts.md: exact Dify-style prompt logic and variable mapping
  • references/output-template.md: final response template
  • references/script-usage.md: script I/O and manifest field definitions

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

85.2%
按下载量换算1,009

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills