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

paper-2-web纸质 2 纸质

Agent Skill

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

总安装

703

周安装

29

GitHub Stars

14

下载量

230
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/jackspace/claudeskillz --skill paper-2-web

简介

paper-2-web 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景进行信息检索的研究与数据分析场景。
  • 通过关键词、来源仓库或原始 README 核验具体用法,结合宿主环境灵活调用。
  • 安装命令为 npx skills add https://github.com/jackspace/claudeskillz --skill paper-2-web。
  • 使用前需确认权限范围、维护状态,注意是否触发联网、命令执行或文件读写操作。

SKILL.md

Paper2All: Academic Paper Transformation Pipeline

Overview

This skill enables the transformation of academic papers into multiple promotional and presentation formats using the Paper2All autonomous pipeline. The system converts research papers (LaTeX or PDF) into three primary outputs:

  1. Paper2Web: Interactive, explorable academic homepages with layout-aware design
  2. Paper2Video: Professional presentation videos with narration, slides, and optional talking-head
  3. Paper2Poster: Print-ready conference posters with professional layouts

The pipeline uses LLM-powered content extraction, design generation, and iterative refinement to create high-quality outputs suitable for conferences, journals, preprint repositories, and academic promotion.

When to Use This Skill

Use this skill when:

  • Creating conference materials: Posters, presentation videos, and companion websites for academic conferences
  • Promoting research: Converting published papers or preprints into accessible, engaging web formats
  • Preparing presentations: Generating video abstracts or full presentation videos from paper content
  • Disseminating findings: Creating promotional materials for social media, lab websites, or institutional showcases
  • Enhancing preprints: Adding interactive homepages to bioRxiv, arXiv, or other preprint submissions
  • Batch processing: Generating promotional materials for multiple papers simultaneously

Trigger phrases:

  • "Convert this paper to a website"
  • "Generate a conference poster from my LaTeX paper"
  • "Create a video presentation from this research"
  • "Make an interactive homepage for my paper"
  • "Transform my paper into promotional materials"
  • "Generate a poster and video for my conference talk"

Core Capabilities

1. Paper2Web: Interactive Website Generation

Converts papers into layout-aware, interactive academic homepages that go beyond simple HTML conversion.

Key Features:

  • Responsive, multi-section layouts adapted to paper content
  • Interactive figures, tables, and citations
  • Mobile-friendly design with navigation
  • Automatic logo discovery (with Google Search API)
  • Aesthetic refinement and quality assessment

Best For: Post-publication promotion, preprint enhancement, lab websites, permanent research showcases

See references/paper2web.md for detailed documentation


2. Paper2Video: Presentation Video Generation

Generates professional presentation videos with slides, narration, cursor movements, and optional talking-head video.

Key Features:

  • Automated slide generation from paper structure
  • Natural-sounding speech synthesis
  • Synchronized cursor movements and highlights
  • Optional talking-head video using Hallo2 (requires GPU)
  • Multi-language support

Best For: Video abstracts, conference presentations, online talks, course materials, YouTube promotion

See references/paper2video.md for detailed documentation


3. Paper2Poster: Conference Poster Generation

Creates print-ready academic posters with professional layouts and visual design.

Key Features:

  • Custom poster dimensions (any size)
  • Professional design templates
  • Institution branding support
  • QR code generation for links
  • High-resolution output (300+ DPI)

Best For: Conference poster sessions, symposiums, academic exhibitions, virtual conferences

See references/paper2poster.md for detailed documentation


Quick Start

Prerequisites

  1. Install Paper2All: git clone https://github.com/YuhangChen1/Paper2All.git cd Paper2All conda create -n paper2all python=3.11 conda activate paper2all pip install -r requirements.txt
  2. Configure API Keys (create .env file): OPENAI_API_KEY=your_openai_api_key_here # Optional: GOOGLE_API_KEY and GOOGLE_CSE_ID for logo search
  3. Install System Dependencies:

- LibreOffice (document conversion) - Poppler utilities (PDF processing) - NVIDIA GPU with 48GB (optional, for talking-head videos)

See references/installation.md for complete installation guide


Basic Usage

Generate All Components (website + poster + video):

python pipeline_all.py \
  --input-dir "path/to/paper" \
  --output-dir "path/to/output" \
  --model-choice 1

Generate Website Only:

python pipeline_all.py \
  --input-dir "path/to/paper" \
  --output-dir "path/to/output" \
  --model-choice 1 \
  --generate-website

Generate Poster with Custom Size:

python pipeline_all.py \
  --input-dir "path/to/paper" \
  --output-dir "path/to/output" \
  --model-choice 1 \
  --generate-poster \
  --poster-width-inches 60 \
  --poster-height-inches 40

Generate Video (lightweight pipeline):

python pipeline_light.py \
  --model_name_t gpt-4.1 \
  --model_name_v gpt-4.1 \
  --result_dir "path/to/output" \
  --paper_latex_root "path/to/paper"

See references/usage_examples.md for comprehensive workflow examples


Workflow Decision Tree

Use this decision tree to determine which components to generate:

User needs promotional materials for paper?
│
├─ Need permanent online presence?
│  └─→ Generate Paper2Web (interactive website)
│
├─ Need physical conference materials?
│  ├─→ Poster session? → Generate Paper2Poster
│  └─→ Oral presentation? → Generate Paper2Video
│
├─ Need video content?
│  ├─→ Journal video abstract? → Generate Paper2Video (5-10 min)
│  ├─→ Conference talk? → Generate Paper2Video (15-20 min)
│  └─→ Social media? → Generate Paper2Video (1-3 min)
│
└─ Need complete package?
   └─→ Generate all three components

Input Requirements

Supported Input Formats

1. LaTeX Source (Recommended):

paper_directory/
├── main.tex              # Main paper file
├── sections/             # Optional: split sections
├── figures/              # All figure files
├── tables/               # Table files
└── bibliography.bib      # References

2. PDF:

  • High-quality PDF with embedded fonts
  • Selectable text (not scanned images)
  • High-resolution figures (300+ DPI preferred)

Input Organization

Single Paper:

input/
└── paper_name/
    ├── main.tex (or paper.pdf)
    ├── figures/
    └── bibliography.bib

Multiple Papers (batch processing):

input/
├── paper1/
│   └── main.tex
├── paper2/
│   └── main.tex
└── paper3/
    └── main.tex

Common Parameters

Model Selection

  • --model-choice 1: GPT-4 (best balance of quality and cost)
  • --model-choice 2: GPT-4.1 (latest features, higher cost)
  • --model_name_t gpt-3.5-turbo: Faster, lower cost (acceptable quality)

Component Selection

  • --generate-website: Enable website generation
  • --generate-poster: Enable poster generation
  • --generate-video: Enable video generation
  • --enable-talking-head: Add talking-head to video (requires GPU)

Customization

  • --poster-width-inches [width]: Custom poster width
  • --poster-height-inches [height]: Custom poster height
  • --video-duration [seconds]: Target video length
  • --enable-logo-search: Automatic institution logo discovery

Output Structure

Generated outputs are organized by paper and component:

output/
└── paper_name/
    ├── website/
    │   ├── index.html
    │   ├── styles.css
    │   └── assets/
    ├── poster/
    │   ├── poster_final.pdf
    │   ├── poster_final.png
    │   └── poster_source/
    └── video/
        ├── final_video.mp4
        ├── slides/
        ├── audio/
        └── subtitles/

Best Practices

Input Preparation

  1. Use LaTeX when possible: Provides best content extraction and structure
  2. Organize files properly: Keep all assets (figures, tables, bibliography) in paper directory
  3. High-quality figures: Use vector formats (PDF, SVG) or high-resolution rasters (300+ DPI)
  4. Clean LaTeX: Remove compilation artifacts, ensure source compiles successfully

Model Selection Strategy

  • GPT-4: Best for production-quality outputs, conferences, publications
  • GPT-4.1: Use when you need latest features or best possible quality
  • GPT-3.5-turbo: Use for quick drafts, testing, or simple papers

Component Priority

For tight deadlines, generate in this order:

  1. Website (fastest, most versatile, ~15-30 min)
  2. Poster (moderate speed, for print deadlines, ~10-20 min)
  3. Video (slowest, can be generated later, ~20-60 min)

Quality Assurance

Before finalizing outputs:

  1. Website: Test on multiple devices, verify all links work, check figure quality
  2. Poster: Print test page, verify text readability from 3-6 feet, check colors
  3. Video: Watch entire video, verify audio synchronization, test on different devices

Resource Requirements

Processing Time

  • Website: 15-30 minutes per paper
  • Poster: 10-20 minutes per paper
  • Video (no talking-head): 20-60 minutes per paper
  • Video (with talking-head): 60-120 minutes per paper

Computational Requirements

  • CPU: Multi-core processor for parallel processing
  • RAM: 16GB minimum, 32GB recommended for large papers
  • GPU: Optional for standard outputs, required for talking-head (NVIDIA A6000 48GB)
  • Storage: 1-5GB per paper depending on components and quality settings

API Costs (Approximate)

  • Website: $0.50-2.00 per paper (GPT-4)
  • Poster: $0.30-1.00 per paper (GPT-4)
  • Video: $1.00-3.00 per paper (GPT-4)
  • Complete package: $2.00-6.00 per paper (GPT-4)

Troubleshooting

Common Issues

LaTeX parsing errors:

  • Ensure LaTeX source compiles successfully: pdflatex main.tex
  • Check all referenced files are present
  • Verify no custom packages prevent parsing

Poor figure quality:

  • Use vector formats (PDF, SVG, EPS) instead of rasters
  • Ensure raster images are 300+ DPI
  • Check figures render correctly in compiled PDF

Video generation failures:

  • Verify sufficient disk space (5GB+ recommended)
  • Check all dependencies installed (LibreOffice, Poppler)
  • Review error logs in output directory

Poster layout issues:

  • Verify poster dimensions are reasonable (24"-72" range)
  • Check content length (very long papers may need manual curation)
  • Ensure figures have appropriate resolution for poster size

API errors:

  • Verify API keys in .env file
  • Check API credit balance
  • Ensure no rate limiting (wait and retry)

Platform-Specific Features

Social Media Optimization

The system auto-detects target platforms:

Twitter/X (English, numeric folder names):

mkdir -p input/001_twitter/
# Generates English promotional content

Xiaohongshu/小红书 (Chinese, alphanumeric folder names):

mkdir -p input/xhs_paper/
# Generates Chinese promotional content

Conference-Specific Formatting

Specify conference requirements:

  • Standard poster sizes (4'×3', 5'×4', A0, A1)
  • Video abstract length limits (typically 3-5 minutes)
  • Institution branding requirements
  • Color scheme preferences

Integration and Deployment

Website Deployment

Deploy generated websites to:

  • GitHub Pages: Free hosting with custom domain
  • Academic hosting: University web servers
  • Personal servers: AWS, DigitalOcean, etc.
  • Netlify/Vercel: Modern hosting with CI/CD

Poster Printing

Print-ready files work with:

  • Professional poster printing services
  • University print shops
  • Online services (e.g., Spoonflower, VistaPrint)
  • Large format printers (if available)

Video Distribution

Share videos on:

  • YouTube: Public or unlisted for maximum reach
  • Institutional repositories: University video platforms
  • Conference platforms: Virtual conference systems
  • Social media: Twitter, LinkedIn, ResearchGate

Advanced Usage

Batch Processing

Process multiple papers efficiently:

# Organize papers in batch directory
for paper in paper1 paper2 paper3; do
    python pipeline_all.py \
      --input-dir input/$paper \
      --output-dir output/$paper \
      --model-choice 1 &
done
wait

Custom Branding

Apply institution or lab branding:

  • Provide logo files in paper directory
  • Specify color schemes in configuration
  • Use custom templates (advanced)
  • Match conference theme requirements

Multi-Language Support

Generate content in different languages:

  • Specify target language in configuration
  • System translates content appropriately
  • Selects appropriate voice for video narration
  • Adapts design conventions to culture

References and Resources

This skill includes comprehensive reference documentation:

  • references/installation.md: Complete installation and configuration guide
  • references/paper2web.md: Detailed Paper2Web documentation with all features
  • references/paper2video.md: Comprehensive Paper2Video guide including talking-head setup
  • references/paper2poster.md: Complete Paper2Poster documentation with design templates
  • references/usage_examples.md: Real-world examples and workflow patterns

External Resources:

Evaluation and Quality Metrics

The Paper2All system includes built-in quality assessment:

Content Quality

  • Completeness: Coverage of paper content
  • Accuracy: Faithful representation of findings
  • Clarity: Accessibility and understandability
  • Informativeness: Key information prominence

Design Quality

  • Aesthetics: Visual appeal and professionalism
  • Layout: Balance, hierarchy, and organization
  • Readability: Text legibility and figure clarity
  • Consistency: Uniform styling and branding

Technical Quality

  • Performance: Load times, responsiveness
  • Compatibility: Cross-browser, cross-device support
  • Accessibility: WCAG compliance, screen reader support
  • Standards: Valid HTML/CSS, print-ready PDFs

All outputs undergo automated quality checks before generation completes.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.05%
按下载量换算62

windsurf

22.48%
按下载量换算52

OpenCode

18.91%
按下载量换算43

Codex

13.48%
按下载量换算31

Antigravity

7.56%
按下载量换算17

Gemini CLI

2.96%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills