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

ai-paper-surveyAI 论文调查

Agent Skill

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

总安装

5,832

周安装

243

GitHub Stars

公开资料未说明

下载量

1,944
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ai-paper-survey

简介

用于查找、检索和筛选相关信息。ai-paper-survey 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装命令:openclaw skills install ai-paper-survey。
  • 建议确认权限范围、维护状态及是否触发联网或命令执行。

SKILL.md

name
ai-paper-survey
description
Conduct structured AI paper surveys using alphaXiv MCP tools. Reads user research interests from a keywords file, searches recent papers across multiple dimensions, classifies by innovation tier, runs impact analysis, and outputs a Markdown report. Use when the user asks to survey recent papers, do a literature review, find what's new in a research area, or track progress in AI subfields.
version
1.0.0
allowed-tools
Bash Read Write Agent
license
MIT-0
metadata
skill-author
haataa
version
1.0.0
openclaw
emoji
🔬
requires
bins
["python"]

AI Paper Survey Skill

Structured, multi-phase paper survey workflow for AI research.

When to Use

  • "Survey recent papers in [topic]"
  • "What's new in agent/LLM/multimodal research?"
  • "Find the most important papers from the last N months"
  • "Do a literature review on [topic]"
  • "Track progress in [research area]"

Prerequisites

  • alphaXiv MCP server must be connected (provides embedding_similarity_search, full_text_papers_search, get_paper_content)
  • paper-impact-analyzer skill installed (for impact assessment)
  • Research keywords file (optional): a Markdown file listing the user's research interests and keywords

Workflow: 5-Phase Pipeline

Phase 0: Load Research Context

  1. Check if a research keywords file exists. Look for files matching patterns:

- 研究关键词*.md - research-keywords*.md - research-interests*.md in the current working directory.

  1. If found, read it and extract:

- Theme list: the major research themes (e.g., "RL optimization", "Agent & Tool Calling") - Keywords: specific terms to search for (e.g., "GRPO", "Nested Learning", "VLA") - Models of interest: specific model names (e.g., "DeepSeek V4", "Qwen3.5")

  1. If no keywords file, ask the user for:

- Research topics (1-5 topics) - Time range (default: last 3 months) - Any specific papers or authors to track

  1. Determine the time range (default: last 3 months from today).
  1. Generate search queries using the template below. For each user theme T, generate:
Semantic query:  "Fundamental advances in {T}, paradigm shift, redefine {T}, {year}"
Keyword query:   "{specific_keywords_from_T} {year_range}"
Contrast query:  "Alternative to {current_paradigm_of_T}, beyond {T}, {year}"

Phase 1: Broad Search (Parallel)

Execute search queries in parallel using alphaXiv MCP tools:

  • Use embedding_similarity_search for semantic queries (captures conceptual matches)
  • Use full_text_papers_search for keyword queries (captures exact term matches)

Rules:

  • Launch 4-6 parallel searches covering different themes
  • Each search returns up to 15 results
  • Collect all results into a candidate pool
  • Deduplicate by arXiv ID
  • Filter by publication date (must be within the specified time range)

Expected output: 30-60 unique candidate papers with titles and abstracts.

Phase 2: Initial Screening (LLM Judgment)

For each candidate paper, classify by the user's framework. Default framework (3-tier):

  • Tier 1 (Essence): "What IS X?" — Redefines the problem itself. Asks fundamental questions about the nature of learning, reasoning, action, perception, etc. These papers have lasting impact because they challenge assumptions.
  • Tier 2 (Engineering): "How to do X better?" — Optimizes within existing frameworks. Valuable but doesn't change paradigms. Examples: better MoE routing, improved training recipes, new benchmarks.
  • Tier 3 (Patch): "How to mitigate this symptom?" — Short-term fixes. Inference token pruning, fine-tuning tricks, quantization improvements.

Rules:

  • Use ONLY title + abstract for screening (don't read full papers yet)
  • Be selective: aim for 8-12 papers across all tiers
  • Tier 1 should have 3-5 papers max
  • Apply the user's specific keywords to boost relevance

Expected output: Classified paper list with tier assignments.

Phase 3: Deep Reading (Parallel, Top Candidates Only)

For Tier 1 and top Tier 2 papers (4-6 papers max), use get_paper_content to retrieve full analysis.

After reading each paper, immediately extract and cache:

  • Core contribution (1 sentence)
  • Method keywords (3-5 terms)
  • Best experimental result (1-2 numbers)
  • Open-source links (GitHub URL if any)
  • Venue acceptance status
  • Key limitation

Discard the raw full-text analysis after extraction to manage context window.

Phase 4: Impact Assessment

For each paper in the deep reading set, run the paper-impact-analyzer:

python path/to/paper-impact-analyzer/scripts/analyze.py {arxiv_id_1} {arxiv_id_2} ...

Merge impact data with the content analysis from Phase 3.

Phase 5: Synthesize Report

Generate a structured Markdown report with the following sections:

# {Topic} Paper Survey — {Date Range}

> Survey date: {today}
> Scope: {themes covered}
> Papers screened: {N candidates} → {M selected}

## Classification Framework
{Describe the tier system used}

## Tier 1 (Essence): Redefining the Problem
### Paper 1: {Title}
- **Essential question**: What fundamental assumption does this challenge?
- **Core contribution**: {1 sentence}
- **Key result**: {best number}
- **Impact**: {rating from analyzer} | {venue} | {github stars}
- **Links**: arXiv | GitHub
{... repeat for each Tier 1 paper}

## Tier 2 (Engineering): Doing It Better
| Paper | Contribution | Impact | Links |
|-------|-------------|--------|-------|
{table rows}

## Tier 3 (Patches): Symptom Relief
| Paper | What it fixes | Links |
|-------|--------------|-------|
{table rows}

## Top 3 Recommended Papers
{Ranked list with justification combining content depth + impact signals}

## Trends & Observations
{2-3 paragraphs on emerging patterns}

Save the report to {working_directory}/{topic}-paper-survey-{date}.md.

Configuration

Custom Classification Framework

Users can override the default 3-tier framework by specifying their own in the keywords file. The skill will use whatever framework the user provides.

Search Depth Control

LevelSearchesDeep readsBest for
Quick42-3Weekly check-in
Standard64-6Monthly review
Thorough8-106-8Quarterly survey

Default: Standard.

Example Usage

Survey the last 3 months of papers in my research areas
Quick survey: what's new in LLM reasoning and agent tool-calling since January?
Thorough literature review on RL training methods for LLMs, classify by innovation tier

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.84%
按下载量换算1,513

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills