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

paperclawpaperclaw 搜索

Agent Skill

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

总安装

10,333

周安装

418

GitHub Stars

1

下载量

3,244
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install paperclaw

简介

通过人工智能支持的多语言摘要和电子邮件传送,从多个来源(arXiv 等)获取、分类和总结论文。

SKILL.md

name
paper_claw
description
Fetch, classify, and summarize papers from multiple sources (arXiv, etc.) with AI-powered multi-language summaries and email delivery.
homepage
https://github.com/PigeonDan1/paper_claw
metadata
{"clawdbot":{"emoji":"📰","requires":{"bins":["python3"],"env":["SMTP_HOST","SMTP_PORT","SMTP_USER","SMTP_PASS"],"optional_env":["MOONSHOT_API_KEY","OPENAI_API_KEY","ANTHROPIC_API_KEY","GOOGLE_API_KEY","DEEPSEEK_API_KEY"]}}}

Paper Claw Skill

Intelligent multi-source paper digest generator. Automatically fetch, classify, and summarize papers with AI-powered translations in 7 languages.

Features

  • 🌐 Multi-Source Support — arXiv (170+ categories), extensible for CNKI, Web of Science
  • 🗣️ Multi-Language — Chinese, English, Japanese, Korean, German, French, Spanish
  • 🤖 Multi-Provider LLM — Kimi, OpenAI, Claude, Gemini, DeepSeek with auto-fallback
  • 📧 Email Delivery — HTML digests with full Markdown attachment
  • 👥 Recipient Management — JSON-based configuration
  • ⚙️ Config-Driven — Zero-code customization
  • 🔄 State Persistence — Auto-deduplication

Setup

1. Environment Variables

Required for email delivery:

export SMTP_HOST="smtp.qq.com"
export SMTP_PORT="465"
export SMTP_USER="your-email@qq.com"
export SMTP_PASS="your-auth-code"

Optional for AI summaries (multiple providers supported):

# Primary: Kimi AI (recommended for Chinese)
export MOONSHOT_API_KEY="sk-your-kimi-key"

# Alternatives (auto-fallback)
export OPENAI_API_KEY="sk-your-openai-key"
export ANTHROPIC_API_KEY="sk-your-claude-key"
export GOOGLE_API_KEY="your-gemini-key"
export DEEPSEEK_API_KEY="sk-your-deepseek-key"

2. Recipient Configuration

Create config/recipients.json:

{
  "recipients": [
    {"email": "prof@university.edu.cn", "name": "Professor", "enabled": true},
    {"email": "student@university.edu.cn", "name": "Student", "enabled": true}
  ]
}

3. Source & Category Configuration

Edit config/default.json to customize sources:

{
  "sources": {
    "arxiv": {
      "enabled": true,
      "categories": [
        {"id": "cs.CL", "name": "NLP", "url": "https://arxiv.org/list/cs.CL/recent"},
        {"id": "cs.CV", "name": "Computer Vision", "url": "https://arxiv.org/list/cs.CV/recent"}
      ]
    }
  }
}

See config/arxiv_categories.json for all 170+ available categories.

4. Language Configuration

{
  "language": {
    "default": "zh",
    "supported": ["zh", "en", "ja", "ko", "de", "fr", "es"]
  }
}

Quick Start for Agents

The fastest way to configure Paper Claw is using Presets:

from skill.example import list_presets, preview_preset, apply_preset

# Step 1: See available presets
presets = list_presets()
# Returns: [
#   {"id": "speech_audio", "name": "Speech & Audio", ...},
#   {"id": "nlp", "name": "NLP & LLM", ...},
#   {"id": "computer_vision", "name": "Computer Vision", ...},
#   {"id": "general_ai", "name": "General AI/ML", ...}
# ]

# Step 2: Preview what will be configured
preview = preview_preset("nlp")
# Shows: arXiv categories (cs.CL, cs.LG) and classification categories (LLM, RAG, etc.)

# Step 3: Apply the preset
apply_preset("nlp")  # Updates config/default.json automatically

Available Presets

Preset IDResearch FieldArXiv CategoriesClassification
speech_audioSpeech & Audiocs.SD, eess.ASSpeech LLM, ASR, TTS, Enhancement, SLU, Paralinguistics, Audio
nlpNLP & LLMcs.CL, cs.LG, cs.AILLM, RAG, Agents, NLP Tasks, Evaluation
computer_visionComputer Visioncs.CV, cs.MM, cs.LGImage Generation, Object Detection, Segmentation, Video Understanding, Multimodal, 3D Vision
general_aiGeneral AI/MLcs.AI, cs.LG, cs.CL, cs.CV, stat.MLDeep Learning, RL, Generative Models, Optimization, Theory, Applications

Detailed Usage

List Presets

from skill.example import list_presets

presets = list_presets()
for p in presets:
    print(f"{p['id']}: {p['name']}")
    print(f"  {p['description']}")

Preview Before Apply

from skill.example import preview_preset

# See what will be configured
preview = preview_preset("computer_vision")
print(f"ArXiv categories: {[c['id'] for c in preview['arxiv_categories']]}")
print(f"Classifications: {[c['name'] for c in preview['classification_categories']]}")

Apply Preset

from skill.example import apply_preset

# Apply NLP configuration
result = apply_preset("nlp")
if result["success"]:
    print(f"Applied: {result['preset_name']}")
    print(f"ArXiv: {result['arxiv_categories']}")
    print(f"Categories: {result['classification_categories']}")

Fetch Papers

# Fetch today's papers (default language from config)
python scripts/main.py

# Fetch with specific language
python scripts/main.py --day 2026-03-10 --language en
python scripts/main.py --day 2026-03-10 --language ja  # Japanese

# Fetch date range
python scripts/main.py --start-date 2026-03-01 --end-date 2026-03-10

Generated Outputs

  • Markdown digest: content/posts/YYYY-MM-DD-arxiv-audio-digest.md
  • JSON data: data/processed/YYYY-MM-DD.json
  • Raw data: data/raw/YYYY-MM-DD.json

Email Delivery

Email is automatically sent with:

  • HTML preview — Shows first 3 papers with logo and GitHub link
  • Full Markdown attachment — Complete digest with all papers

Schedule Daily Runs

GitHub Actions: Already configured in .github/workflows/daily_digest.yml

Linux/Mac Cron:

0 1 * * * cd /path/to/paper_claw && python scripts/main.py

Windows Task Scheduler:

$Action = New-ScheduledTaskAction -Execute "python.exe" -Argument "scripts/main.py"
$Trigger = New-ScheduledTaskTrigger -Daily -At "09:00"
Register-ScheduledTask -TaskName "PaperClaw" -Action $Action -Trigger $Trigger

AI Summary Chain

The system uses intelligent fallback across providers:

Kimi → OpenAI → Claude → DeepSeek → Gemini → Rule-based

Even without API keys, summaries are generated using rule-based methods.

Agent Tools

fetch_papers

Fetch papers from configured sources.

Parameters:

  • day (string, optional): Date in YYYY-MM-DD format
  • start_date + end_date (string, optional): Date range
  • language (string, optional): Output language (zh/en/ja/ko/de/fr/es)

Example:

from skill.example import fetch_papers
result = fetch_papers(day="2026-03-10", language="en")

configure_sources

Update data sources and categories.

Parameters:

  • sources (object): Source configuration with categories

Example:

from skill.example import configure_sources
configure_sources({
    "arxiv": {
        "enabled": True,
        "categories": [
            {"id": "cs.AI", "name": "AI"},
            {"id": "cs.LG", "name": "ML"}
        ]
    }
})

configure_language

Set output language for summaries.

Parameters:

  • language (string): One of zh/en/ja/ko/de/fr/es

Example:

from skill.example import configure_language
configure_language("ja")  # Japanese output

get_digest_content

Retrieve generated digest.

Parameters:

  • date (string): Date in YYYY-MM-DD format
  • format (string): "markdown", "json", or "summary"

Example:

from skill.example import get_digest_content
content = get_digest_content("2026-03-10", format="summary")

configure_recipients

Update email recipients.

Parameters:

  • recipients (array): List of {email, name, enabled}

Example:

from skill.example import configure_recipients
configure_recipients([
    {"email": "user@example.com", "name": "User", "enabled": True}
])

Preset Details

Speech & Audio (Default)

Best for: Speech recognition, synthesis, audio processing researchers

ArXiv Categories:

  • cs.SD - Sound (Audio processing, music computing)
  • eess.AS - Audio and Speech Processing

Classification:

CategoryKeywords
Speech LLMspeech llm, audio llm, spoken language model
ASRasr, speech recognition, speech-to-text, whisper
TTStts, text-to-speech, speech synthesis, tacotron
Enhancementspeech enhancement, noise reduction, beamforming
SLUspoken language understanding, intent recognition
Paralinguisticsemotion recognition, speaker verification
Audioaudio classification, sound event detection

NLP & LLM

Best for: Natural language processing, large language model researchers

ArXiv Categories:

  • cs.CL - Computation and Language
  • cs.LG - Machine Learning
  • cs.AI - Artificial Intelligence

Classification:

CategoryKeywords
LLMllm, gpt, transformer, prompt engineering, llama, bert
RAGrag, retrieval-augmented, knowledge base, embedding
Agentsagent, multi-agent, tool use, function calling
NLP Tasksner, sentiment analysis, translation, summarization
Evaluationbenchmark, evaluation metrics, human evaluation

Computer Vision

Best for: Computer vision, image processing, multimodal researchers

ArXiv Categories:

  • cs.CV - Computer Vision
  • cs.MM - Multimedia
  • cs.LG - Machine Learning

Classification:

CategoryKeywords
Image Generationdiffusion model, gan, stable diffusion, text-to-image
Object Detectionyolo, rcnn, ssd, bounding box
Segmentationsemantic segmentation, mask, sam, u-net
Video Understandingaction recognition, temporal, tracking
Multimodalvision-language, clip, image-text, vqa
3D Visionpoint cloud, depth estimation, nerf

General AI/ML

Best for: Broad AI/ML research covering multiple domains

ArXiv Categories:

  • cs.AI, cs.LG, cs.CL, cs.CV, stat.ML

Classification:

CategoryKeywords
Deep Learningneural network, optimization, gradient descent
Reinforcement Learningrl, q-learning, policy gradient, actor-critic
Generative Modelsgan, vae, diffusion, flow-based
Optimizationconvex optimization, learning rate, adam
Theorygeneralization, convergence, bounds, complexity
Applicationshealthcare, finance, robotics, real-world

Customizing After Preset

After applying a preset, you can further customize:

from skill.example import configure_sources, configure_categories

# Add more arXiv categories
configure_sources({
    "arxiv": {
        "enabled": True,
        "categories": [
            {"id": "cs.IR", "name": "Information Retrieval", 
             "url": "https://arxiv.org/list/cs.IR/recent"}
        ]
    }
})

# Add custom classification category
configure_categories([
    {
        "name": "Your Custom Category",
        "labels": {"zh": "自定义分类", "en": "Custom"},
        "keywords": ["keyword1", "keyword2"]
    }
])

SMTP Providers

ServiceHostPortNote
QQ Mailsmtp.qq.com465Use authorization code
163 Mailsmtp.163.com465Use authorization code
Gmailsmtp.gmail.com465Use app password

Notes

  • All configurations are in config/ directory
  • .env and config/recipients.json are git-ignored for security
  • API rate limits: System auto-retries with fallback providers
  • State is tracked in data/state.json to avoid duplicate processing
  • Email includes both HTML preview and full Markdown attachment
  • Logo displayed in emails from GitHub raw URL

Examples

# Quick start - fetch and send email
python scripts/main.py --day 2026-03-10

# Multi-language examples
python scripts/main.py --day 2026-03-10 --language zh  # Chinese
python scripts/main.py --day 2026-03-10 --language en  # English
python scripts/main.py --day 2026-03-10 --language ja  # Japanese

# View paper count
cat data/processed/2026-03-10.json | jq '.summary.total'

# View papers by category
cat data/processed/2026-03-10.json | jq '.grouped.ASR'

# Reset state and re-fetch
python scripts/reset_state.py
python scripts/main.py --day 2026-03-10

Files

  • skill/tools.json — Tool definitions for agent frameworks
  • skill/example.py — Python usage examples
  • config/default.json — Source and language configuration
  • config/arxiv_categories.json — Complete arXiv category list
  • config/recipients.example.json — Recipient template

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.91%
按下载量换算2,560

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills