Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

arxiv-researcharxiv 研究

Agent Skill

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

总安装

960

周安装

40

GitHub Stars

公开资料未说明

下载量

320
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/emi-dm/research-mcp --skill arxiv-research

简介

arxiv-research 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。

  • 专为学术论文研究设计的结构化信息提取工具。
  • 需配合 arXiv MCP server 运行才能正常使用。
  • 支持按提交日期、引用数等维度排序搜索结果。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

arXiv Research Assistant

Expert workflow for conducting structured research on arXiv papers with optimized information extraction and analysis.

Prerequisites

This skill requires the arXiv MCP server to be running. Ensure the server is started before use.

Core Workflows

1. Finding Relevant Papers

When to use: User wants papers on a specific topic, methodology, or author.

Process:

  1. Use arxiv_search_papers with clear keywords
  2. Default searches Software Engineering (cs.SE) category
  3. Review results and identify most relevant papers
  4. For broad topics: start with recent papers (sort_by: "submitted_date")
  5. For established topics: use relevance sorting

Key parameters:

  • query: Be specific ("test generation neural networks" vs "testing")
  • max_results: Start with 5-10, expand if needed
  • categories: Empty [] to search beyond SE

2. Deep Paper Analysis

When to use: User needs detailed understanding of a specific paper.

Structured extraction approach:

## Paper Analysis: [TITLE]

### 1. Core Contribution
- Main problem addressed
- Novel approach/solution
- Key insight or innovation

### 2. Methodology
- Research method (empirical, theoretical, survey, etc.)
- Datasets or subjects used
- Experimental design
- Evaluation metrics

### 3. Key Findings
- Primary results (with numbers/statistics)
- Performance comparisons
- Limitations acknowledged by authors

### 4. Implications
- Impact on the field
- Practical applications
- Future research directions

### 5. Related Work Context
- How it builds on prior work
- Key papers cited
- Position in research landscape

Tools sequence:

  1. arxiv_get_paper - Get metadata first (authors, abstract, year)
  2. arxiv_query_paper - Ask specific questions about content
  3. arxiv_convert_to_markdown - Only if full text reading needed

3. Comparative Analysis

When to use: User wants to compare multiple papers or approaches.

Process:

  1. Search and identify papers (2-5 papers max for deep comparison)
  2. Extract comparable dimensions for each:

- Problem scope - Methodology - Datasets/evaluation - Results - Year and citations context

  1. Create structured comparison table
  2. Synthesize insights: commonalities, differences, evolution

Output format:

## Comparison: [TOPIC]

| Dimension | Paper 1 | Paper 2 | Paper 3 |
|-----------|---------|---------|---------|
| Approach | ... | ... | ... |
| Dataset | ... | ... | ... |
| Key Metric | ... | ... | ... |
| Results | ... | ... | ... |
| Year | ... | ... | ... |

### Key Insights
- **Trend:** ...
- **Best for X:** ...
- **Evolution:** ...

4. Literature Review

When to use: User needs comprehensive overview of a research area.

Systematic approach:

  1. Scope definition - Clarify time range, subtopics, inclusion criteria
  2. Initial search - Broad query, recent papers (last 2-3 years)
  3. Seed paper selection - Identify 3-5 highly relevant papers
  4. Iterative expansion - Search related terms, check citations
  5. Synthesis - Group by themes, identify trends, gaps

Output structure:

## Literature Review: [TOPIC]

### Research Landscape
- Number of papers found: X
- Time range: YYYY-YYYY
- Key categories: ...

### Major Themes
1. **Theme 1**: Description
   - Representative papers: [ID1, ID2]
   - Key findings: ...

2. **Theme 2**: Description
   - Representative papers: [ID3, ID4]
   - Key findings: ...

### Methodological Trends
- Dominant approaches: ...
- Evolution over time: ...

### Research Gaps
- Understudied areas: ...
- Contradictory findings: ...
- Future directions: ...

### Recommended Starting Papers
1. [Title] (ID) - Why: ...
2. [Title] (ID) - Why: ...

Question Templates

Use these optimized questions with arxiv_query_paper:

Methodology extraction:

  • "What specific methodology do the authors use? Include datasets, experimental setup, and evaluation metrics."
  • "Describe the technical approach in detail. What algorithms or techniques are employed?"

Results and findings:

  • "What are the quantitative results? Include specific metrics and comparisons to baselines."
  • "What are the main findings and their statistical significance?"

Critical analysis:

  • "What limitations do the authors acknowledge? What threats to validity are discussed?"
  • "How does this work compare to previous approaches? What improvements are demonstrated?"

Practical application:

  • "What are the practical implications of this work? How could it be applied in industry?"
  • "What tools, code, or datasets did the authors release?"

Research context:

  • "What future work do the authors suggest? What open questions remain?"
  • "What are the key papers cited in related work? What gap does this paper fill?"

Best Practices

Information Extraction

  1. Start broad, then narrow - Get abstract first, then query specific sections
  2. Be specific in queries - "What evaluation metrics..." vs "Tell me about the paper"
  3. Cross-reference - Verify important claims across abstract, methodology, and results
  4. Note limitations - Always extract acknowledged limitations and threats to validity

Efficiency Tips

  1. Use metadata first - Abstract often answers high-level questions
  2. Batch similar papers - Search once, analyze multiple results
  3. 100-page limit - For long papers, query specific sections instead of full conversion
  4. Cache key info - Summarize important papers to avoid re-querying

Critical Reading

  1. Evaluate methodology - Is the evaluation rigorous? Are datasets appropriate?
  2. Check reproducibility - Are methods described clearly? Is code/data available?
  3. Assess impact - How many citations? Recent or dated?
  4. Context matters - Consider publication venue and year

Common Patterns

Pattern: Research Question → Papers

User: "What are recent advances in LLM testing?"

1. arxiv_search_papers("LLM testing evaluation", sort_by="submitted_date")
2. Review top 5 papers
3. For 2-3 most relevant:
   - arxiv_query_paper: "What testing techniques are proposed?"
   - arxiv_query_paper: "What are the main results and limitations?"
4. Synthesize: summarize approaches, compare effectiveness, note trends

Pattern: Paper → Understanding

User: "Explain paper 2301.12345"

1. arxiv_get_paper(arxiv_id)
2. Read abstract → identify key aspects
3. arxiv_query_paper: "What is the main contribution and methodology?"
4. arxiv_query_paper: "What are the quantitative results?"
5. arxiv_query_paper: "What limitations do authors discuss?"
6. Synthesize into structured analysis

Pattern: Comparative Evaluation

User: "Compare mutation testing approaches in Papers X, Y, Z"

1. For each paper:
   - arxiv_get_paper → metadata
   - arxiv_query_paper: "What mutation operators are used?"
   - arxiv_query_paper: "What are the effectiveness metrics?"
2. Create comparison table
3. Synthesize: which approach for which context?

Output Quality Standards

Always Include

  • Paper IDs - Full arXiv IDs for reference
  • Specifics - Numbers, metrics, exact claims (not vague descriptions)
  • Context - Year, venue, citation count when relevant
  • Limitations - What the paper doesn't address
  • Actionability - Practical takeaways or implications

Avoid

  • Vague summaries without specifics
  • Uncritical acceptance of claims
  • Mixing papers without clear attribution
  • Overconfidence about papers not fully analyzed

Troubleshooting

"Too many results" → Add more specific keywords, narrow time range, use categories filter

"Paper too long to convert" → Use arxiv_query_paper with specific questions instead of full conversion

"Can't find specific methodology details" → Query: "Describe the technical implementation and algorithms in detail"

"Need newer/older papers" → Use sort_by: "submitted_date" or add year to query ("software testing 2023")

"Rate limit error" → Wait 3-5 seconds between requests, batch queries when possible

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.75%
按下载量换算124

Claude

28.88%
按下载量换算92

Cursor

19.93%
按下载量换算64

Gemini CLI

8.61%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills