Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

academic-search学术搜索

Agent Skill

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

总安装

259

周安装

11

GitHub Stars

48

下载量

91
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/hyunjunjeon/deepagent-research-context-engineering --skill academic-search

简介

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

  • 适用于学术搜索、研究线索整理和关键词驱动的信息筛选场景。
  • 通过关键词或任务场景输入,返回结构化搜索结果供进一步分析。
  • 需确认权限范围和维护状态,避免触发联网或文件读写操作。
  • 建议结合原始 README 核验具体用法及适用边界。

SKILL.md

Academic Search Skill

This skill provides access to academic paper repositories, primarily arXiv, for searching scholarly articles. arXiv is a free distribution service and open-access archive for preprints in physics, mathematics, computer science, quantitative biology, quantitative finance, statistics, electrical engineering, systems science, and economics.

When to Use This Skill

Use this skill when you need to:

  • Find cutting-edge research: Access preprints and recent papers before formal journal publication
  • Search AI/ML papers: Find machine learning, deep learning, and artificial intelligence research
  • Explore computational methods: Search for algorithms, theoretical frameworks, and mathematical foundations
  • Research interdisciplinary topics: Find papers spanning computer science, biology, physics, and mathematics
  • Gather literature reviews: Collect relevant papers for comprehensive topic overviews
  • Track state-of-the-art: Find the latest advances in rapidly evolving fields

Ideal Use Cases

ScenarioExample Query
Understanding new architectures"transformer attention mechanism"
Exploring applications"large language models code generation"
Finding benchmarks"image classification benchmark ImageNet"
Surveying methods"reinforcement learning robotics"
Technical deep-dives"backpropagation neural networks"

How to Use

The skill provides a Python script that searches arXiv and returns formatted results with titles and abstracts.

Basic Usage

Note: Always use the absolute path from your skills directory.

If running from a virtual environment:

.venv/bin/python [YOUR_SKILLS_DIR]/academic-search/arxiv_search.py "your search query"

Or for system Python:

python3 [YOUR_SKILLS_DIR]/academic-search/arxiv_search.py "your search query"

Replace [YOUR_SKILLS_DIR] with the absolute skills directory path from your system prompt.

Command-Line Arguments

ArgumentRequiredDefaultDescription
queryYes-The search query string
--max-papersNo10Maximum number of papers to retrieve
--output-formatNotextOutput format: text, json, or markdown

Examples

Search for transformer architecture papers:

python3 arxiv_search.py "attention is all you need transformer" --max-papers 5

Search for reinforcement learning papers:

python3 arxiv_search.py "deep reinforcement learning continuous control" --max-papers 10

Search for LLM papers with JSON output:

python3 arxiv_search.py "large language model reasoning" --output-format json

Search for specific author or topic:

python3 arxiv_search.py "author:Hinton deep learning"

Search in specific arXiv categories:

python3 arxiv_search.py "cat:cs.LG neural network pruning"

Step-by-Step Workflow

1. Formulate Your Query

  • Use specific, technical terms (e.g., "convolutional neural network image segmentation" not "AI for pictures")
  • Include key authors if known: author:Bengio
  • Specify arXiv categories for focused results: cat:cs.CL (Computation and Language)
  • Combine terms for intersection: "graph neural network" AND "molecular property"

2. Execute the Search

python3 [SKILLS_DIR]/academic-search/arxiv_search.py "your refined query" --max-papers 10

3. Review Results

The output includes:

  • Title: Full paper title
  • Authors: List of paper authors
  • Published: Publication date
  • arXiv ID: Unique identifier (useful for citing)
  • URL: Direct link to the paper
  • Summary: Abstract text

4. Iterate if Needed

  • Too many irrelevant results? Add more specific terms or use category filters
  • Too few results? Broaden the query or remove restrictive terms
  • Looking for recent work? arXiv sorts by relevance by default

5. Save and Synthesize

Save relevant findings to your research workspace for later synthesis:

research_workspace/
  papers/
    topic_findings.md

Output Formats

Text Format (Default)

================================================================================
Title: Attention Is All You Need
Authors: Ashish Vaswani, Noam Shazeer, Niki Parmar, ...
Published: 2017-06-12
arXiv ID: 1706.03762
URL: https://arxiv.org/abs/1706.03762
--------------------------------------------------------------------------------
Summary: The dominant sequence transduction models are based on complex
recurrent or convolutional neural networks...
================================================================================

JSON Format

{
  "query": "transformer attention",
  "total_results": 5,
  "papers": [
    {
      "title": "Attention Is All You Need",
      "authors": ["Ashish Vaswani", "Noam Shazeer", ...],
      "published": "2017-06-12",
      "arxiv_id": "1706.03762",
      "url": "https://arxiv.org/abs/1706.03762",
      "summary": "The dominant sequence transduction models..."
    }
  ]
}

Markdown Format

## Attention Is All You Need

**Authors:** Ashish Vaswani, Noam Shazeer, ...
**Published:** 2017-06-12
**arXiv ID:** [1706.03762](https://arxiv.org/abs/1706.03762)

### Abstract
The dominant sequence transduction models are based on complex...

arXiv Category Reference

Common categories for AI/ML research:

CategoryDescription
cs.LGMachine Learning
cs.AIArtificial Intelligence
cs.CLComputation and Language (NLP)
cs.CVComputer Vision
cs.NENeural and Evolutionary Computing
cs.RORobotics
stat.MLMachine Learning (Statistics)
q-bioQuantitative Biology
math.OCOptimization and Control

Best Practices

Query Construction

  1. Be specific: "graph attention network node classification" > "graph neural network"
  2. Use quotation marks: For exact phrases: "self-supervised learning"
  3. Combine operators: cat:cs.CV AND "object detection" AND 2023
  4. Include variations: Search for both "LLM" and "large language model"

Research Workflow Integration

  1. Start broad, then narrow: Begin with general queries, refine based on initial results
  2. Track paper IDs: Save arXiv IDs for citing and revisiting
  3. Check references: Seminal papers often cite foundational work
  4. Note publication dates: Preprints may be superseded by updated versions

Limitations to Consider

  • Preprint status: Papers may not be peer-reviewed
  • Version updates: Check for newer versions (v2, v3, etc.)
  • Coverage gaps: Not all fields are well-represented on arXiv
  • Rate limiting: Avoid excessive rapid queries

Dependencies

This skill requires the arxiv Python package:

# Virtual environment (recommended)
.venv/bin/python -m pip install arxiv

# System-wide
python3 -m pip install arxiv

The script will detect if the package is missing and display installation instructions.

Troubleshooting

"Error: arxiv package not installed"

Install the arxiv package as shown in Dependencies section.

No results returned

  • Try broader search terms
  • Remove category restrictions
  • Check for typos in technical terms

Rate limiting errors

  • Wait a few seconds between queries
  • Reduce --max-papers value

Connection errors

  • Check internet connectivity
  • arXiv API may have temporary outages

Integration with Research Workflow

This skill works well with the web-research skill for comprehensive research:

  1. Use academic-search for foundational/theoretical papers
  2. Use web-research for current implementations, tutorials, and practical guides
  3. Synthesize findings from both sources in your research report

Notes

  • arXiv is particularly strong for:

- Computer Science (cs.*) - Physics (physics.*, hep-*, cond-mat.*) - Mathematics (math.*) - Quantitative Biology (q-bio.*) - Statistics (stat.*)

  • Results are sorted by relevance by default
  • The arXiv API is free and requires no authentication
  • Consider checking cited papers for deeper understanding

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.03%
按下载量换算33

Claude

30.76%
按下载量换算28

Cursor

19.04%
按下载量换算17

Gemini CLI

10.7%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/hyunjunjeon/deepagent-research-context-engineering --skill academic-search 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills