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

paper-cluster-survey-v2-2纸质聚类调查 v2 2

Agent Skill

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

总安装

6,115

周安装

260

GitHub Stars

公开资料未说明

下载量

2,142
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:paper-cluster-survey-v2-2(纸质聚类调查 v2 2)
来源仓库:https://github.com/huang888596/paper-cluster-survey-v2-2
安装命令:
openclaw skills install paper-cluster-survey-v2-2
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install paper-cluster-survey-v2-2

简介

从多种来源提取论文记录并进行聚类分析。

  • 支持 PDF、arXiv、DOI 链接等格式输入,输出分类综述。
  • 可处理本地文件或在线资源,生成结构化学术论文摘要。
  • 注意检查网络访问权限与文件处理能力后再安装使用。
  • paper-cluster-survey-v2-2 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
paper-cluster-survey-v2-2
description
Extract structured paper records from one or more local PDFs, arXiv links, DOI links, or general paper URLs, then classify the papers and write an academic survey review. Use when the task involves mixed paper sources, URL-first literature collection, PDF-based review drafting, taxonomy building, or producing a formal literature review from a paper set. By default, provide one classification table and one integrated review for the full corpus; only write separate reviews for each category when the user explicitly asks for per-category reviews.

Paper Cluster Survey V2.2

Overview

Turn raw paper URLs and PDFs into usable review inputs. Extract structured metadata and text evidence first, then classify the papers, produce a classification table, and write a review that follows common academic survey conventions instead of a rigid fill-in-the-blanks template.

Workflow

1. Normalize the source set

  • Accept multiple local PDF paths, arXiv URLs, DOI URLs, and general paper URLs.
  • Use scripts/normalize-sources.mjs when the source set is mixed or should be stored as a reusable manifest.
  • Preserve the original source string for traceability.

2. Extract paper records before reasoning

  • Use scripts/extract-paper-records.mjs to turn PDFs and URLs into structured records before classification.
  • The extraction pass should gather as much of the following as possible:

- title - authors - year - venue - abstract - task - method - datasets - metrics - main_contribution - limitations - source - extraction_notes

  • Treat extracted records as the primary context for classification and survey drafting.
  • If important fields are missing, only fall back to direct source reading for the specific missing details.

Read extraction-pipeline.md when deciding how much to trust the extracted fields and when to re-open the raw source.

3. Verify evidence quality

  • Do not classify from titles alone when abstract or body text is available.
  • Prefer abstract, introduction, and method section.
  • Mark uncertain inferences explicitly.
  • If the extractor had to fall back to weak methods, keep claims conservative.

4. Design the classification scheme

  • Produce a classification scheme before writing the review.
  • Prefer task-based categories first.
  • If tasks are too similar, classify by method family.
  • Use application-domain categories only when they best explain the corpus.
  • Keep the taxonomy shallow unless the corpus is large.
  • Assign one primary category to each paper unless the user explicitly wants multi-label grouping.

Read taxonomy-guidelines.md when the category design is ambiguous.

5. Output the classification table

  • Always provide one classification table before the review.
  • Include:

- paper - year - category - rationale - evidence used

  • Keep rationales brief and evidence-based.

6. Decide the review shape

Default rule:

  • Write one integrated literature review for the entire corpus after the classification table.

Exception:

  • If the user explicitly asks for "each category write a survey", "分别写综述", "per-category review", or equivalent, write separate review sections for each category.

7. Write the review in academic survey style

The review must read like a normal survey paper, not a bullet summary dump.

  • Use a concise academic title.
  • Include an abstract when the output is formal enough to justify it.
  • Include keywords when they help position the review.
  • Use an introduction that explains background, significance, scope, source selection, and the organizing logic of the review.
  • Organize the main body by the most defensible basis for the corpus:

- chronology - research themes - method families - viewpoints or schools

  • End with a conclusion or concluding discussion.
  • Add future directions, outlook, or open problems when the corpus supports them.
  • List references in GB/T 7714 style when bibliographic data is available.

Typical sections in a strong review are:

  • title
  • abstract
  • keywords
  • introduction
  • themed main sections
  • discussion, conclusion, or both
  • future directions or open problems when useful
  • references

Not every output needs every section. Match the structure to the user's request, the corpus size, and the field while staying recognizably review-like.

Read review-paper-style.md when drafting the prose review or choosing section structure.

8. Keep the prose review-like

  • Prefer connected academic prose over bullet dumps.
  • Use tables only to support comparison, not replace the review.
  • Do not invent datasets, metrics, or reference details.
  • If extracted metadata is incomplete, keep partial references and state what is missing.

Output Contract

Return results in this order unless the user asks otherwise:

  1. Corpus summary
  2. Classification scheme
  3. Classification table
  4. Formal review article
  5. References

If the user wants structured output, read output-schema.md.

Bundled Scripts

scripts/normalize-sources.mjs

  • Normalize mixed PDF and URL inputs into a JSON manifest.
  • Use when the source set is large, mixed, or should be reused.

scripts/extract-paper-records.mjs

  • Fetch URLs, resolve likely paper metadata, and extract paper text evidence from URLs or PDFs.
  • Prefer this script before asking the model to reason over a large source set.
  • Use its output as the main context object for classification and review drafting.

scripts/render-formal-review-template.mjs

  • Render a flexible academic-review scaffold from structured paper records.
  • Default to one integrated review.
  • Use --per-category only when the user explicitly asks for separate category reviews.

Quality Bar

  • Run extraction before classification unless the user already gave structured paper records.
  • Keep classification and review consistent with extracted evidence.
  • Use raw source re-reading only to fill important gaps.
  • If the extractor had to rely on weak fallbacks, say so.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.74%
按下载量换算1,687

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills