← 返回 Skills 市场
haataa

Ai Paper Survey

作者 haataa · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ✓ 安全检测通过
197
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install ai-paper-survey
功能描述
Conduct structured AI paper surveys using alphaXiv MCP tools. Reads user research interests from a keywords file, searches recent papers across multiple dime...
使用说明 (SKILL.md)

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.
  2. 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")
  3. 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
  4. Determine the time range (default: last 3 months from today).

  5. 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

Level Searches Deep reads Best for
Quick 4 2-3 Weekly check-in
Standard 6 4-6 Monthly review
Thorough 8-10 6-8 Quarterly 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
安全使用建议
This skill appears to do what it says: search for, screen, read, and summarize recent AI papers. Before installing or running it, check the following: 1) Confirm your platform provides and secures the alphaXiv MCP integration (authentication/credentials) since the skill assumes that connection but doesn't declare credentials. 2) Ensure the paper-impact-analyzer skill or the referenced python script is installed from a trusted source—the skill will invoke that script locally. 3) Review any local 'research-keywords*.md' or similarly named files you keep in the working directory; the skill will read them and may use their contents to search and filter papers. 4) Be comfortable with the skill retrieving full paper texts via the external MCP service (this may transmit queries/IDs to that service). If any of these prerequisites are missing or untrusted, either provide vetted integrations or avoid running the skill until you can verify them.
功能分析
Type: OpenClaw Skill Name: ai-paper-survey Version: 1.1.0 The 'ai-paper-survey' skill is a structured research tool designed to automate AI literature reviews by integrating with the alphaXiv MCP server and a local impact analyzer. The workflow involves reading user-defined keywords from the local directory, performing semantic searches, and generating a categorized Markdown report. While it utilizes high-privilege tools like Bash to execute a local Python script (SKILL.md, Phase 4), this behavior is well-documented and strictly aligned with its stated purpose of paper analysis, with no evidence of data exfiltration, persistence, or malicious intent.
能力评估
Purpose & Capability
The name/description match the runtime instructions: the skill searches papers (via alphaXiv MCP tools), screens and reads full text for top candidates, runs an impact analyzer, and writes a Markdown report. Requiring the python binary and a paper-impact-analyzer dependency is proportional to this workflow.
Instruction Scope
The SKILL.md explicitly instructs the agent to read a research keywords file from the current working directory (files matching specific patterns) and to call alphaXiv MCP APIs (embedding_similarity_search, full_text_papers_search, get_paper_content). It also runs a local python script from the paper-impact-analyzer. These actions are appropriate for the task but you should be aware the skill will read files in your working directory and fetch full paper text via the external alphaXiv service.
Install Mechanism
This is instruction-only with no install spec or code to write to disk. That is low risk — nothing is downloaded or installed by the skill itself.
Credentials
The skill does not request environment variables or credentials in the metadata, but it requires an alphaXiv MCP server connection and a separate paper-impact-analyzer skill to be present. The SKILL.md assumes those integrations exist; ensure authentication for alphaXiv (if required) is provided by the platform and not implicitly expected from the user environment.
Persistence & Privilege
always is false and the skill does not ask to modify other skills or system-wide agent settings. It writes a report to the working directory, which is expected behavior.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ai-paper-survey
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ai-paper-survey 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
- Added metadata file (_meta.json) to support skill discovery and management. - No changes to core skill workflow or documentation (SKILL.md unchanged). - Incremented version to 1.1.0 for improved packaging and compatibility.
v1.0.0
Initial release: 5-phase structured paper survey workflow
元数据
Slug ai-paper-survey
版本 1.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Ai Paper Survey 是什么?

Conduct structured AI paper surveys using alphaXiv MCP tools. Reads user research interests from a keywords file, searches recent papers across multiple dime... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 197 次。

如何安装 Ai Paper Survey?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install ai-paper-survey」即可一键安装,无需额外配置。

Ai Paper Survey 是免费的吗?

是的,Ai Paper Survey 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Ai Paper Survey 支持哪些平台?

Ai Paper Survey 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Ai Paper Survey?

由 haataa(@haataa)开发并维护,当前版本 v1.1.0。

💬 留言讨论