Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

paper-to-table纸到桌子

Agent Skill

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

总安装

1,022

周安装

43

GitHub Stars

公开资料未说明

下载量

358
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install paper-to-table

简介

将学术论文 (PDF/DOCX/TXT) 中的结构化数据提取到文献综述表 (XLSX/CSV) 中,并具有保真度、批量支持和多域处理功能。

SKILL.md

name
paper-to-table
description
Extract structured data from academic papers (PDF/DOCX/TXT) into literature review tables (XLSX/CSV). Use when user says "整理文献到表格", "extract papers to table", "literature review table", or provides papers with a table template. Supports batch folder processing, dynamic header mapping, duplicate detection, and format preservation. Domains: Psychology, Cognitive Neuroscience, Computer Science, Brain Science. Handles English and Chinese papers.

Paper To Table

Extract structured information from academic papers and populate literature review tables.

Quality Principles

1. Extraction Fidelity (质量约束)

  • NEVER hallucinate information not present in the paper
  • NEVER infer beyond what is explicitly stated
  • Use "N/A" only when a field truly cannot be found after thorough search
  • Distinguish between:

- Explicitly stated facts → Extract directly - Implied but not stated → Mark as "N/A" or note as implied - Absent information → "N/A"

  • Confidence scoring: Rate each extraction as High/Medium/Low confidence

2. Field Understanding (字段理解)

  • Understand the semantic meaning of each table header
  • Map paper content to headers based on meaning, not just keyword matching
  • Handle synonyms and domain-specific terminology
  • Recognize implicit information in context

3. Structured Depth (结构化深度)

  • Extract at appropriate granularity
  • Distinguish between study-level, experiment-level, and result-level information
  • Preserve relationships between related fields
  • Handle multi-experiment papers correctly

4. Batch Stability (批处理稳定性)

  • Process papers independently (failure of one doesn't affect others)
  • Log all operations for audit trail
  • Support resume from interruption
  • Validate outputs before writing to table

Workflow

Step 1: Identify Inputs

  • Papers: Single file, multiple files, or folder path → 支持 PDF/DOCX/TXT
  • Table template: XLSX 或 CSV,含表头定义结构
  • Language: 自动检测或用户指定
  • Domain: Psychology / Cognitive Neuroscience / Computer Science / Brain Science / General

Step 2: Read Table Headers

python scripts/read_table.py <table_path>

输出:列名、数据类型约束、领域推断。

Step 3: Extract Paper Content

python scripts/extract_paper.py <paper_path> --structured

自动处理格式:PDF→pdfplumber/PyMuPDF/OCR fallback;DOCX→python-docx;TXT→直接读取。

输出结构化 JSON:包含 full_textsections(abstract/introduction/methods/results/discussion/conclusion)。

Step 4: LLM Extraction (Critical)

原则:只提取论文明确陈述的信息,绝不臆造。

输入:表头 + 论文全文/章节

输出格式(每个字段):

{
  "FieldName": {
    "value": "extracted value 或 N/A",
    "confidence": "HIGH/MEDIUM/LOW",
    "source": "paper location"
  }
}

CRITICAL RULES:

  1. JSON keys 必须与表头完全匹配(大小写敏感)
  2. 缺失信息→"N/A",不做推断
  3. 多值用分号分隔
  4. 保留原文语言
  5. LOW confidence 字段需说明原因

提取优先级:Abstract→Methods→Results→Discussion→补充材料

Step 5: Validate & Write

python scripts/write_table.py <table_path> '<json_data>' --validate

验证内容:JSON格式、键名匹配、无重复条目、数据类型合理。

重复检测:标题相似度>85%视为重复,跳过并警告。

Step 6: Report

报告:处理论文数、新增行数、跳过数(重复/错误)、LOW confidence 字段、输出路径。

Batch Processing

python scripts/batch_process.py <papers_folder> <table_path> [output_folder]
  • 独立处理每篇论文(单篇失败不影响其他)
  • 自动生成日志 batch_log_YYYYMMDD_HHMMSS.json
  • 支持断点续传(从日志恢复进度)

详细字段定义、提取策略 → references/extraction-patterns.md 质量检查清单 → references/quality-checklist.md

Domain Specializations

Psychology / Cognitive Neuroscience / Computer Science / Brain Science

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.46%
按下载量换算299

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills